1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987, 1988, 1989, 1992, 1993, 1994, 1995, 1996, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
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
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
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
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.
27 We also output the assembler code for constants stored in memory
28 and are responsible for combining constants with the same value. */
32 #include "coretypes.h"
39 #include "hard-reg-set.h"
47 #include "langhooks.h"
51 #include "tree-mudflap.h"
53 #include "cfglayout.h"
55 #ifdef XCOFF_DEBUGGING_INFO
56 #include "xcoffout.h" /* Needed for external data
57 declarations for e.g. AIX 4.x. */
61 #define ASM_STABS_OP "\t.stabs\t"
64 /* The (assembler) name of the first globally-visible object output. */
65 const char *first_global_object_name
;
66 const char *weak_global_object_name
;
69 struct constant_descriptor_rtx
;
70 struct rtx_constant_pool
;
72 struct varasm_status
GTY(())
74 /* If we're using a per-function constant pool, this is it. */
75 struct rtx_constant_pool
*pool
;
77 /* Number of tree-constants deferred during the expansion of this
79 unsigned int deferred_constants
;
82 #define n_deferred_constants (cfun->varasm->deferred_constants)
84 /* Number for making the label on the next
85 constant that is stored in memory. */
87 static GTY(()) int const_labelno
;
89 /* Carry information from ASM_DECLARE_OBJECT_NAME
90 to ASM_FINISH_DECLARE_OBJECT. */
92 int size_directive_output
;
94 /* The last decl for which assemble_variable was called,
95 if it did ASM_DECLARE_OBJECT_NAME.
96 If the last call to assemble_variable didn't do that,
99 tree last_assemble_variable_decl
;
101 /* The following global variable indicates if the section label for the
102 "cold" section of code has been output yet to the assembler. The
103 label is useful when running gdb. This is part of the optimization that
104 partitions hot and cold basic blocks into separate sections of the .o
107 bool unlikely_section_label_printed
= false;
109 /* The following global variable indicates the label name to be put at
110 the start of the first cold section within each function, when
111 partitioning basic blocks into hot and cold sections. */
113 char *unlikely_section_label
= NULL
;
115 /* The following global variable indicates the section name to be used
116 for the current cold section, when partitioning hot and cold basic
117 blocks into separate sections. */
119 char *unlikely_text_section_name
= NULL
;
121 /* We give all constants their own alias set. Perhaps redundant with
122 MEM_READONLY_P, but pre-dates it. */
124 static HOST_WIDE_INT const_alias_set
;
126 static const char *strip_reg_name (const char *);
127 static int contains_pointers_p (tree
);
128 #ifdef ASM_OUTPUT_EXTERNAL
129 static bool incorporeal_function_p (tree
);
131 static void decode_addr_const (tree
, struct addr_const
*);
132 static hashval_t
const_desc_hash (const void *);
133 static int const_desc_eq (const void *, const void *);
134 static hashval_t
const_hash_1 (const tree
);
135 static int compare_constant (const tree
, const tree
);
136 static tree
copy_constant (tree
);
137 static void output_constant_def_contents (rtx
);
138 static void output_addressed_constants (tree
);
139 static unsigned HOST_WIDE_INT
array_size_for_constructor (tree
);
140 static unsigned min_align (unsigned, unsigned);
141 static void output_constructor (tree
, unsigned HOST_WIDE_INT
, unsigned int);
142 static void globalize_decl (tree
);
143 static void maybe_assemble_visibility (tree
);
144 static int in_named_entry_eq (const void *, const void *);
145 static hashval_t
in_named_entry_hash (const void *);
146 #ifdef BSS_SECTION_ASM_OP
147 #ifdef ASM_OUTPUT_BSS
148 static void asm_output_bss (FILE *, tree
, const char *,
149 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
);
151 #ifdef ASM_OUTPUT_ALIGNED_BSS
152 static void asm_output_aligned_bss (FILE *, tree
, const char *,
153 unsigned HOST_WIDE_INT
, int)
156 #endif /* BSS_SECTION_ASM_OP */
157 static bool asm_emit_uninitialised (tree
, const char*,
158 unsigned HOST_WIDE_INT
,
159 unsigned HOST_WIDE_INT
);
160 static void mark_weak (tree
);
162 enum in_section
{ no_section
, in_text
, in_unlikely_executed_text
, in_data
,
164 #ifdef BSS_SECTION_ASM_OP
167 #ifdef CTORS_SECTION_ASM_OP
170 #ifdef DTORS_SECTION_ASM_OP
173 #ifdef READONLY_DATA_SECTION_ASM_OP
176 #ifdef EXTRA_SECTIONS
180 static GTY(()) enum in_section in_section
= no_section
;
182 /* Return a nonzero value if DECL has a section attribute. */
183 #ifndef IN_NAMED_SECTION
184 #define IN_NAMED_SECTION(DECL) \
185 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
186 && DECL_SECTION_NAME (DECL) != NULL_TREE)
189 /* Text of section name when in_section == in_named. */
190 static GTY(()) const char *in_named_name
;
192 /* Hash table of flags that have been used for a particular named section. */
194 struct in_named_entry
GTY(())
201 static GTY((param_is (struct in_named_entry
))) htab_t in_named_htab
;
203 /* Define functions like text_section for any extra sections. */
204 #ifdef EXTRA_SECTION_FUNCTIONS
205 EXTRA_SECTION_FUNCTIONS
208 /* Tell assembler to switch to text section. */
213 if (in_section
!= in_text
)
215 in_section
= in_text
;
216 fprintf (asm_out_file
, "%s\n", TEXT_SECTION_ASM_OP
);
220 /* Tell assembler to switch to unlikely-to-be-executed text section. */
223 unlikely_text_section (void)
228 if (! unlikely_text_section_name
)
230 if (DECL_SECTION_NAME (current_function_decl
)
231 && (strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME
232 (current_function_decl
)),
233 HOT_TEXT_SECTION_NAME
) != 0)
234 && (strcmp (TREE_STRING_POINTER (DECL_SECTION_NAME
235 (current_function_decl
)),
236 UNLIKELY_EXECUTED_TEXT_SECTION_NAME
) != 0))
238 name
= TREE_STRING_POINTER (DECL_SECTION_NAME
239 (current_function_decl
));
241 unlikely_text_section_name
= xmalloc ((len
+ 10) * sizeof (char));
242 strcpy (unlikely_text_section_name
, name
);
243 strcat (unlikely_text_section_name
, "_unlikely");
247 len
= strlen (UNLIKELY_EXECUTED_TEXT_SECTION_NAME
);
248 unlikely_text_section_name
= xmalloc (len
+1 * sizeof (char));
249 strcpy (unlikely_text_section_name
,
250 UNLIKELY_EXECUTED_TEXT_SECTION_NAME
);
254 if ((in_section
!= in_unlikely_executed_text
)
255 && (in_section
!= in_named
256 || strcmp (in_named_name
, unlikely_text_section_name
) != 0))
258 named_section (NULL_TREE
, unlikely_text_section_name
, 0);
259 in_section
= in_unlikely_executed_text
;
261 if (!unlikely_section_label_printed
)
263 ASM_OUTPUT_LABEL (asm_out_file
, unlikely_section_label
);
264 unlikely_section_label_printed
= true;
269 /* Tell assembler to switch to data section. */
274 if (in_section
!= in_data
)
276 in_section
= in_data
;
277 fprintf (asm_out_file
, "%s\n", DATA_SECTION_ASM_OP
);
281 /* Tell assembler to switch to read-only data section. This is normally
285 readonly_data_section (void)
287 #ifdef READONLY_DATA_SECTION
288 READONLY_DATA_SECTION (); /* Note this can call data_section. */
290 #ifdef READONLY_DATA_SECTION_ASM_OP
291 if (in_section
!= in_readonly_data
)
293 in_section
= in_readonly_data
;
294 fputs (READONLY_DATA_SECTION_ASM_OP
, asm_out_file
);
295 fputc ('\n', asm_out_file
);
303 /* Determine if we're in the text section. */
306 in_text_section (void)
308 return in_section
== in_text
;
311 /* Determine if we're in the unlikely-to-be-executed text section. */
314 in_unlikely_text_section (void)
318 ret_val
= ((in_section
== in_unlikely_executed_text
)
319 || (in_section
== in_named
320 && unlikely_text_section_name
321 && strcmp (in_named_name
, unlikely_text_section_name
) == 0));
326 /* Determine if we're in the data section. */
329 in_data_section (void)
331 return in_section
== in_data
;
334 /* Helper routines for maintaining in_named_htab. */
337 in_named_entry_eq (const void *p1
, const void *p2
)
339 const struct in_named_entry
*old
= p1
;
340 const char *new = p2
;
342 return strcmp (old
->name
, new) == 0;
346 in_named_entry_hash (const void *p
)
348 const struct in_named_entry
*old
= p
;
349 return htab_hash_string (old
->name
);
352 /* If SECTION has been seen before as a named section, return the flags
353 that were used. Otherwise, return 0. Note, that 0 is a perfectly valid
354 set of flags for a section to have, so 0 does not mean that the section
355 has not been seen. */
358 get_named_section_flags (const char *section
)
360 struct in_named_entry
**slot
;
362 slot
= (struct in_named_entry
**)
363 htab_find_slot_with_hash (in_named_htab
, section
,
364 htab_hash_string (section
), NO_INSERT
);
366 return slot
? (*slot
)->flags
: 0;
369 /* Returns true if the section has been declared before. Sets internal
370 flag on this section in in_named_hash so subsequent calls on this
371 section will return false. */
374 named_section_first_declaration (const char *name
)
376 struct in_named_entry
**slot
;
378 slot
= (struct in_named_entry
**)
379 htab_find_slot_with_hash (in_named_htab
, name
,
380 htab_hash_string (name
), NO_INSERT
);
381 if (! (*slot
)->declared
)
383 (*slot
)->declared
= true;
393 /* Record FLAGS for SECTION. If SECTION was previously recorded with a
394 different set of flags, return false. */
397 set_named_section_flags (const char *section
, unsigned int flags
)
399 struct in_named_entry
**slot
, *entry
;
401 slot
= (struct in_named_entry
**)
402 htab_find_slot_with_hash (in_named_htab
, section
,
403 htab_hash_string (section
), INSERT
);
408 entry
= ggc_alloc (sizeof (*entry
));
410 entry
->name
= ggc_strdup (section
);
411 entry
->flags
= flags
;
412 entry
->declared
= false;
414 else if (entry
->flags
!= flags
)
420 /* Tell assembler to change to section NAME with attributes FLAGS. */
423 named_section_flags (const char *name
, unsigned int flags
)
425 if (in_section
!= in_named
|| strcmp (name
, in_named_name
) != 0)
427 if (! set_named_section_flags (name
, flags
))
430 targetm
.asm_out
.named_section (name
, flags
);
432 if (flags
& SECTION_FORGET
)
433 in_section
= no_section
;
436 in_named_name
= ggc_strdup (name
);
437 in_section
= in_named
;
442 /* Tell assembler to change to section NAME for DECL.
443 If DECL is NULL, just switch to section NAME.
444 If NAME is NULL, get the name from DECL.
445 If RELOC is 1, the initializer for DECL contains relocs. */
448 named_section (tree decl
, const char *name
, int reloc
)
452 if (decl
!= NULL_TREE
&& !DECL_P (decl
))
455 name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
457 if (strcmp (name
, UNLIKELY_EXECUTED_TEXT_SECTION_NAME
) == 0
458 && !unlikely_text_section_name
)
460 unlikely_text_section_name
= xmalloc
461 (strlen (UNLIKELY_EXECUTED_TEXT_SECTION_NAME
) + 1
463 strcpy (unlikely_text_section_name
,
464 UNLIKELY_EXECUTED_TEXT_SECTION_NAME
);
467 flags
= targetm
.section_type_flags (decl
, name
, reloc
);
469 /* Sanity check user variables for flag changes. Non-user
470 section flag changes will abort in named_section_flags.
471 However, don't complain if SECTION_OVERRIDE is set.
472 We trust that the setter knows that it is safe to ignore
473 the default flags for this decl. */
474 if (decl
&& ! set_named_section_flags (name
, flags
))
476 flags
= get_named_section_flags (name
);
477 if ((flags
& SECTION_OVERRIDE
) == 0)
478 error ("%J%D causes a section type conflict", decl
, decl
);
481 named_section_flags (name
, flags
);
484 /* If required, set DECL_SECTION_NAME to a unique name. */
487 resolve_unique_section (tree decl
, int reloc ATTRIBUTE_UNUSED
,
488 int flag_function_or_data_sections
)
490 if (DECL_SECTION_NAME (decl
) == NULL_TREE
491 && targetm
.have_named_sections
492 && (flag_function_or_data_sections
493 || DECL_ONE_ONLY (decl
)))
494 targetm
.asm_out
.unique_section (decl
, reloc
);
497 #ifdef BSS_SECTION_ASM_OP
499 /* Tell the assembler to switch to the bss section. */
504 if (in_section
!= in_bss
)
506 fprintf (asm_out_file
, "%s\n", BSS_SECTION_ASM_OP
);
511 #ifdef ASM_OUTPUT_BSS
513 /* Utility function for ASM_OUTPUT_BSS for targets to use if
514 they don't support alignments in .bss.
515 ??? It is believed that this function will work in most cases so such
516 support is localized here. */
519 asm_output_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
521 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
522 unsigned HOST_WIDE_INT rounded
)
524 targetm
.asm_out
.globalize_label (file
, name
);
526 #ifdef ASM_DECLARE_OBJECT_NAME
527 last_assemble_variable_decl
= decl
;
528 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
530 /* Standard thing is just output label for the object. */
531 ASM_OUTPUT_LABEL (file
, name
);
532 #endif /* ASM_DECLARE_OBJECT_NAME */
533 ASM_OUTPUT_SKIP (file
, rounded
? rounded
: 1);
538 #ifdef ASM_OUTPUT_ALIGNED_BSS
540 /* Utility function for targets to use in implementing
541 ASM_OUTPUT_ALIGNED_BSS.
542 ??? It is believed that this function will work in most cases so such
543 support is localized here. */
546 asm_output_aligned_bss (FILE *file
, tree decl ATTRIBUTE_UNUSED
,
547 const char *name
, unsigned HOST_WIDE_INT size
,
551 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
552 #ifdef ASM_DECLARE_OBJECT_NAME
553 last_assemble_variable_decl
= decl
;
554 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
556 /* Standard thing is just output label for the object. */
557 ASM_OUTPUT_LABEL (file
, name
);
558 #endif /* ASM_DECLARE_OBJECT_NAME */
559 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
564 #endif /* BSS_SECTION_ASM_OP */
566 /* Switch to the section for function DECL.
568 If DECL is NULL_TREE, switch to the text section.
569 ??? It's not clear that we will ever be passed NULL_TREE, but it's
570 safer to handle it. */
573 function_section (tree decl
)
575 if (scan_ahead_for_unlikely_executed_note (get_insns()))
576 unlikely_text_section ();
577 else if (decl
!= NULL_TREE
578 && DECL_SECTION_NAME (decl
) != NULL_TREE
)
579 named_section (decl
, (char *) 0, 0);
584 /* Switch to read-only data section associated with function DECL. */
587 default_function_rodata_section (tree decl
)
589 if (decl
!= NULL_TREE
&& DECL_SECTION_NAME (decl
))
591 const char *name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
593 /* For .gnu.linkonce.t.foo we want to use .gnu.linkonce.r.foo. */
594 if (DECL_ONE_ONLY (decl
) && strncmp (name
, ".gnu.linkonce.t.", 16) == 0)
596 size_t len
= strlen (name
) + 1;
597 char *rname
= alloca (len
);
599 memcpy (rname
, name
, len
);
601 named_section_flags (rname
, SECTION_LINKONCE
);
604 /* For .text.foo we want to use .rodata.foo. */
605 else if (flag_function_sections
&& flag_data_sections
606 && strncmp (name
, ".text.", 6) == 0)
608 size_t len
= strlen (name
) + 1;
609 char *rname
= alloca (len
+ 2);
611 memcpy (rname
, ".rodata", 7);
612 memcpy (rname
+ 7, name
+ 5, len
- 5);
613 named_section_flags (rname
, 0);
618 readonly_data_section ();
621 /* Switch to read-only data section associated with function DECL
622 for targets where that section should be always the single
623 readonly data section. */
626 default_no_function_rodata_section (tree decl ATTRIBUTE_UNUSED
)
628 readonly_data_section ();
631 /* Switch to section for variable DECL. RELOC is the same as the
632 argument to SELECT_SECTION. */
635 variable_section (tree decl
, int reloc
)
637 if (IN_NAMED_SECTION (decl
))
638 named_section (decl
, NULL
, reloc
);
640 targetm
.asm_out
.select_section (decl
, reloc
, DECL_ALIGN (decl
));
643 /* Tell assembler to switch to the section for string merging. */
646 mergeable_string_section (tree decl ATTRIBUTE_UNUSED
,
647 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
648 unsigned int flags ATTRIBUTE_UNUSED
)
650 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
651 && TREE_CODE (decl
) == STRING_CST
652 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
654 && TREE_STRING_LENGTH (decl
) >= int_size_in_bytes (TREE_TYPE (decl
)))
656 enum machine_mode mode
;
657 unsigned int modesize
;
662 mode
= TYPE_MODE (TREE_TYPE (TREE_TYPE (decl
)));
663 modesize
= GET_MODE_BITSIZE (mode
);
664 if (modesize
>= 8 && modesize
<= 256
665 && (modesize
& (modesize
- 1)) == 0)
667 if (align
< modesize
)
670 str
= TREE_STRING_POINTER (decl
);
671 len
= TREE_STRING_LENGTH (decl
);
672 unit
= GET_MODE_SIZE (mode
);
674 /* Check for embedded NUL characters. */
675 for (i
= 0; i
< len
; i
+= unit
)
677 for (j
= 0; j
< unit
; j
++)
678 if (str
[i
+ j
] != '\0')
685 sprintf (name
, ".rodata.str%d.%d", modesize
/ 8,
687 flags
|= (modesize
/ 8) | SECTION_MERGE
| SECTION_STRINGS
;
688 if (!i
&& modesize
< align
)
690 /* A "" string with requested alignment greater than
691 character size might cause a problem:
692 if some other string required even bigger
693 alignment than "", then linker might think the
694 "" is just part of padding after some other string
695 and not put it into the hash table initially.
696 But this means "" could have smaller alignment
698 #ifdef ASM_OUTPUT_SECTION_START
699 named_section_flags (name
, flags
);
700 ASM_OUTPUT_SECTION_START (asm_out_file
);
702 readonly_data_section ();
707 named_section_flags (name
, flags
);
713 readonly_data_section ();
716 /* Tell assembler to switch to the section for constant merging. */
719 mergeable_constant_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
720 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
,
721 unsigned int flags ATTRIBUTE_UNUSED
)
723 unsigned int modesize
= GET_MODE_BITSIZE (mode
);
725 if (HAVE_GAS_SHF_MERGE
&& flag_merge_constants
731 && (align
& (align
- 1)) == 0)
735 sprintf (name
, ".rodata.cst%d", (int) (align
/ 8));
736 flags
|= (align
/ 8) | SECTION_MERGE
;
737 named_section_flags (name
, flags
);
741 readonly_data_section ();
744 /* Given NAME, a putative register name, discard any customary prefixes. */
747 strip_reg_name (const char *name
)
749 #ifdef REGISTER_PREFIX
750 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
751 name
+= strlen (REGISTER_PREFIX
);
753 if (name
[0] == '%' || name
[0] == '#')
758 /* The user has asked for a DECL to have a particular name. Set (or
759 change) it in such a way that we don't prefix an underscore to
762 set_user_assembler_name (tree decl
, const char *name
)
764 char *starred
= alloca (strlen (name
) + 2);
766 strcpy (starred
+ 1, name
);
767 change_decl_assembler_name (decl
, get_identifier (starred
));
768 SET_DECL_RTL (decl
, NULL_RTX
);
771 /* Decode an `asm' spec for a declaration as a register name.
772 Return the register number, or -1 if nothing specified,
773 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
774 or -3 if ASMSPEC is `cc' and is not recognized,
775 or -4 if ASMSPEC is `memory' and is not recognized.
776 Accept an exact spelling or a decimal number.
777 Prefixes such as % are optional. */
780 decode_reg_name (const char *asmspec
)
782 if (asmspec
!= 0 && strlen (asmspec
) != 0)
786 /* Get rid of confusing prefixes. */
787 asmspec
= strip_reg_name (asmspec
);
789 /* Allow a decimal number as a "register name". */
790 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
791 if (! ISDIGIT (asmspec
[i
]))
793 if (asmspec
[0] != 0 && i
< 0)
796 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
802 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
804 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
807 #ifdef ADDITIONAL_REGISTER_NAMES
809 static const struct { const char *const name
; const int number
; } table
[]
810 = ADDITIONAL_REGISTER_NAMES
;
812 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
813 if (! strcmp (asmspec
, table
[i
].name
))
814 return table
[i
].number
;
816 #endif /* ADDITIONAL_REGISTER_NAMES */
818 if (!strcmp (asmspec
, "memory"))
821 if (!strcmp (asmspec
, "cc"))
830 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
831 have static storage duration. In other words, it should not be an
832 automatic variable, including PARM_DECLs.
834 There is, however, one exception: this function handles variables
835 explicitly placed in a particular register by the user.
837 This is never called for PARM_DECL nodes. */
840 make_decl_rtl (tree decl
)
842 const char *name
= 0;
846 /* Check that we are not being given an automatic variable. */
847 /* A weak alias has TREE_PUBLIC set but not the other bits. */
848 if (TREE_CODE (decl
) == PARM_DECL
849 || TREE_CODE (decl
) == RESULT_DECL
850 || (TREE_CODE (decl
) == VAR_DECL
851 && !TREE_STATIC (decl
)
852 && !TREE_PUBLIC (decl
)
853 && !DECL_EXTERNAL (decl
)
854 && !DECL_REGISTER (decl
)))
856 /* And that we were not given a type or a label. */
857 else if (TREE_CODE (decl
) == TYPE_DECL
858 || TREE_CODE (decl
) == LABEL_DECL
)
861 /* For a duplicate declaration, we can be called twice on the
862 same DECL node. Don't discard the RTL already made. */
863 if (DECL_RTL_SET_P (decl
))
865 /* If the old RTL had the wrong mode, fix the mode. */
866 if (GET_MODE (DECL_RTL (decl
)) != DECL_MODE (decl
))
867 SET_DECL_RTL (decl
, adjust_address_nv (DECL_RTL (decl
),
868 DECL_MODE (decl
), 0));
870 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
873 /* ??? Another way to do this would be to maintain a hashed
874 table of such critters. Instead of adding stuff to a DECL
875 to give certain attributes to it, we could use an external
876 hash map from DECL to set of attributes. */
878 /* Let the target reassign the RTL if it wants.
879 This is necessary, for example, when one machine specific
880 decl attribute overrides another. */
881 targetm
.encode_section_info (decl
, DECL_RTL (decl
), false);
883 /* Make this function static known to the mudflap runtime. */
884 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
885 mudflap_enqueue_decl (decl
);
890 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
892 reg_number
= decode_reg_name (name
);
894 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
896 /* First detect errors in declaring global registers. */
897 if (reg_number
== -1)
898 error ("%Jregister name not specified for '%D'", decl
, decl
);
899 else if (reg_number
< 0)
900 error ("%Jinvalid register name for '%D'", decl
, decl
);
901 else if (TYPE_MODE (TREE_TYPE (decl
)) == BLKmode
)
902 error ("%Jdata type of '%D' isn't suitable for a register",
904 else if (! HARD_REGNO_MODE_OK (reg_number
, TYPE_MODE (TREE_TYPE (decl
))))
905 error ("%Jregister specified for '%D' isn't suitable for data type",
907 /* Now handle properly declared static register variables. */
912 if (DECL_INITIAL (decl
) != 0 && TREE_STATIC (decl
))
914 DECL_INITIAL (decl
) = 0;
915 error ("global register variable has initial value");
917 if (TREE_THIS_VOLATILE (decl
))
918 warning ("volatile register variables don't work as you might wish");
920 /* If the user specified one of the eliminables registers here,
921 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
922 confused with that register and be eliminated. This usage is
923 somewhat suspect... */
925 SET_DECL_RTL (decl
, gen_rtx_raw_REG (DECL_MODE (decl
), reg_number
));
926 ORIGINAL_REGNO (DECL_RTL (decl
)) = reg_number
;
927 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
929 if (TREE_STATIC (decl
))
931 /* Make this register global, so not usable for anything
933 #ifdef ASM_DECLARE_REGISTER_GLOBAL
934 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
936 nregs
= hard_regno_nregs
[reg_number
][DECL_MODE (decl
)];
938 globalize_reg (reg_number
+ --nregs
);
941 /* As a register variable, it has no section. */
946 /* Now handle ordinary static variables and functions (in memory).
947 Also handle vars declared register invalidly. */
949 if (name
[0] == '*' && (reg_number
>= 0 || reg_number
== -3))
950 error ("%Jregister name given for non-register variable '%D'", decl
, decl
);
952 /* Specifying a section attribute on a variable forces it into a
953 non-.bss section, and thus it cannot be common. */
954 if (TREE_CODE (decl
) == VAR_DECL
955 && DECL_SECTION_NAME (decl
) != NULL_TREE
956 && DECL_INITIAL (decl
) == NULL_TREE
957 && DECL_COMMON (decl
))
958 DECL_COMMON (decl
) = 0;
960 /* Variables can't be both common and weak. */
961 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_WEAK (decl
))
962 DECL_COMMON (decl
) = 0;
964 x
= gen_rtx_SYMBOL_REF (Pmode
, name
);
965 SYMBOL_REF_WEAK (x
) = DECL_WEAK (decl
);
966 SYMBOL_REF_DECL (x
) = decl
;
968 x
= gen_rtx_MEM (DECL_MODE (decl
), x
);
969 if (TREE_CODE (decl
) != FUNCTION_DECL
)
970 set_mem_attributes (x
, decl
, 1);
971 SET_DECL_RTL (decl
, x
);
973 /* Optionally set flags or add text to the name to record information
974 such as that it is a function name.
975 If the name is changed, the macro ASM_OUTPUT_LABELREF
976 will have to know how to strip this information. */
977 targetm
.encode_section_info (decl
, DECL_RTL (decl
), true);
979 /* Make this function static known to the mudflap runtime. */
980 if (flag_mudflap
&& TREE_CODE (decl
) == VAR_DECL
)
981 mudflap_enqueue_decl (decl
);
984 /* Make the rtl for variable VAR be volatile.
985 Use this only for static variables. */
988 make_var_volatile (tree var
)
990 if (!MEM_P (DECL_RTL (var
)))
993 MEM_VOLATILE_P (DECL_RTL (var
)) = 1;
996 /* Output a string of literal assembler code
997 for an `asm' keyword used between functions. */
1000 assemble_asm (tree string
)
1004 if (TREE_CODE (string
) == ADDR_EXPR
)
1005 string
= TREE_OPERAND (string
, 0);
1007 fprintf (asm_out_file
, "\t%s\n", TREE_STRING_POINTER (string
));
1010 /* Record an element in the table of global destructors. SYMBOL is
1011 a SYMBOL_REF of the function to be called; PRIORITY is a number
1012 between 0 and MAX_INIT_PRIORITY. */
1015 default_stabs_asm_out_destructor (rtx symbol
, int priority ATTRIBUTE_UNUSED
)
1017 /* Tell GNU LD that this is part of the static destructor set.
1018 This will work for any system that uses stabs, most usefully
1020 fprintf (asm_out_file
, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
1021 assemble_name (asm_out_file
, XSTR (symbol
, 0));
1022 fputc ('\n', asm_out_file
);
1026 default_named_section_asm_out_destructor (rtx symbol
, int priority
)
1028 const char *section
= ".dtors";
1031 /* ??? This only works reliably with the GNU linker. */
1032 if (priority
!= DEFAULT_INIT_PRIORITY
)
1034 sprintf (buf
, ".dtors.%.5u",
1035 /* Invert the numbering so the linker puts us in the proper
1036 order; constructors are run from right to left, and the
1037 linker sorts in increasing order. */
1038 MAX_INIT_PRIORITY
- priority
);
1042 named_section_flags (section
, SECTION_WRITE
);
1043 assemble_align (POINTER_SIZE
);
1044 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1047 #ifdef DTORS_SECTION_ASM_OP
1049 dtors_section (void)
1051 if (in_section
!= in_dtors
)
1053 in_section
= in_dtors
;
1054 fputs (DTORS_SECTION_ASM_OP
, asm_out_file
);
1055 fputc ('\n', asm_out_file
);
1060 default_dtor_section_asm_out_destructor (rtx symbol
,
1061 int priority ATTRIBUTE_UNUSED
)
1064 assemble_align (POINTER_SIZE
);
1065 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1069 /* Likewise for global constructors. */
1072 default_stabs_asm_out_constructor (rtx symbol
, int priority ATTRIBUTE_UNUSED
)
1074 /* Tell GNU LD that this is part of the static destructor set.
1075 This will work for any system that uses stabs, most usefully
1077 fprintf (asm_out_file
, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
1078 assemble_name (asm_out_file
, XSTR (symbol
, 0));
1079 fputc ('\n', asm_out_file
);
1083 default_named_section_asm_out_constructor (rtx symbol
, int priority
)
1085 const char *section
= ".ctors";
1088 /* ??? This only works reliably with the GNU linker. */
1089 if (priority
!= DEFAULT_INIT_PRIORITY
)
1091 sprintf (buf
, ".ctors.%.5u",
1092 /* Invert the numbering so the linker puts us in the proper
1093 order; constructors are run from right to left, and the
1094 linker sorts in increasing order. */
1095 MAX_INIT_PRIORITY
- priority
);
1099 named_section_flags (section
, SECTION_WRITE
);
1100 assemble_align (POINTER_SIZE
);
1101 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1104 #ifdef CTORS_SECTION_ASM_OP
1106 ctors_section (void)
1108 if (in_section
!= in_ctors
)
1110 in_section
= in_ctors
;
1111 fputs (CTORS_SECTION_ASM_OP
, asm_out_file
);
1112 fputc ('\n', asm_out_file
);
1117 default_ctor_section_asm_out_constructor (rtx symbol
,
1118 int priority ATTRIBUTE_UNUSED
)
1121 assemble_align (POINTER_SIZE
);
1122 assemble_integer (symbol
, POINTER_SIZE
/ BITS_PER_UNIT
, POINTER_SIZE
, 1);
1126 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
1127 a nonzero value if the constant pool should be output before the
1128 start of the function, or a zero value if the pool should output
1129 after the end of the function. The default is to put it before the
1132 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
1133 #define CONSTANT_POOL_BEFORE_FUNCTION 1
1136 /* DECL is an object (either VAR_DECL or FUNCTION_DECL) which is going
1137 to be output to assembler.
1138 Set first_global_object_name and weak_global_object_name as appropriate. */
1141 notice_global_symbol (tree decl
)
1143 const char **type
= &first_global_object_name
;
1145 if (first_global_object_name
1146 || !TREE_PUBLIC (decl
) || DECL_EXTERNAL (decl
)
1147 || !DECL_NAME (decl
)
1148 || (TREE_CODE (decl
) != FUNCTION_DECL
1149 && (TREE_CODE (decl
) != VAR_DECL
1150 || (DECL_COMMON (decl
)
1151 && (DECL_INITIAL (decl
) == 0
1152 || DECL_INITIAL (decl
) == error_mark_node
))))
1153 || !MEM_P (DECL_RTL (decl
)))
1156 /* We win when global object is found, but it is useful to know about weak
1157 symbol as well so we can produce nicer unique names. */
1158 if (DECL_WEAK (decl
) || DECL_ONE_ONLY (decl
))
1159 type
= &weak_global_object_name
;
1165 rtx decl_rtl
= DECL_RTL (decl
);
1167 p
= targetm
.strip_name_encoding (XSTR (XEXP (decl_rtl
, 0), 0));
1174 /* Output assembler code for the constant pool of a function and associated
1175 with defining the name of the function. DECL describes the function.
1176 NAME is the function's name. For the constant pool, we use the current
1177 constant pool data. */
1180 assemble_start_function (tree decl
, const char *fnname
)
1184 if (unlikely_text_section_name
)
1185 free (unlikely_text_section_name
);
1187 unlikely_section_label_printed
= false;
1188 unlikely_text_section_name
= NULL
;
1190 if (unlikely_section_label
)
1191 free (unlikely_section_label
);
1192 unlikely_section_label
= xmalloc ((strlen (fnname
) + 18) * sizeof (char));
1193 sprintf (unlikely_section_label
, "%s_unlikely_section", fnname
);
1195 /* The following code does not need preprocessing in the assembler. */
1199 if (CONSTANT_POOL_BEFORE_FUNCTION
)
1200 output_constant_pool (fnname
, decl
);
1202 /* Make sure the cold text (code) section is properly aligned. This
1203 is necessary here in the case where the function has both hot and
1204 cold sections, because we don't want to re-set the alignment when the
1205 section switch happens mid-function. We don't need to set the hot
1206 section alignment here, because code further down in this function
1207 sets the alignment for whichever section comes first, and if there
1208 is a hot section it is guaranteed to be first. */
1210 if (flag_reorder_blocks_and_partition
)
1212 unlikely_text_section ();
1213 assemble_align (FUNCTION_BOUNDARY
);
1216 resolve_unique_section (decl
, 0, flag_function_sections
);
1217 function_section (decl
);
1219 /* Tell assembler to move to target machine's alignment for functions. */
1220 align
= floor_log2 (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
1221 if (align
< force_align_functions_log
)
1222 align
= force_align_functions_log
;
1225 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1228 /* Handle a user-specified function alignment.
1229 Note that we still need to align to FUNCTION_BOUNDARY, as above,
1230 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
1231 if (align_functions_log
> align
1232 && cfun
->function_frequency
!= FUNCTION_FREQUENCY_UNLIKELY_EXECUTED
)
1234 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
1235 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
1236 align_functions_log
, align_functions
- 1);
1238 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
1242 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
1243 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
1246 (*debug_hooks
->begin_function
) (decl
);
1248 /* Make function name accessible from other files, if appropriate. */
1250 if (TREE_PUBLIC (decl
))
1252 notice_global_symbol (decl
);
1254 globalize_decl (decl
);
1256 maybe_assemble_visibility (decl
);
1259 if (DECL_PRESERVE_P (decl
))
1260 targetm
.asm_out
.mark_decl_preserved (fnname
);
1262 /* Do any machine/system dependent processing of the function name. */
1263 #ifdef ASM_DECLARE_FUNCTION_NAME
1264 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1266 /* Standard thing is just output label for the function. */
1267 ASM_OUTPUT_LABEL (asm_out_file
, fnname
);
1268 #endif /* ASM_DECLARE_FUNCTION_NAME */
1270 if (in_unlikely_text_section ()
1271 && !unlikely_section_label_printed
)
1273 ASM_OUTPUT_LABEL (asm_out_file
, unlikely_section_label
);
1274 unlikely_section_label_printed
= true;
1278 /* Output assembler code associated with defining the size of the
1279 function. DECL describes the function. NAME is the function's name. */
1282 assemble_end_function (tree decl
, const char *fnname
)
1284 #ifdef ASM_DECLARE_FUNCTION_SIZE
1285 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1287 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1289 output_constant_pool (fnname
, decl
);
1290 function_section (decl
); /* need to switch back */
1294 /* Assemble code to leave SIZE bytes of zeros. */
1297 assemble_zeros (unsigned HOST_WIDE_INT size
)
1299 /* Do no output if -fsyntax-only. */
1300 if (flag_syntax_only
)
1303 #ifdef ASM_NO_SKIP_IN_TEXT
1304 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1305 so we must output 0s explicitly in the text section. */
1306 if ((ASM_NO_SKIP_IN_TEXT
&& in_text_section ())
1307 || (ASM_NO_SKIP_IN_TEXT
&& in_unlikely_text_section ()))
1309 unsigned HOST_WIDE_INT i
;
1310 for (i
= 0; i
< size
; i
++)
1311 assemble_integer (const0_rtx
, 1, BITS_PER_UNIT
, 1);
1316 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1319 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1322 assemble_align (int align
)
1324 if (align
> BITS_PER_UNIT
)
1326 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1330 /* Assemble a string constant with the specified C string as contents. */
1333 assemble_string (const char *p
, int size
)
1338 /* If the string is very long, split it up. */
1342 int thissize
= size
- pos
;
1343 if (thissize
> maximum
)
1346 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1354 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1355 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1356 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1358 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1359 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1360 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1362 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1363 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1367 #if defined ASM_OUTPUT_ALIGNED_BSS
1368 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1369 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1371 #if defined ASM_OUTPUT_BSS
1372 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1373 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1379 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1380 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1381 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1383 #if defined ASM_OUTPUT_ALIGNED_COMMON
1384 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1385 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1387 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1388 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1393 asm_emit_uninitialised (tree decl
, const char *name
,
1394 unsigned HOST_WIDE_INT size ATTRIBUTE_UNUSED
,
1395 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
)
1403 destination
= asm_dest_local
;
1405 /* ??? We should handle .bss via select_section mechanisms rather than
1406 via special target hooks. That would eliminate this special case. */
1407 if (TREE_PUBLIC (decl
))
1409 if (!DECL_COMMON (decl
))
1411 destination
= asm_dest_bss
;
1416 destination
= asm_dest_common
;
1419 if (destination
== asm_dest_bss
)
1420 globalize_decl (decl
);
1421 resolve_unique_section (decl
, 0, flag_data_sections
);
1423 if (flag_shared_data
)
1425 switch (destination
)
1427 #ifdef ASM_OUTPUT_SHARED_BSS
1429 ASM_OUTPUT_SHARED_BSS (asm_out_file
, decl
, name
, size
, rounded
);
1432 #ifdef ASM_OUTPUT_SHARED_COMMON
1433 case asm_dest_common
:
1434 ASM_OUTPUT_SHARED_COMMON (asm_out_file
, name
, size
, rounded
);
1437 #ifdef ASM_OUTPUT_SHARED_LOCAL
1438 case asm_dest_local
:
1439 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
1447 switch (destination
)
1451 ASM_EMIT_BSS (decl
, name
, size
, rounded
);
1454 case asm_dest_common
:
1455 ASM_EMIT_COMMON (decl
, name
, size
, rounded
);
1457 case asm_dest_local
:
1458 ASM_EMIT_LOCAL (decl
, name
, size
, rounded
);
1467 /* Assemble everything that is needed for a variable or function declaration.
1468 Not used for automatic variables, and not used for function definitions.
1469 Should not be called for variables of incomplete structure type.
1471 TOP_LEVEL is nonzero if this variable has file scope.
1472 AT_END is nonzero if this is the special handling, at end of compilation,
1473 to define things that have had only tentative definitions.
1474 DONT_OUTPUT_DATA if nonzero means don't actually output the
1475 initial value (that will be done by the caller). */
1478 assemble_variable (tree decl
, int top_level ATTRIBUTE_UNUSED
,
1479 int at_end ATTRIBUTE_UNUSED
, int dont_output_data
)
1486 if (lang_hooks
.decls
.prepare_assemble_variable
)
1487 lang_hooks
.decls
.prepare_assemble_variable (decl
);
1489 last_assemble_variable_decl
= 0;
1491 /* Normally no need to say anything here for external references,
1492 since assemble_external is called by the language-specific code
1493 when a declaration is first seen. */
1495 if (DECL_EXTERNAL (decl
))
1498 /* Output no assembler code for a function declaration.
1499 Only definitions of functions output anything. */
1501 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1504 /* Do nothing for global register variables. */
1505 if (DECL_RTL_SET_P (decl
) && REG_P (DECL_RTL (decl
)))
1507 TREE_ASM_WRITTEN (decl
) = 1;
1511 /* If type was incomplete when the variable was declared,
1512 see if it is complete now. */
1514 if (DECL_SIZE (decl
) == 0)
1515 layout_decl (decl
, 0);
1517 /* Still incomplete => don't allocate it; treat the tentative defn
1518 (which is what it must have been) as an `extern' reference. */
1520 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
1522 error ("%Jstorage size of `%D' isn't known", decl
, decl
);
1523 TREE_ASM_WRITTEN (decl
) = 1;
1527 /* The first declaration of a variable that comes through this function
1528 decides whether it is global (in C, has external linkage)
1529 or local (in C, has internal linkage). So do nothing more
1530 if this function has already run. */
1532 if (TREE_ASM_WRITTEN (decl
))
1535 /* Make sure targetm.encode_section_info is invoked before we set
1537 decl_rtl
= DECL_RTL (decl
);
1539 TREE_ASM_WRITTEN (decl
) = 1;
1541 /* Do no output if -fsyntax-only. */
1542 if (flag_syntax_only
)
1547 if (! dont_output_data
1548 && ! host_integerp (DECL_SIZE_UNIT (decl
), 1))
1550 error ("%Jsize of variable '%D' is too large", decl
, decl
);
1554 name
= XSTR (XEXP (decl_rtl
, 0), 0);
1555 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1556 notice_global_symbol (decl
);
1558 /* Compute the alignment of this data. */
1560 align
= DECL_ALIGN (decl
);
1562 /* In the case for initialing an array whose length isn't specified,
1563 where we have not yet been able to do the layout,
1564 figure out the proper alignment now. */
1565 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1566 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1567 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1569 /* Some object file formats have a maximum alignment which they support.
1570 In particular, a.out format supports a maximum alignment of 4. */
1571 if (align
> MAX_OFILE_ALIGNMENT
)
1573 warning ("%Jalignment of '%D' is greater than maximum object "
1574 "file alignment. Using %d", decl
, decl
,
1575 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1576 align
= MAX_OFILE_ALIGNMENT
;
1579 /* On some machines, it is good to increase alignment sometimes. */
1580 if (! DECL_USER_ALIGN (decl
))
1582 #ifdef DATA_ALIGNMENT
1583 align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1585 #ifdef CONSTANT_ALIGNMENT
1586 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
1587 align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1591 /* Reset the alignment in case we have made it tighter, so we can benefit
1592 from it in get_pointer_alignment. */
1593 DECL_ALIGN (decl
) = align
;
1594 set_mem_align (decl_rtl
, align
);
1596 if (TREE_PUBLIC (decl
))
1597 maybe_assemble_visibility (decl
);
1599 if (DECL_PRESERVE_P (decl
))
1600 targetm
.asm_out
.mark_decl_preserved (name
);
1602 /* Output any data that we will need to use the address of. */
1603 if (DECL_INITIAL (decl
) == error_mark_node
)
1604 reloc
= contains_pointers_p (TREE_TYPE (decl
)) ? 3 : 0;
1605 else if (DECL_INITIAL (decl
))
1607 reloc
= compute_reloc_for_constant (DECL_INITIAL (decl
));
1608 output_addressed_constants (DECL_INITIAL (decl
));
1610 resolve_unique_section (decl
, reloc
, flag_data_sections
);
1612 /* Handle uninitialized definitions. */
1614 /* If the decl has been given an explicit section name, then it
1615 isn't common, and shouldn't be handled as such. */
1616 if (DECL_SECTION_NAME (decl
) || dont_output_data
)
1618 /* We don't implement common thread-local data at present. */
1619 else if (DECL_THREAD_LOCAL (decl
))
1621 if (DECL_COMMON (decl
))
1622 sorry ("thread-local COMMON data not implemented");
1624 else if (DECL_INITIAL (decl
) == 0
1625 || DECL_INITIAL (decl
) == error_mark_node
1626 || (flag_zero_initialized_in_bss
1627 /* Leave constant zeroes in .rodata so they can be shared. */
1628 && !TREE_READONLY (decl
)
1629 && initializer_zerop (DECL_INITIAL (decl
))))
1631 unsigned HOST_WIDE_INT size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
1632 unsigned HOST_WIDE_INT rounded
= size
;
1634 /* Don't allocate zero bytes of common,
1635 since that means "undefined external" in the linker. */
1639 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1640 so that each uninitialized object starts on such a boundary. */
1641 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1642 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1643 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1645 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1646 if ((unsigned HOST_WIDE_INT
) DECL_ALIGN (decl
) / BITS_PER_UNIT
> rounded
)
1647 warning ("%Jrequested alignment for '%D' is greater than "
1648 "implemented alignment of %d", decl
, decl
, rounded
);
1651 /* If the target cannot output uninitialized but not common global data
1652 in .bss, then we have to use .data, so fall through. */
1653 if (asm_emit_uninitialised (decl
, name
, size
, rounded
))
1657 /* Handle initialized definitions.
1658 Also handle uninitialized global definitions if -fno-common and the
1659 target doesn't support ASM_OUTPUT_BSS. */
1661 /* First make the assembler name(s) global if appropriate. */
1662 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1663 globalize_decl (decl
);
1665 /* Switch to the appropriate section. */
1666 variable_section (decl
, reloc
);
1668 /* dbxout.c needs to know this. */
1669 if (in_text_section () || in_unlikely_text_section ())
1670 DECL_IN_TEXT_SECTION (decl
) = 1;
1672 /* Output the alignment of this data. */
1673 if (align
> BITS_PER_UNIT
)
1675 ASM_OUTPUT_ALIGN (asm_out_file
,
1676 floor_log2 (DECL_ALIGN (decl
) / BITS_PER_UNIT
));
1679 /* Do any machine/system dependent processing of the object. */
1680 #ifdef ASM_DECLARE_OBJECT_NAME
1681 last_assemble_variable_decl
= decl
;
1682 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1684 /* Standard thing is just output label for the object. */
1685 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1686 #endif /* ASM_DECLARE_OBJECT_NAME */
1688 if (!dont_output_data
)
1690 if (DECL_INITIAL (decl
)
1691 && DECL_INITIAL (decl
) != error_mark_node
1692 && !initializer_zerop (DECL_INITIAL (decl
)))
1693 /* Output the actual data. */
1694 output_constant (DECL_INITIAL (decl
),
1695 tree_low_cst (DECL_SIZE_UNIT (decl
), 1),
1698 /* Leave space for it. */
1699 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl
), 1));
1703 /* Return 1 if type TYPE contains any pointers. */
1706 contains_pointers_p (tree type
)
1708 switch (TREE_CODE (type
))
1711 case REFERENCE_TYPE
:
1712 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1713 so I'll play safe and return 1. */
1719 case QUAL_UNION_TYPE
:
1722 /* For a type that has fields, see if the fields have pointers. */
1723 for (fields
= TYPE_FIELDS (type
); fields
; fields
= TREE_CHAIN (fields
))
1724 if (TREE_CODE (fields
) == FIELD_DECL
1725 && contains_pointers_p (TREE_TYPE (fields
)))
1731 /* An array type contains pointers if its element type does. */
1732 return contains_pointers_p (TREE_TYPE (type
));
1739 #ifdef ASM_OUTPUT_EXTERNAL
1740 /* True if DECL is a function decl for which no out-of-line copy exists.
1741 It is assumed that DECL's assembler name has been set. */
1744 incorporeal_function_p (tree decl
)
1746 if (TREE_CODE (decl
) == FUNCTION_DECL
&& DECL_BUILT_IN (decl
))
1750 if (DECL_BUILT_IN_CLASS (decl
) == BUILT_IN_NORMAL
1751 && DECL_FUNCTION_CODE (decl
) == BUILT_IN_ALLOCA
)
1754 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1755 if (strncmp (name
, "__builtin_", strlen ("__builtin_")) == 0)
1762 /* Output something to declare an external symbol to the assembler.
1763 (Most assemblers don't need this, so we normally output nothing.)
1764 Do nothing if DECL is not external. */
1767 assemble_external (tree decl ATTRIBUTE_UNUSED
)
1769 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1770 main body of this code is only rarely exercised. To provide some
1771 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1772 open. If it's not, we should not be calling this function. */
1776 #ifdef ASM_OUTPUT_EXTERNAL
1777 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
1779 rtx rtl
= DECL_RTL (decl
);
1781 if (MEM_P (rtl
) && GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
1782 && !SYMBOL_REF_USED (XEXP (rtl
, 0))
1783 && !incorporeal_function_p (decl
))
1785 /* Some systems do require some output. */
1786 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
1787 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
1793 /* Similar, for calling a library function FUN. */
1796 assemble_external_libcall (rtx fun
)
1798 /* Declare library function name external when first used, if nec. */
1799 if (! SYMBOL_REF_USED (fun
))
1801 SYMBOL_REF_USED (fun
) = 1;
1802 targetm
.asm_out
.external_libcall (fun
);
1806 /* Assemble a label named NAME. */
1809 assemble_label (const char *name
)
1811 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1814 /* Set the symbol_referenced flag for ID. */
1816 mark_referenced (tree id
)
1818 TREE_SYMBOL_REFERENCED (id
) = 1;
1821 /* Set the symbol_referenced flag for DECL and notify callgraph. */
1823 mark_decl_referenced (tree decl
)
1825 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1826 cgraph_mark_needed_node (cgraph_node (decl
));
1827 else if (TREE_CODE (decl
) == VAR_DECL
)
1828 cgraph_varpool_mark_needed_node (cgraph_varpool_node (decl
));
1829 /* else do nothing - we can get various sorts of CST nodes here,
1830 which do not need to be marked. */
1833 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1834 If NAME starts with a *, the rest of NAME is output verbatim.
1835 Otherwise NAME is transformed in an implementation-defined way
1836 (usually by the addition of an underscore).
1837 Many macros in the tm file are defined to call this function. */
1840 assemble_name (FILE *file
, const char *name
)
1842 const char *real_name
;
1845 real_name
= targetm
.strip_name_encoding (name
);
1847 id
= maybe_get_identifier (real_name
);
1849 mark_referenced (id
);
1852 fputs (&name
[1], file
);
1854 ASM_OUTPUT_LABELREF (file
, name
);
1857 /* Allocate SIZE bytes writable static space with a gensym name
1858 and return an RTX to refer to its address. */
1861 assemble_static_space (unsigned HOST_WIDE_INT size
)
1864 const char *namestring
;
1868 if (flag_shared_data
)
1872 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
1874 namestring
= ggc_strdup (name
);
1876 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
1877 SYMBOL_REF_FLAGS (x
) = SYMBOL_FLAG_LOCAL
;
1879 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1880 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
1883 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1884 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
1887 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1888 so that each uninitialized object starts on such a boundary. */
1889 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1890 unsigned HOST_WIDE_INT rounded ATTRIBUTE_UNUSED
1891 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
1892 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1893 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1894 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1901 /* Assemble the static constant template for function entry trampolines.
1902 This is done at most once per compilation.
1903 Returns an RTX for the address of the template. */
1905 static GTY(()) rtx initial_trampoline
;
1907 #ifdef TRAMPOLINE_TEMPLATE
1909 assemble_trampoline_template (void)
1916 if (initial_trampoline
)
1917 return initial_trampoline
;
1919 /* By default, put trampoline templates in read-only data section. */
1921 #ifdef TRAMPOLINE_SECTION
1922 TRAMPOLINE_SECTION ();
1924 readonly_data_section ();
1927 /* Write the assembler code to define one. */
1928 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
1931 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1934 targetm
.asm_out
.internal_label (asm_out_file
, "LTRAMP", 0);
1935 TRAMPOLINE_TEMPLATE (asm_out_file
);
1937 /* Record the rtl to refer to it. */
1938 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
1939 name
= ggc_strdup (label
);
1940 symbol
= gen_rtx_SYMBOL_REF (Pmode
, name
);
1941 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
1943 initial_trampoline
= gen_rtx_MEM (BLKmode
, symbol
);
1944 set_mem_align (initial_trampoline
, TRAMPOLINE_ALIGNMENT
);
1946 return initial_trampoline
;
1950 /* A and B are either alignments or offsets. Return the minimum alignment
1951 that may be assumed after adding the two together. */
1953 static inline unsigned
1954 min_align (unsigned int a
, unsigned int b
)
1956 return (a
| b
) & -(a
| b
);
1959 /* Return the assembler directive for creating a given kind of integer
1960 object. SIZE is the number of bytes in the object and ALIGNED_P
1961 indicates whether it is known to be aligned. Return NULL if the
1962 assembly dialect has no such directive.
1964 The returned string should be printed at the start of a new line and
1965 be followed immediately by the object's initial value. */
1968 integer_asm_op (int size
, int aligned_p
)
1970 struct asm_int_op
*ops
;
1973 ops
= &targetm
.asm_out
.aligned_op
;
1975 ops
= &targetm
.asm_out
.unaligned_op
;
1980 return targetm
.asm_out
.byte_op
;
1994 /* Use directive OP to assemble an integer object X. Print OP at the
1995 start of the line, followed immediately by the value of X. */
1998 assemble_integer_with_op (const char *op
, rtx x
)
2000 fputs (op
, asm_out_file
);
2001 output_addr_const (asm_out_file
, x
);
2002 fputc ('\n', asm_out_file
);
2005 /* The default implementation of the asm_out.integer target hook. */
2008 default_assemble_integer (rtx x ATTRIBUTE_UNUSED
,
2009 unsigned int size ATTRIBUTE_UNUSED
,
2010 int aligned_p ATTRIBUTE_UNUSED
)
2012 const char *op
= integer_asm_op (size
, aligned_p
);
2013 return op
&& (assemble_integer_with_op (op
, x
), true);
2016 /* Assemble the integer constant X into an object of SIZE bytes. ALIGN is
2017 the alignment of the integer in bits. Return 1 if we were able to output
2018 the constant, otherwise 0. If FORCE is nonzero, abort if we can't output
2022 assemble_integer (rtx x
, unsigned int size
, unsigned int align
, int force
)
2026 aligned_p
= (align
>= MIN (size
* BITS_PER_UNIT
, BIGGEST_ALIGNMENT
));
2028 /* See if the target hook can handle this kind of object. */
2029 if (targetm
.asm_out
.integer (x
, size
, aligned_p
))
2032 /* If the object is a multi-byte one, try splitting it up. Split
2033 it into words it if is multi-word, otherwise split it into bytes. */
2036 enum machine_mode omode
, imode
;
2037 unsigned int subalign
;
2038 unsigned int subsize
, i
;
2040 subsize
= size
> UNITS_PER_WORD
? UNITS_PER_WORD
: 1;
2041 subalign
= MIN (align
, subsize
* BITS_PER_UNIT
);
2042 omode
= mode_for_size (subsize
* BITS_PER_UNIT
, MODE_INT
, 0);
2043 imode
= mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
, 0);
2045 for (i
= 0; i
< size
; i
+= subsize
)
2047 rtx partial
= simplify_subreg (omode
, x
, imode
, i
);
2048 if (!partial
|| !assemble_integer (partial
, subsize
, subalign
, 0))
2054 /* If we've printed some of it, but not all of it, there's no going
2067 assemble_real (REAL_VALUE_TYPE d
, enum machine_mode mode
, unsigned int align
)
2071 int bitsize
, nelts
, nunits
, units_per
;
2073 /* This is hairy. We have a quantity of known size. real_to_target
2074 will put it into an array of *host* longs, 32 bits per element
2075 (even if long is more than 32 bits). We need to determine the
2076 number of array elements that are occupied (nelts) and the number
2077 of *target* min-addressable units that will be occupied in the
2078 object file (nunits). We cannot assume that 32 divides the
2079 mode's bitsize (size * BITS_PER_UNIT) evenly.
2081 size * BITS_PER_UNIT is used here to make sure that padding bits
2082 (which might appear at either end of the value; real_to_target
2083 will include the padding bits in its output array) are included. */
2085 nunits
= GET_MODE_SIZE (mode
);
2086 bitsize
= nunits
* BITS_PER_UNIT
;
2087 nelts
= CEIL (bitsize
, 32);
2088 units_per
= 32 / BITS_PER_UNIT
;
2090 real_to_target (data
, &d
, mode
);
2092 /* Put out the first word with the specified alignment. */
2093 assemble_integer (GEN_INT (data
[0]), MIN (nunits
, units_per
), align
, 1);
2094 nunits
-= units_per
;
2096 /* Subsequent words need only 32-bit alignment. */
2097 align
= min_align (align
, 32);
2099 for (i
= 1; i
< nelts
; i
++)
2101 assemble_integer (GEN_INT (data
[i
]), MIN (nunits
, units_per
), align
, 1);
2102 nunits
-= units_per
;
2106 /* Given an expression EXP with a constant value,
2107 reduce it to the sum of an assembler symbol and an integer.
2108 Store them both in the structure *VALUE.
2109 Abort if EXP does not reduce. */
2111 struct addr_const
GTY(())
2114 HOST_WIDE_INT offset
;
2118 decode_addr_const (tree exp
, struct addr_const
*value
)
2120 tree target
= TREE_OPERAND (exp
, 0);
2126 if (TREE_CODE (target
) == COMPONENT_REF
2127 && host_integerp (byte_position (TREE_OPERAND (target
, 1)), 0))
2130 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2131 target
= TREE_OPERAND (target
, 0);
2133 else if (TREE_CODE (target
) == ARRAY_REF
2134 || TREE_CODE (target
) == ARRAY_RANGE_REF
)
2136 offset
+= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target
)), 1)
2137 * tree_low_cst (TREE_OPERAND (target
, 1), 0));
2138 target
= TREE_OPERAND (target
, 0);
2144 switch (TREE_CODE (target
))
2148 x
= DECL_RTL (target
);
2152 x
= gen_rtx_MEM (FUNCTION_MODE
,
2153 gen_rtx_LABEL_REF (VOIDmode
, force_label_rtx (target
)));
2161 x
= output_constant_def (target
, 1);
2173 value
->offset
= offset
;
2176 /* Uniquize all constants that appear in memory.
2177 Each constant in memory thus far output is recorded
2178 in `const_desc_table'. */
2180 struct constant_descriptor_tree
GTY(())
2182 /* A MEM for the constant. */
2185 /* The value of the constant. */
2189 static GTY((param_is (struct constant_descriptor_tree
)))
2190 htab_t const_desc_htab
;
2192 static struct constant_descriptor_tree
* build_constant_desc (tree
);
2193 static void maybe_output_constant_def_contents (struct constant_descriptor_tree
*, int);
2195 /* Compute a hash code for a constant expression. */
2198 const_desc_hash (const void *ptr
)
2200 return const_hash_1 (((struct constant_descriptor_tree
*)ptr
)->value
);
2204 const_hash_1 (const tree exp
)
2209 enum tree_code code
= TREE_CODE (exp
);
2211 /* Either set P and LEN to the address and len of something to hash and
2212 exit the switch or return a value. */
2217 p
= (char *) &TREE_INT_CST (exp
);
2218 len
= sizeof TREE_INT_CST (exp
);
2222 return real_hash (TREE_REAL_CST_PTR (exp
));
2225 p
= TREE_STRING_POINTER (exp
);
2226 len
= TREE_STRING_LENGTH (exp
);
2230 return (const_hash_1 (TREE_REALPART (exp
)) * 5
2231 + const_hash_1 (TREE_IMAGPART (exp
)));
2234 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2238 len
= int_size_in_bytes (TREE_TYPE (exp
));
2240 get_set_constructor_bytes (exp
, (unsigned char *) tmp
, len
);
2248 hi
= 5 + int_size_in_bytes (TREE_TYPE (exp
));
2250 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2251 if (TREE_VALUE (link
))
2252 hi
= hi
* 603 + const_hash_1 (TREE_VALUE (link
));
2260 struct addr_const value
;
2262 decode_addr_const (exp
, &value
);
2263 if (GET_CODE (value
.base
) == SYMBOL_REF
)
2265 /* Don't hash the address of the SYMBOL_REF;
2266 only use the offset and the symbol name. */
2268 p
= XSTR (value
.base
, 0);
2269 for (i
= 0; p
[i
] != 0; i
++)
2270 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2272 else if (GET_CODE (value
.base
) == LABEL_REF
)
2273 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2281 return (const_hash_1 (TREE_OPERAND (exp
, 0)) * 9
2282 + const_hash_1 (TREE_OPERAND (exp
, 1)));
2286 case NON_LVALUE_EXPR
:
2287 return const_hash_1 (TREE_OPERAND (exp
, 0)) * 7 + 2;
2290 /* A language specific constant. Just hash the code. */
2294 /* Compute hashing function. */
2296 for (i
= 0; i
< len
; i
++)
2297 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2302 /* Wrapper of compare_constant, for the htab interface. */
2304 const_desc_eq (const void *p1
, const void *p2
)
2306 return compare_constant (((struct constant_descriptor_tree
*)p1
)->value
,
2307 ((struct constant_descriptor_tree
*)p2
)->value
);
2310 /* Compare t1 and t2, and return 1 only if they are known to result in
2311 the same bit pattern on output. */
2314 compare_constant (const tree t1
, const tree t2
)
2316 enum tree_code typecode
;
2318 if (t1
== NULL_TREE
)
2319 return t2
== NULL_TREE
;
2320 if (t2
== NULL_TREE
)
2323 if (TREE_CODE (t1
) != TREE_CODE (t2
))
2326 switch (TREE_CODE (t1
))
2329 /* Integer constants are the same only if the same width of type. */
2330 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2332 return tree_int_cst_equal (t1
, t2
);
2335 /* Real constants are the same only if the same width of type. */
2336 if (TYPE_PRECISION (TREE_TYPE (t1
)) != TYPE_PRECISION (TREE_TYPE (t2
)))
2339 return REAL_VALUES_IDENTICAL (TREE_REAL_CST (t1
), TREE_REAL_CST (t2
));
2342 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
)))
2345 return (TREE_STRING_LENGTH (t1
) == TREE_STRING_LENGTH (t2
)
2346 && ! memcmp (TREE_STRING_POINTER (t1
), TREE_STRING_POINTER (t2
),
2347 TREE_STRING_LENGTH (t1
)));
2350 return (compare_constant (TREE_REALPART (t1
), TREE_REALPART (t2
))
2351 && compare_constant (TREE_IMAGPART (t1
), TREE_IMAGPART (t2
)));
2354 typecode
= TREE_CODE (TREE_TYPE (t1
));
2355 if (typecode
!= TREE_CODE (TREE_TYPE (t2
)))
2358 if (typecode
== SET_TYPE
)
2360 int len
= int_size_in_bytes (TREE_TYPE (t2
));
2361 unsigned char *tmp1
, *tmp2
;
2363 if (int_size_in_bytes (TREE_TYPE (t1
)) != len
)
2366 tmp1
= alloca (len
);
2367 tmp2
= alloca (len
);
2369 if (get_set_constructor_bytes (t1
, tmp1
, len
) != NULL_TREE
)
2371 if (get_set_constructor_bytes (t2
, tmp2
, len
) != NULL_TREE
)
2374 return memcmp (tmp1
, tmp2
, len
) == 0;
2380 if (typecode
== ARRAY_TYPE
)
2382 HOST_WIDE_INT size_1
= int_size_in_bytes (TREE_TYPE (t1
));
2383 /* For arrays, check that the sizes all match. */
2384 if (TYPE_MODE (TREE_TYPE (t1
)) != TYPE_MODE (TREE_TYPE (t2
))
2386 || size_1
!= int_size_in_bytes (TREE_TYPE (t2
)))
2391 /* For record and union constructors, require exact type
2393 if (TREE_TYPE (t1
) != TREE_TYPE (t2
))
2397 for (l1
= CONSTRUCTOR_ELTS (t1
), l2
= CONSTRUCTOR_ELTS (t2
);
2399 l1
= TREE_CHAIN (l1
), l2
= TREE_CHAIN (l2
))
2401 /* Check that each value is the same... */
2402 if (! compare_constant (TREE_VALUE (l1
), TREE_VALUE (l2
)))
2404 /* ... and that they apply to the same fields! */
2405 if (typecode
== ARRAY_TYPE
)
2407 if (! compare_constant (TREE_PURPOSE (l1
),
2413 if (TREE_PURPOSE (l1
) != TREE_PURPOSE (l2
))
2418 return l1
== NULL_TREE
&& l2
== NULL_TREE
;
2424 struct addr_const value1
, value2
;
2426 decode_addr_const (t1
, &value1
);
2427 decode_addr_const (t2
, &value2
);
2428 return (value1
.offset
== value2
.offset
2429 && strcmp (XSTR (value1
.base
, 0), XSTR (value2
.base
, 0)) == 0);
2435 return (compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0))
2436 && compare_constant(TREE_OPERAND (t1
, 1), TREE_OPERAND (t2
, 1)));
2440 case NON_LVALUE_EXPR
:
2441 case VIEW_CONVERT_EXPR
:
2442 return compare_constant (TREE_OPERAND (t1
, 0), TREE_OPERAND (t2
, 0));
2447 nt1
= lang_hooks
.expand_constant (t1
);
2448 nt2
= lang_hooks
.expand_constant (t2
);
2449 if (nt1
!= t1
|| nt2
!= t2
)
2450 return compare_constant (nt1
, nt2
);
2456 /* Should not get here. */
2460 /* Make a copy of the whole tree structure for a constant. This
2461 handles the same types of nodes that compare_constant handles. */
2464 copy_constant (tree exp
)
2466 switch (TREE_CODE (exp
))
2469 /* For ADDR_EXPR, we do not want to copy the decl whose address
2470 is requested. We do want to copy constants though. */
2471 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp
, 0))) == 'c')
2472 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2473 copy_constant (TREE_OPERAND (exp
, 0)));
2475 return copy_node (exp
);
2480 return copy_node (exp
);
2483 return build_complex (TREE_TYPE (exp
),
2484 copy_constant (TREE_REALPART (exp
)),
2485 copy_constant (TREE_IMAGPART (exp
)));
2489 return build2 (TREE_CODE (exp
), TREE_TYPE (exp
),
2490 copy_constant (TREE_OPERAND (exp
, 0)),
2491 copy_constant (TREE_OPERAND (exp
, 1)));
2495 case NON_LVALUE_EXPR
:
2496 case VIEW_CONVERT_EXPR
:
2497 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2498 copy_constant (TREE_OPERAND (exp
, 0)));
2502 tree copy
= copy_node (exp
);
2503 tree list
= copy_list (CONSTRUCTOR_ELTS (exp
));
2506 CONSTRUCTOR_ELTS (copy
) = list
;
2507 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2508 TREE_VALUE (tail
) = copy_constant (TREE_VALUE (tail
));
2509 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2510 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2511 TREE_PURPOSE (tail
) = copy_constant (TREE_PURPOSE (tail
));
2519 t
= lang_hooks
.expand_constant (exp
);
2521 return copy_constant (t
);
2528 /* Subroutine of output_constant_def:
2529 No constant equal to EXP is known to have been output.
2530 Make a constant descriptor to enter EXP in the hash table.
2531 Assign the label number and construct RTL to refer to the
2532 constant's location in memory.
2533 Caller is responsible for updating the hash table. */
2535 static struct constant_descriptor_tree
*
2536 build_constant_desc (tree exp
)
2542 struct constant_descriptor_tree
*desc
;
2544 desc
= ggc_alloc (sizeof (*desc
));
2545 desc
->value
= copy_constant (exp
);
2547 /* Propagate marked-ness to copied constant. */
2548 if (flag_mudflap
&& mf_marked_p (exp
))
2549 mf_mark (desc
->value
);
2551 /* Create a string containing the label name, in LABEL. */
2552 labelno
= const_labelno
++;
2553 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
2555 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2556 symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
2557 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2558 SYMBOL_REF_DECL (symbol
) = desc
->value
;
2559 TREE_CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
2561 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp
)), symbol
);
2562 set_mem_attributes (rtl
, exp
, 1);
2563 set_mem_alias_set (rtl
, 0);
2564 set_mem_alias_set (rtl
, const_alias_set
);
2566 /* Set flags or add text to the name to record information, such as
2567 that it is a local symbol. If the name is changed, the macro
2568 ASM_OUTPUT_LABELREF will have to know how to strip this
2569 information. This call might invalidate our local variable
2570 SYMBOL; we can't use it afterward. */
2572 targetm
.encode_section_info (exp
, rtl
, true);
2579 /* Return an rtx representing a reference to constant data in memory
2580 for the constant expression EXP.
2582 If assembler code for such a constant has already been output,
2583 return an rtx to refer to it.
2584 Otherwise, output such a constant in memory
2585 and generate an rtx for it.
2587 If DEFER is nonzero, this constant can be deferred and output only
2588 if referenced in the function after all optimizations.
2590 `const_desc_table' records which constants already have label strings. */
2593 output_constant_def (tree exp
, int defer
)
2595 struct constant_descriptor_tree
*desc
;
2596 struct constant_descriptor_tree key
;
2599 /* Look up EXP in the table of constant descriptors. If we didn't find
2600 it, create a new one. */
2602 loc
= htab_find_slot (const_desc_htab
, &key
, INSERT
);
2607 desc
= build_constant_desc (exp
);
2611 maybe_output_constant_def_contents (desc
, defer
);
2615 /* Subroutine of output_constant_def: Decide whether or not we need to
2616 output the constant DESC now, and if so, do it. */
2618 maybe_output_constant_def_contents (struct constant_descriptor_tree
*desc
,
2621 rtx symbol
= XEXP (desc
->rtl
, 0);
2622 tree exp
= desc
->value
;
2624 if (flag_syntax_only
)
2627 if (TREE_ASM_WRITTEN (exp
))
2628 /* Already output; don't do it again. */
2631 /* We can always defer constants as long as the context allows
2635 /* Increment n_deferred_constants if it exists. It needs to be at
2636 least as large as the number of constants actually referred to
2637 by the function. If it's too small we'll stop looking too early
2638 and fail to emit constants; if it's too large we'll only look
2639 through the entire function when we could have stopped earlier. */
2641 n_deferred_constants
++;
2645 output_constant_def_contents (symbol
);
2648 /* We must output the constant data referred to by SYMBOL; do so. */
2651 output_constant_def_contents (rtx symbol
)
2653 tree exp
= SYMBOL_REF_DECL (symbol
);
2654 const char *label
= XSTR (symbol
, 0);
2657 /* Make sure any other constants whose addresses appear in EXP
2658 are assigned label numbers. */
2659 int reloc
= compute_reloc_for_constant (exp
);
2661 /* Align the location counter as required by EXP's data type. */
2662 int align
= TYPE_ALIGN (TREE_TYPE (exp
));
2663 #ifdef CONSTANT_ALIGNMENT
2664 align
= CONSTANT_ALIGNMENT (exp
, align
);
2667 output_addressed_constants (exp
);
2669 /* We are no longer deferring this constant. */
2670 TREE_ASM_WRITTEN (exp
) = 1;
2672 if (IN_NAMED_SECTION (exp
))
2673 named_section (exp
, NULL
, reloc
);
2675 targetm
.asm_out
.select_section (exp
, reloc
, align
);
2677 if (align
> BITS_PER_UNIT
)
2679 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2682 size
= int_size_in_bytes (TREE_TYPE (exp
));
2683 if (TREE_CODE (exp
) == STRING_CST
)
2684 size
= MAX (TREE_STRING_LENGTH (exp
), size
);
2686 /* Do any machine/system dependent processing of the constant. */
2687 #ifdef ASM_DECLARE_CONSTANT_NAME
2688 ASM_DECLARE_CONSTANT_NAME (asm_out_file
, label
, exp
, size
);
2690 /* Standard thing is just output label for the constant. */
2691 ASM_OUTPUT_LABEL (asm_out_file
, label
);
2692 #endif /* ASM_DECLARE_CONSTANT_NAME */
2694 /* Output the value of EXP. */
2695 output_constant (exp
, size
, align
);
2697 mudflap_enqueue_constant (exp
);
2700 /* Look up EXP in the table of constant descriptors. Return the rtl
2701 if it has been emitted, else null. */
2704 lookup_constant_def (tree exp
)
2706 struct constant_descriptor_tree
*desc
;
2707 struct constant_descriptor_tree key
;
2710 desc
= htab_find (const_desc_htab
, &key
);
2712 return (desc
? desc
->rtl
: NULL_RTX
);
2715 /* Used in the hash tables to avoid outputting the same constant
2716 twice. Unlike 'struct constant_descriptor_tree', RTX constants
2717 are output once per function, not once per file. */
2718 /* ??? Only a few targets need per-function constant pools. Most
2719 can use one per-file pool. Should add a targetm bit to tell the
2722 struct rtx_constant_pool
GTY(())
2724 /* Pointers to first and last constant in pool, as ordered by offset. */
2725 struct constant_descriptor_rtx
*first
;
2726 struct constant_descriptor_rtx
*last
;
2728 /* Hash facility for making memory-constants from constant rtl-expressions.
2729 It is used on RISC machines where immediate integer arguments and
2730 constant addresses are restricted so that such constants must be stored
2732 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_htab
;
2733 htab_t
GTY((param_is (struct constant_descriptor_rtx
))) const_rtx_sym_htab
;
2735 /* Current offset in constant pool (does not include any
2736 machine-specific header). */
2737 HOST_WIDE_INT offset
;
2740 struct constant_descriptor_rtx
GTY((chain_next ("%h.next")))
2742 struct constant_descriptor_rtx
*next
;
2746 HOST_WIDE_INT offset
;
2748 enum machine_mode mode
;
2754 /* Hash and compare functions for const_rtx_htab. */
2757 const_desc_rtx_hash (const void *ptr
)
2759 const struct constant_descriptor_rtx
*desc
= ptr
;
2764 const_desc_rtx_eq (const void *a
, const void *b
)
2766 const struct constant_descriptor_rtx
*x
= a
;
2767 const struct constant_descriptor_rtx
*y
= b
;
2769 if (x
->mode
!= y
->mode
)
2771 return rtx_equal_p (x
->constant
, y
->constant
);
2774 /* Hash and compare functions for const_rtx_sym_htab. */
2777 const_desc_rtx_sym_hash (const void *ptr
)
2779 const struct constant_descriptor_rtx
*desc
= ptr
;
2780 return htab_hash_string (XSTR (desc
->sym
, 0));
2784 const_desc_rtx_sym_eq (const void *a
, const void *b
)
2786 const struct constant_descriptor_rtx
*x
= a
;
2787 const struct constant_descriptor_rtx
*y
= b
;
2788 return XSTR (x
->sym
, 0) == XSTR (y
->sym
, 0);
2791 /* This is the worker function for const_rtx_hash, called via for_each_rtx. */
2794 const_rtx_hash_1 (rtx
*xp
, void *data
)
2796 unsigned HOST_WIDE_INT hwi
;
2797 enum machine_mode mode
;
2803 code
= GET_CODE (x
);
2804 mode
= GET_MODE (x
);
2805 h
= (hashval_t
) code
* 1048573 + mode
;
2813 const int shift
= sizeof (hashval_t
) * CHAR_BIT
;
2814 const int n
= sizeof (HOST_WIDE_INT
) / sizeof (hashval_t
);
2817 h
^= (hashval_t
) hwi
;
2818 for (i
= 1; i
< n
; ++i
)
2821 h
^= (hashval_t
) hwi
;
2827 if (mode
== VOIDmode
)
2829 hwi
= CONST_DOUBLE_LOW (x
) ^ CONST_DOUBLE_HIGH (x
);
2833 h
^= real_hash (CONST_DOUBLE_REAL_VALUE (x
));
2837 h
^= htab_hash_string (XSTR (x
, 0));
2841 h
= h
* 251 + CODE_LABEL_NUMBER (XEXP (x
, 0));
2845 case UNSPEC_VOLATILE
:
2846 h
= h
* 251 + XINT (x
, 1);
2854 *hp
= *hp
* 509 + h
;
2858 /* Compute a hash value for X, which should be a constant. */
2861 const_rtx_hash (rtx x
)
2864 for_each_rtx (&x
, const_rtx_hash_1
, &h
);
2869 /* Initialize constant pool hashing for a new function. */
2872 init_varasm_status (struct function
*f
)
2874 struct varasm_status
*p
;
2875 struct rtx_constant_pool
*pool
;
2877 p
= ggc_alloc (sizeof (struct varasm_status
));
2880 pool
= ggc_alloc (sizeof (struct rtx_constant_pool
));
2882 p
->deferred_constants
= 0;
2884 pool
->const_rtx_htab
= htab_create_ggc (31, const_desc_rtx_hash
,
2885 const_desc_rtx_eq
, NULL
);
2886 pool
->const_rtx_sym_htab
= htab_create_ggc (31, const_desc_rtx_sym_hash
,
2887 const_desc_rtx_sym_eq
, NULL
);
2888 pool
->first
= pool
->last
= NULL
;
2892 /* Given a MINUS expression, simplify it if both sides
2893 include the same symbol. */
2896 simplify_subtraction (rtx x
)
2898 rtx r
= simplify_rtx (x
);
2902 /* Given a constant rtx X, make (or find) a memory constant for its value
2903 and return a MEM rtx to refer to it in memory. */
2906 force_const_mem (enum machine_mode mode
, rtx x
)
2908 struct constant_descriptor_rtx
*desc
, tmp
;
2909 struct rtx_constant_pool
*pool
= cfun
->varasm
->pool
;
2916 /* If we're not allowed to drop X into the constant pool, don't. */
2917 if (targetm
.cannot_force_const_mem (x
))
2920 /* Lookup the value in the hashtable. */
2923 hash
= const_rtx_hash (x
);
2924 slot
= htab_find_slot_with_hash (pool
->const_rtx_htab
, &tmp
, hash
, INSERT
);
2927 /* If the constant was already present, return its memory. */
2929 return copy_rtx (desc
->mem
);
2931 /* Otherwise, create a new descriptor. */
2932 desc
= ggc_alloc (sizeof (*desc
));
2935 /* Align the location counter as required by EXP's data type. */
2936 align
= GET_MODE_ALIGNMENT (mode
== VOIDmode
? word_mode
: mode
);
2937 #ifdef CONSTANT_ALIGNMENT
2939 tree type
= lang_hooks
.types
.type_for_mode (mode
, 0);
2940 if (type
!= NULL_TREE
)
2941 align
= CONSTANT_ALIGNMENT (make_tree (type
, x
), align
);
2945 pool
->offset
+= (align
/ BITS_PER_UNIT
) - 1;
2946 pool
->offset
&= ~ ((align
/ BITS_PER_UNIT
) - 1);
2949 desc
->constant
= tmp
.constant
;
2950 desc
->offset
= pool
->offset
;
2953 desc
->align
= align
;
2954 desc
->labelno
= const_labelno
;
2957 pool
->offset
+= GET_MODE_SIZE (mode
);
2959 pool
->last
->next
= desc
;
2961 pool
->first
= pool
->last
= desc
;
2964 /* Create a string containing the label name, in LABEL. */
2965 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
2968 /* Construct the SYMBOL_REF. Make sure to mark it as belonging to
2969 the constants pool. */
2970 desc
->sym
= symbol
= gen_rtx_SYMBOL_REF (Pmode
, ggc_strdup (label
));
2971 SYMBOL_REF_FLAGS (symbol
) = SYMBOL_FLAG_LOCAL
;
2972 CONSTANT_POOL_ADDRESS_P (symbol
) = 1;
2973 current_function_uses_const_pool
= 1;
2975 /* Insert the descriptor into the symbol cross-reference table too. */
2976 slot
= htab_find_slot (pool
->const_rtx_sym_htab
, desc
, INSERT
);
2981 /* Construct the MEM. */
2982 desc
->mem
= def
= gen_const_mem (mode
, symbol
);
2983 set_mem_attributes (def
, lang_hooks
.types
.type_for_mode (mode
, 0), 1);
2985 /* If we're dropping a label to the constant pool, make sure we
2987 if (GET_CODE (x
) == LABEL_REF
)
2988 LABEL_PRESERVE_P (XEXP (x
, 0)) = 1;
2990 return copy_rtx (def
);
2993 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
2994 the corresponding constant_descriptor_rtx structure. */
2996 static struct constant_descriptor_rtx
*
2997 find_pool_constant (struct rtx_constant_pool
*pool
, rtx sym
)
2999 struct constant_descriptor_rtx tmp
;
3001 return htab_find (pool
->const_rtx_sym_htab
, &tmp
);
3004 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3007 get_pool_constant (rtx addr
)
3009 return find_pool_constant (cfun
->varasm
->pool
, addr
)->constant
;
3012 /* Given a constant pool SYMBOL_REF, return the corresponding constant
3013 and whether it has been output or not. */
3016 get_pool_constant_mark (rtx addr
, bool *pmarked
)
3018 struct constant_descriptor_rtx
*desc
;
3020 desc
= find_pool_constant (cfun
->varasm
->pool
, addr
);
3021 *pmarked
= (desc
->mark
!= 0);
3022 return desc
->constant
;
3025 /* Likewise, but for the constant pool of a specific function. */
3028 get_pool_constant_for_function (struct function
*f
, rtx addr
)
3030 return find_pool_constant (f
->varasm
->pool
, addr
)->constant
;
3033 /* Similar, return the mode. */
3036 get_pool_mode (rtx addr
)
3038 return find_pool_constant (cfun
->varasm
->pool
, addr
)->mode
;
3042 get_pool_mode_for_function (struct function
*f
, rtx addr
)
3044 return find_pool_constant (f
->varasm
->pool
, addr
)->mode
;
3047 /* Similar, return the offset in the constant pool. */
3050 get_pool_offset (rtx addr
)
3052 return find_pool_constant (cfun
->varasm
->pool
, addr
)->offset
;
3055 /* Return the size of the constant pool. */
3058 get_pool_size (void)
3060 return cfun
->varasm
->pool
->offset
;
3063 /* Worker function for output_constant_pool_1. Emit assembly for X
3064 in MODE with known alignment ALIGN. */
3067 output_constant_pool_2 (enum machine_mode mode
, rtx x
, unsigned int align
)
3069 switch (GET_MODE_CLASS (mode
))
3072 if (GET_CODE (x
) != CONST_DOUBLE
)
3077 REAL_VALUE_FROM_CONST_DOUBLE (r
, x
);
3078 assemble_real (r
, mode
, align
);
3083 case MODE_PARTIAL_INT
:
3084 assemble_integer (x
, GET_MODE_SIZE (mode
), align
, 1);
3087 case MODE_VECTOR_FLOAT
:
3088 case MODE_VECTOR_INT
:
3091 enum machine_mode submode
= GET_MODE_INNER (mode
);
3092 unsigned int subalign
= MIN (align
, GET_MODE_BITSIZE (submode
));
3094 if (GET_CODE (x
) != CONST_VECTOR
)
3096 units
= CONST_VECTOR_NUNITS (x
);
3098 for (i
= 0; i
< units
; i
++)
3100 rtx elt
= CONST_VECTOR_ELT (x
, i
);
3101 output_constant_pool_2 (submode
, elt
, i
? subalign
: align
);
3111 /* Worker function for output_constant_pool. Emit POOL. */
3114 output_constant_pool_1 (struct constant_descriptor_rtx
*desc
)
3122 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3123 whose CODE_LABEL has been deleted. This can occur if a jump table
3124 is eliminated by optimization. If so, write a constant of zero
3125 instead. Note that this can also happen by turning the
3126 CODE_LABEL into a NOTE. */
3127 /* ??? This seems completely and utterly wrong. Certainly it's
3128 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3129 functioning even with INSN_DELETED_P and friends. */
3132 switch (GET_CODE (x
))
3135 if (GET_CODE (XEXP (x
, 0)) != PLUS
3136 || GET_CODE (XEXP (XEXP (x
, 0), 0)) != LABEL_REF
)
3138 tmp
= XEXP (XEXP (x
, 0), 0);
3143 if (INSN_DELETED_P (tmp
)
3145 && NOTE_LINE_NUMBER (tmp
) == NOTE_INSN_DELETED
))
3156 /* First switch to correct section. */
3157 targetm
.asm_out
.select_rtx_section (desc
->mode
, x
, desc
->align
);
3159 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3160 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, desc
->mode
,
3161 desc
->align
, desc
->labelno
, done
);
3164 assemble_align (desc
->align
);
3166 /* Output the label. */
3167 targetm
.asm_out
.internal_label (asm_out_file
, "LC", desc
->labelno
);
3169 /* Output the data. */
3170 output_constant_pool_2 (desc
->mode
, x
, desc
->align
);
3172 /* Make sure all constants in SECTION_MERGE and not SECTION_STRINGS
3173 sections have proper size. */
3174 if (desc
->align
> GET_MODE_BITSIZE (desc
->mode
)
3175 && in_section
== in_named
3176 && get_named_section_flags (in_named_name
) & SECTION_MERGE
)
3177 assemble_align (desc
->align
);
3179 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3185 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3186 to as used. Emit referenced deferred strings. This function can
3187 be used with for_each_rtx to mark all SYMBOL_REFs in an rtx. */
3190 mark_constant (rtx
*current_rtx
, void *data
)
3192 struct rtx_constant_pool
*pool
= data
;
3193 rtx x
= *current_rtx
;
3195 if (x
== NULL_RTX
|| GET_CODE (x
) != SYMBOL_REF
)
3198 if (CONSTANT_POOL_ADDRESS_P (x
))
3200 struct constant_descriptor_rtx
*desc
= find_pool_constant (pool
, x
);
3201 if (desc
->mark
== 0)
3204 for_each_rtx (&desc
->constant
, mark_constant
, pool
);
3207 else if (TREE_CONSTANT_POOL_ADDRESS_P (x
))
3209 tree exp
= SYMBOL_REF_DECL (x
);
3210 if (!TREE_ASM_WRITTEN (exp
))
3212 n_deferred_constants
--;
3213 output_constant_def_contents (x
);
3220 /* Look through appropriate parts of INSN, marking all entries in the
3221 constant pool which are actually being used. Entries that are only
3222 referenced by other constants are also marked as used. Emit
3223 deferred strings that are used. */
3226 mark_constants (struct rtx_constant_pool
*pool
, rtx insn
)
3231 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3232 insns, not any notes that may be attached. We don't want to mark
3233 a constant just because it happens to appear in a REG_EQUIV note. */
3234 if (GET_CODE (PATTERN (insn
)) == SEQUENCE
)
3236 rtx seq
= PATTERN (insn
);
3237 int i
, n
= XVECLEN (seq
, 0);
3238 for (i
= 0; i
< n
; ++i
)
3240 rtx subinsn
= XVECEXP (seq
, 0, i
);
3241 if (INSN_P (subinsn
))
3242 for_each_rtx (&PATTERN (subinsn
), mark_constant
, pool
);
3246 for_each_rtx (&PATTERN (insn
), mark_constant
, pool
);
3249 /* Look through the instructions for this function, and mark all the
3250 entries in POOL which are actually being used. Emit deferred constants
3251 which have indeed been used. */
3254 mark_constant_pool (struct rtx_constant_pool
*pool
)
3258 if (pool
->first
== 0 && n_deferred_constants
== 0)
3261 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3262 mark_constants (pool
, insn
);
3264 for (link
= current_function_epilogue_delay_list
;
3266 link
= XEXP (link
, 1))
3267 mark_constants (pool
, XEXP (link
, 0));
3270 /* Write all the constants in the constant pool. */
3273 output_constant_pool (const char *fnname ATTRIBUTE_UNUSED
,
3274 tree fndecl ATTRIBUTE_UNUSED
)
3276 struct rtx_constant_pool
*pool
= cfun
->varasm
->pool
;
3277 struct constant_descriptor_rtx
*desc
;
3279 /* It is possible for gcc to call force_const_mem and then to later
3280 discard the instructions which refer to the constant. In such a
3281 case we do not need to output the constant. */
3282 mark_constant_pool (pool
);
3284 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3285 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3288 for (desc
= pool
->first
; desc
; desc
= desc
->next
)
3289 output_constant_pool_1 (desc
);
3291 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3292 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool
->offset
);
3296 /* Determine what kind of relocations EXP may need. */
3299 compute_reloc_for_constant (tree exp
)
3301 int reloc
= 0, reloc2
;
3304 /* Give the front-end a chance to convert VALUE to something that
3305 looks more like a constant to the back-end. */
3306 exp
= lang_hooks
.expand_constant (exp
);
3308 switch (TREE_CODE (exp
))
3312 /* Go inside any operations that get_inner_reference can handle and see
3313 if what's inside is a constant: no need to do anything here for
3314 addresses of variables or functions. */
3315 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
3316 tem
= TREE_OPERAND (tem
, 0))
3319 if (TREE_PUBLIC (tem
))
3326 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3327 reloc
|= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
3331 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3332 reloc2
= compute_reloc_for_constant (TREE_OPERAND (exp
, 1));
3333 /* The difference of two local labels is computable at link time. */
3334 if (reloc
== 1 && reloc2
== 1)
3342 case NON_LVALUE_EXPR
:
3343 reloc
= compute_reloc_for_constant (TREE_OPERAND (exp
, 0));
3347 for (tem
= CONSTRUCTOR_ELTS (exp
); tem
; tem
= TREE_CHAIN (tem
))
3348 if (TREE_VALUE (tem
) != 0)
3349 reloc
|= compute_reloc_for_constant (TREE_VALUE (tem
));
3359 /* Find all the constants whose addresses are referenced inside of EXP,
3360 and make sure assembler code with a label has been output for each one.
3361 Indicate whether an ADDR_EXPR has been encountered. */
3364 output_addressed_constants (tree exp
)
3368 /* Give the front-end a chance to convert VALUE to something that
3369 looks more like a constant to the back-end. */
3370 exp
= lang_hooks
.expand_constant (exp
);
3372 switch (TREE_CODE (exp
))
3376 /* Go inside any operations that get_inner_reference can handle and see
3377 if what's inside is a constant: no need to do anything here for
3378 addresses of variables or functions. */
3379 for (tem
= TREE_OPERAND (exp
, 0); handled_component_p (tem
);
3380 tem
= TREE_OPERAND (tem
, 0))
3383 if (TREE_CODE_CLASS (TREE_CODE (tem
)) == 'c'
3384 || TREE_CODE (tem
) == CONSTRUCTOR
)
3385 output_constant_def (tem
, 0);
3390 output_addressed_constants (TREE_OPERAND (exp
, 1));
3395 case NON_LVALUE_EXPR
:
3396 output_addressed_constants (TREE_OPERAND (exp
, 0));
3400 for (tem
= CONSTRUCTOR_ELTS (exp
); tem
; tem
= TREE_CHAIN (tem
))
3401 if (TREE_VALUE (tem
) != 0)
3402 output_addressed_constants (TREE_VALUE (tem
));
3411 /* Return nonzero if VALUE is a valid constant-valued expression
3412 for use in initializing a static variable; one that can be an
3413 element of a "constant" initializer.
3415 Return null_pointer_node if the value is absolute;
3416 if it is relocatable, return the variable that determines the relocation.
3417 We assume that VALUE has been folded as much as possible;
3418 therefore, we do not need to check for such things as
3419 arithmetic-combinations of integers. */
3422 initializer_constant_valid_p (tree value
, tree endtype
)
3424 /* Give the front-end a chance to convert VALUE to something that
3425 looks more like a constant to the back-end. */
3426 value
= lang_hooks
.expand_constant (value
);
3428 switch (TREE_CODE (value
))
3431 if ((TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
3432 || TREE_CODE (TREE_TYPE (value
)) == RECORD_TYPE
)
3433 && TREE_CONSTANT (value
)
3434 && CONSTRUCTOR_ELTS (value
))
3437 bool absolute
= true;
3439 for (elt
= CONSTRUCTOR_ELTS (value
); elt
; elt
= TREE_CHAIN (elt
))
3442 value
= TREE_VALUE (elt
);
3443 reloc
= initializer_constant_valid_p (value
, TREE_TYPE (value
));
3446 if (reloc
!= null_pointer_node
)
3449 /* For a non-absolute relocation, there is no single
3450 variable that can be "the variable that determines the
3452 return absolute
? null_pointer_node
: error_mark_node
;
3455 return TREE_STATIC (value
) ? null_pointer_node
: NULL_TREE
;
3462 return null_pointer_node
;
3466 return staticp (TREE_OPERAND (value
, 0)) ? TREE_OPERAND (value
, 0) : 0;
3468 case VIEW_CONVERT_EXPR
:
3469 case NON_LVALUE_EXPR
:
3470 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3474 /* Allow conversions between pointer types. */
3475 if (POINTER_TYPE_P (TREE_TYPE (value
))
3476 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3477 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3479 /* Allow conversions between real types. */
3480 if (FLOAT_TYPE_P (TREE_TYPE (value
))
3481 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3482 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3484 /* Allow length-preserving conversions between integer types. */
3485 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
3486 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0)))
3487 && (TYPE_PRECISION (TREE_TYPE (value
))
3488 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0)))))
3489 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
3491 /* Allow conversions between other integer types only if
3493 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
3494 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3496 tree inner
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3498 if (inner
== null_pointer_node
)
3499 return null_pointer_node
;
3503 /* Allow (int) &foo provided int is as wide as a pointer. */
3504 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
3505 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0)))
3506 && (TYPE_PRECISION (TREE_TYPE (value
))
3507 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0)))))
3508 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3511 /* Likewise conversions from int to pointers, but also allow
3512 conversions from 0. */
3513 if ((POINTER_TYPE_P (TREE_TYPE (value
))
3514 || TREE_CODE (TREE_TYPE (value
)) == OFFSET_TYPE
)
3515 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
3517 if (integer_zerop (TREE_OPERAND (value
, 0)))
3518 return null_pointer_node
;
3519 else if (TYPE_PRECISION (TREE_TYPE (value
))
3520 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0))))
3521 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3525 /* Allow conversions to struct or union types if the value
3527 if (TREE_CODE (TREE_TYPE (value
)) == RECORD_TYPE
3528 || TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
)
3529 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3534 if (! INTEGRAL_TYPE_P (endtype
)
3535 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
3537 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3539 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
3541 /* If either term is absolute, use the other terms relocation. */
3542 if (valid0
== null_pointer_node
)
3544 if (valid1
== null_pointer_node
)
3550 if (! INTEGRAL_TYPE_P (endtype
)
3551 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
3553 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
3555 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
3557 /* Win if second argument is absolute. */
3558 if (valid1
== null_pointer_node
)
3560 /* Win if both arguments have the same relocation.
3561 Then the value is absolute. */
3562 if (valid0
== valid1
&& valid0
!= 0)
3563 return null_pointer_node
;
3565 /* Since GCC guarantees that string constants are unique in the
3566 generated code, a subtraction between two copies of the same
3567 constant string is absolute. */
3568 if (valid0
&& TREE_CODE (valid0
) == STRING_CST
&&
3569 valid1
&& TREE_CODE (valid1
) == STRING_CST
&&
3570 TREE_STRING_POINTER (valid0
) == TREE_STRING_POINTER (valid1
))
3571 return null_pointer_node
;
3574 /* Support differences between labels. */
3575 if (INTEGRAL_TYPE_P (endtype
))
3578 op0
= TREE_OPERAND (value
, 0);
3579 op1
= TREE_OPERAND (value
, 1);
3581 /* Like STRIP_NOPS except allow the operand mode to widen.
3582 This works around a feature of fold that simplifies
3583 (int)(p1 - p2) to ((int)p1 - (int)p2) under the theory
3584 that the narrower operation is cheaper. */
3586 while (TREE_CODE (op0
) == NOP_EXPR
3587 || TREE_CODE (op0
) == CONVERT_EXPR
3588 || TREE_CODE (op0
) == NON_LVALUE_EXPR
)
3590 tree inner
= TREE_OPERAND (op0
, 0);
3591 if (inner
== error_mark_node
3592 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
3593 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op0
)))
3594 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
3599 while (TREE_CODE (op1
) == NOP_EXPR
3600 || TREE_CODE (op1
) == CONVERT_EXPR
3601 || TREE_CODE (op1
) == NON_LVALUE_EXPR
)
3603 tree inner
= TREE_OPERAND (op1
, 0);
3604 if (inner
== error_mark_node
3605 || ! INTEGRAL_MODE_P (TYPE_MODE (TREE_TYPE (inner
)))
3606 || (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (op1
)))
3607 > GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (inner
)))))
3612 if (TREE_CODE (op0
) == ADDR_EXPR
3613 && TREE_CODE (TREE_OPERAND (op0
, 0)) == LABEL_DECL
3614 && TREE_CODE (op1
) == ADDR_EXPR
3615 && TREE_CODE (TREE_OPERAND (op1
, 0)) == LABEL_DECL
)
3616 return null_pointer_node
;
3627 /* Output assembler code for constant EXP to FILE, with no label.
3628 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3629 Assumes output_addressed_constants has been done on EXP already.
3631 Generate exactly SIZE bytes of assembler data, padding at the end
3632 with zeros if necessary. SIZE must always be specified.
3634 SIZE is important for structure constructors,
3635 since trailing members may have been omitted from the constructor.
3636 It is also important for initialization of arrays from string constants
3637 since the full length of the string constant might not be wanted.
3638 It is also needed for initialization of unions, where the initializer's
3639 type is just one member, and that may not be as long as the union.
3641 There a case in which we would fail to output exactly SIZE bytes:
3642 for a structure constructor that wants to produce more than SIZE bytes.
3643 But such constructors will never be generated for any possible input.
3645 ALIGN is the alignment of the data in bits. */
3648 output_constant (tree exp
, unsigned HOST_WIDE_INT size
, unsigned int align
)
3650 enum tree_code code
;
3651 unsigned HOST_WIDE_INT thissize
;
3653 /* Some front-ends use constants other than the standard language-independent
3654 varieties, but which may still be output directly. Give the front-end a
3655 chance to convert EXP to a language-independent representation. */
3656 exp
= lang_hooks
.expand_constant (exp
);
3658 if (size
== 0 || flag_syntax_only
)
3661 /* Eliminate any conversions since we'll be outputting the underlying
3663 while (TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
3664 || TREE_CODE (exp
) == NON_LVALUE_EXPR
3665 || TREE_CODE (exp
) == VIEW_CONVERT_EXPR
)
3666 exp
= TREE_OPERAND (exp
, 0);
3668 code
= TREE_CODE (TREE_TYPE (exp
));
3669 thissize
= int_size_in_bytes (TREE_TYPE (exp
));
3671 /* Allow a constructor with no elements for any data type.
3672 This means to fill the space with zeros. */
3673 if (TREE_CODE (exp
) == CONSTRUCTOR
&& CONSTRUCTOR_ELTS (exp
) == 0)
3675 assemble_zeros (size
);
3679 if (TREE_CODE (exp
) == FDESC_EXPR
)
3681 #ifdef ASM_OUTPUT_FDESC
3682 HOST_WIDE_INT part
= tree_low_cst (TREE_OPERAND (exp
, 1), 0);
3683 tree decl
= TREE_OPERAND (exp
, 0);
3684 ASM_OUTPUT_FDESC (asm_out_file
, decl
, part
);
3691 /* Now output the underlying data. If we've handling the padding, return.
3692 Otherwise, break and ensure SIZE is the size written. */
3700 case REFERENCE_TYPE
:
3702 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
3703 EXPAND_INITIALIZER
),
3704 MIN (size
, thissize
), align
, 0))
3705 error ("initializer for integer value is too complicated");
3709 if (TREE_CODE (exp
) != REAL_CST
)
3710 error ("initializer for floating value is not a floating constant");
3712 assemble_real (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)), align
);
3716 output_constant (TREE_REALPART (exp
), thissize
/ 2, align
);
3717 output_constant (TREE_IMAGPART (exp
), thissize
/ 2,
3718 min_align (align
, BITS_PER_UNIT
* (thissize
/ 2)));
3723 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3725 output_constructor (exp
, size
, align
);
3728 else if (TREE_CODE (exp
) == STRING_CST
)
3730 thissize
= MIN ((unsigned HOST_WIDE_INT
)TREE_STRING_LENGTH (exp
),
3732 assemble_string (TREE_STRING_POINTER (exp
), thissize
);
3734 else if (TREE_CODE (exp
) == VECTOR_CST
)
3738 unsigned int nalign
;
3739 enum machine_mode inner
;
3741 inner
= TYPE_MODE (TREE_TYPE (TREE_TYPE (exp
)));
3742 nalign
= MIN (align
, GET_MODE_ALIGNMENT (inner
));
3744 elt_size
= GET_MODE_SIZE (inner
);
3746 link
= TREE_VECTOR_CST_ELTS (exp
);
3747 output_constant (TREE_VALUE (link
), elt_size
, align
);
3748 while ((link
= TREE_CHAIN (link
)) != NULL
)
3749 output_constant (TREE_VALUE (link
), elt_size
, nalign
);
3757 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3758 output_constructor (exp
, size
, align
);
3764 if (TREE_CODE (exp
) == INTEGER_CST
)
3765 assemble_integer (expand_expr (exp
, NULL_RTX
,
3766 VOIDmode
, EXPAND_INITIALIZER
),
3767 thissize
, align
, 1);
3768 else if (TREE_CODE (exp
) == CONSTRUCTOR
)
3770 unsigned char *buffer
= alloca (thissize
);
3771 if (get_set_constructor_bytes (exp
, buffer
, thissize
))
3773 assemble_string ((char *) buffer
, thissize
);
3776 error ("unknown set constructor type");
3786 if (size
> thissize
)
3787 assemble_zeros (size
- thissize
);
3791 /* Subroutine of output_constructor, used for computing the size of
3792 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
3793 type with an unspecified upper bound. */
3795 static unsigned HOST_WIDE_INT
3796 array_size_for_constructor (tree val
)
3800 /* This code used to attempt to handle string constants that are not
3801 arrays of single-bytes, but nothing else does, so there's no point in
3803 if (TREE_CODE (val
) == STRING_CST
)
3804 return TREE_STRING_LENGTH (val
);
3806 max_index
= NULL_TREE
;
3807 for (i
= CONSTRUCTOR_ELTS (val
); i
; i
= TREE_CHAIN (i
))
3809 tree index
= TREE_PURPOSE (i
);
3811 if (TREE_CODE (index
) == RANGE_EXPR
)
3812 index
= TREE_OPERAND (index
, 1);
3813 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
3817 if (max_index
== NULL_TREE
)
3820 /* Compute the total number of array elements. */
3821 i
= size_binop (MINUS_EXPR
, convert (sizetype
, max_index
),
3823 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)))));
3824 i
= size_binop (PLUS_EXPR
, i
, convert (sizetype
, integer_one_node
));
3826 /* Multiply by the array element unit size to find number of bytes. */
3827 i
= size_binop (MULT_EXPR
, i
, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
3829 return tree_low_cst (i
, 1);
3832 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
3833 Generate at least SIZE bytes, padding if necessary. */
3836 output_constructor (tree exp
, unsigned HOST_WIDE_INT size
,
3839 tree type
= TREE_TYPE (exp
);
3840 tree link
, field
= 0;
3842 /* Number of bytes output or skipped so far.
3843 In other words, current position within the constructor. */
3844 HOST_WIDE_INT total_bytes
= 0;
3845 /* Nonzero means BYTE contains part of a byte, to be output. */
3846 int byte_buffer_in_use
= 0;
3849 if (HOST_BITS_PER_WIDE_INT
< BITS_PER_UNIT
)
3852 if (TREE_CODE (type
) == RECORD_TYPE
)
3853 field
= TYPE_FIELDS (type
);
3855 if (TREE_CODE (type
) == ARRAY_TYPE
3856 && TYPE_DOMAIN (type
) != 0)
3857 min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (type
));
3859 /* As LINK goes through the elements of the constant,
3860 FIELD goes through the structure fields, if the constant is a structure.
3861 if the constant is a union, then we override this,
3862 by getting the field from the TREE_LIST element.
3863 But the constant could also be an array. Then FIELD is zero.
3865 There is always a maximum of one element in the chain LINK for unions
3866 (even if the initializer in a source program incorrectly contains
3868 for (link
= CONSTRUCTOR_ELTS (exp
);
3870 link
= TREE_CHAIN (link
),
3871 field
= field
? TREE_CHAIN (field
) : 0)
3873 tree val
= TREE_VALUE (link
);
3876 /* The element in a union constructor specifies the proper field
3878 if ((TREE_CODE (type
) == RECORD_TYPE
|| TREE_CODE (type
) == UNION_TYPE
3879 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
3880 && TREE_PURPOSE (link
) != 0)
3881 field
= TREE_PURPOSE (link
);
3883 else if (TREE_CODE (type
) == ARRAY_TYPE
)
3884 index
= TREE_PURPOSE (link
);
3886 #ifdef ASM_COMMENT_START
3887 if (field
&& flag_verbose_asm
)
3888 fprintf (asm_out_file
, "%s %s:\n",
3891 ? IDENTIFIER_POINTER (DECL_NAME (field
))
3895 /* Eliminate the marker that makes a cast not be an lvalue. */
3899 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
3901 unsigned HOST_WIDE_INT fieldsize
3902 = int_size_in_bytes (TREE_TYPE (type
));
3903 HOST_WIDE_INT lo_index
= tree_low_cst (TREE_OPERAND (index
, 0), 0);
3904 HOST_WIDE_INT hi_index
= tree_low_cst (TREE_OPERAND (index
, 1), 0);
3905 HOST_WIDE_INT index
;
3906 unsigned int align2
= min_align (align
, fieldsize
* BITS_PER_UNIT
);
3908 for (index
= lo_index
; index
<= hi_index
; index
++)
3910 /* Output the element's initial value. */
3912 assemble_zeros (fieldsize
);
3914 output_constant (val
, fieldsize
, align2
);
3916 /* Count its size. */
3917 total_bytes
+= fieldsize
;
3920 else if (field
== 0 || !DECL_BIT_FIELD (field
))
3922 /* An element that is not a bit-field. */
3924 unsigned HOST_WIDE_INT fieldsize
;
3925 /* Since this structure is static,
3926 we know the positions are constant. */
3927 HOST_WIDE_INT pos
= field
? int_byte_position (field
) : 0;
3928 unsigned int align2
;
3931 pos
= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val
)), 1)
3932 * (tree_low_cst (index
, 0) - tree_low_cst (min_index
, 0)));
3934 /* Output any buffered-up bit-fields preceding this element. */
3935 if (byte_buffer_in_use
)
3937 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
3939 byte_buffer_in_use
= 0;
3942 /* Advance to offset of this element.
3943 Note no alignment needed in an array, since that is guaranteed
3944 if each element has the proper size. */
3945 if ((field
!= 0 || index
!= 0) && pos
!= total_bytes
)
3947 assemble_zeros (pos
- total_bytes
);
3951 /* Find the alignment of this element. */
3952 align2
= min_align (align
, BITS_PER_UNIT
* pos
);
3954 /* Determine size this element should occupy. */
3959 /* If this is an array with an unspecified upper bound,
3960 the initializer determines the size. */
3961 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
3962 but we cannot do this until the deprecated support for
3963 initializing zero-length array members is removed. */
3964 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
3965 && TYPE_DOMAIN (TREE_TYPE (field
))
3966 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
3968 fieldsize
= array_size_for_constructor (val
);
3969 /* Given a non-empty initialization, this field had
3971 if (fieldsize
!= 0 && TREE_CHAIN (field
) != NULL_TREE
)
3974 else if (DECL_SIZE_UNIT (field
))
3976 /* ??? This can't be right. If the decl size overflows
3977 a host integer we will silently emit no data. */
3978 if (host_integerp (DECL_SIZE_UNIT (field
), 1))
3979 fieldsize
= tree_low_cst (DECL_SIZE_UNIT (field
), 1);
3983 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
3985 /* Output the element's initial value. */
3987 assemble_zeros (fieldsize
);
3989 output_constant (val
, fieldsize
, align2
);
3991 /* Count its size. */
3992 total_bytes
+= fieldsize
;
3994 else if (val
!= 0 && TREE_CODE (val
) != INTEGER_CST
)
3995 error ("invalid initial value for member `%s'",
3996 IDENTIFIER_POINTER (DECL_NAME (field
)));
3999 /* Element that is a bit-field. */
4001 HOST_WIDE_INT next_offset
= int_bit_position (field
);
4002 HOST_WIDE_INT end_offset
4003 = (next_offset
+ tree_low_cst (DECL_SIZE (field
), 1));
4006 val
= integer_zero_node
;
4008 /* If this field does not start in this (or, next) byte,
4010 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4012 /* Output remnant of any bit field in previous bytes. */
4013 if (byte_buffer_in_use
)
4015 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4017 byte_buffer_in_use
= 0;
4020 /* If still not at proper byte, advance to there. */
4021 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4023 assemble_zeros (next_offset
/ BITS_PER_UNIT
- total_bytes
);
4024 total_bytes
= next_offset
/ BITS_PER_UNIT
;
4028 if (! byte_buffer_in_use
)
4031 /* We must split the element into pieces that fall within
4032 separate bytes, and combine each byte with previous or
4033 following bit-fields. */
4035 /* next_offset is the offset n fbits from the beginning of
4036 the structure to the next bit of this element to be processed.
4037 end_offset is the offset of the first bit past the end of
4039 while (next_offset
< end_offset
)
4043 HOST_WIDE_INT value
;
4044 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
4045 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
4047 /* Advance from byte to byte
4048 within this element when necessary. */
4049 while (next_byte
!= total_bytes
)
4051 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4056 /* Number of bits we can process at once
4057 (all part of the same byte). */
4058 this_time
= MIN (end_offset
- next_offset
,
4059 BITS_PER_UNIT
- next_bit
);
4060 if (BYTES_BIG_ENDIAN
)
4062 /* On big-endian machine, take the most significant bits
4063 first (of the bits that are significant)
4064 and put them into bytes from the most significant end. */
4065 shift
= end_offset
- next_offset
- this_time
;
4067 /* Don't try to take a bunch of bits that cross
4068 the word boundary in the INTEGER_CST. We can
4069 only select bits from the LOW or HIGH part
4071 if (shift
< HOST_BITS_PER_WIDE_INT
4072 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4074 this_time
= shift
+ this_time
- HOST_BITS_PER_WIDE_INT
;
4075 shift
= HOST_BITS_PER_WIDE_INT
;
4078 /* Now get the bits from the appropriate constant word. */
4079 if (shift
< HOST_BITS_PER_WIDE_INT
)
4080 value
= TREE_INT_CST_LOW (val
);
4081 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4083 value
= TREE_INT_CST_HIGH (val
);
4084 shift
-= HOST_BITS_PER_WIDE_INT
;
4089 /* Get the result. This works only when:
4090 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4091 byte
|= (((value
>> shift
)
4092 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4093 << (BITS_PER_UNIT
- this_time
- next_bit
));
4097 /* On little-endian machines,
4098 take first the least significant bits of the value
4099 and pack them starting at the least significant
4100 bits of the bytes. */
4101 shift
= next_offset
- int_bit_position (field
);
4103 /* Don't try to take a bunch of bits that cross
4104 the word boundary in the INTEGER_CST. We can
4105 only select bits from the LOW or HIGH part
4107 if (shift
< HOST_BITS_PER_WIDE_INT
4108 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4109 this_time
= (HOST_BITS_PER_WIDE_INT
- shift
);
4111 /* Now get the bits from the appropriate constant word. */
4112 if (shift
< HOST_BITS_PER_WIDE_INT
)
4113 value
= TREE_INT_CST_LOW (val
);
4114 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4116 value
= TREE_INT_CST_HIGH (val
);
4117 shift
-= HOST_BITS_PER_WIDE_INT
;
4122 /* Get the result. This works only when:
4123 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4124 byte
|= (((value
>> shift
)
4125 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4129 next_offset
+= this_time
;
4130 byte_buffer_in_use
= 1;
4135 if (byte_buffer_in_use
)
4137 assemble_integer (GEN_INT (byte
), 1, BITS_PER_UNIT
, 1);
4141 if ((unsigned HOST_WIDE_INT
)total_bytes
< size
)
4142 assemble_zeros (size
- total_bytes
);
4145 /* This TREE_LIST contains any weak symbol declarations waiting
4147 static GTY(()) tree weak_decls
;
4149 /* Mark DECL as weak. */
4152 mark_weak (tree decl
)
4154 DECL_WEAK (decl
) = 1;
4156 if (DECL_RTL_SET_P (decl
)
4157 && MEM_P (DECL_RTL (decl
))
4158 && XEXP (DECL_RTL (decl
), 0)
4159 && GET_CODE (XEXP (DECL_RTL (decl
), 0)) == SYMBOL_REF
)
4160 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl
), 0)) = 1;
4163 /* Merge weak status between NEWDECL and OLDDECL. */
4166 merge_weak (tree newdecl
, tree olddecl
)
4168 if (DECL_WEAK (newdecl
) == DECL_WEAK (olddecl
))
4171 if (DECL_WEAK (newdecl
))
4175 /* NEWDECL is weak, but OLDDECL is not. */
4177 /* If we already output the OLDDECL, we're in trouble; we can't
4178 go back and make it weak. This error cannot caught in
4179 declare_weak because the NEWDECL and OLDDECL was not yet
4180 been merged; therefore, TREE_ASM_WRITTEN was not set. */
4181 if (TREE_ASM_WRITTEN (olddecl
))
4182 error ("%Jweak declaration of '%D' must precede definition",
4185 /* If we've already generated rtl referencing OLDDECL, we may
4186 have done so in a way that will not function properly with
4188 else if (TREE_USED (olddecl
)
4189 && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (olddecl
)))
4190 warning ("%Jweak declaration of '%D' after first use results "
4191 "in unspecified behavior", newdecl
, newdecl
);
4195 /* We put the NEWDECL on the weak_decls list at some point.
4196 Replace it with the OLDDECL. */
4197 for (wd
= weak_decls
; wd
; wd
= TREE_CHAIN (wd
))
4198 if (TREE_VALUE (wd
) == newdecl
)
4200 TREE_VALUE (wd
) = olddecl
;
4203 /* We may not find the entry on the list. If NEWDECL is a
4204 weak alias, then we will have already called
4205 globalize_decl to remove the entry; in that case, we do
4206 not need to do anything. */
4209 /* Make the OLDDECL weak; it's OLDDECL that we'll be keeping. */
4210 mark_weak (olddecl
);
4213 /* OLDDECL was weak, but NEWDECL was not explicitly marked as
4214 weak. Just update NEWDECL to indicate that it's weak too. */
4215 mark_weak (newdecl
);
4218 /* Declare DECL to be a weak symbol. */
4221 declare_weak (tree decl
)
4223 if (! TREE_PUBLIC (decl
))
4224 error ("%Jweak declaration of '%D' must be public", decl
, decl
);
4225 else if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
4226 error ("%Jweak declaration of '%D' must precede definition", decl
, decl
);
4227 else if (SUPPORTS_WEAK
)
4229 if (! DECL_WEAK (decl
))
4230 weak_decls
= tree_cons (NULL
, decl
, weak_decls
);
4233 warning ("%Jweak declaration of '%D' not supported", decl
, decl
);
4238 /* Emit any pending weak declarations. */
4245 for (t
= weak_decls
; t
; t
= TREE_CHAIN (t
))
4247 tree decl
= TREE_VALUE (t
);
4248 #if defined (ASM_WEAKEN_DECL) || defined (ASM_WEAKEN_LABEL)
4249 const char *const name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4252 if (! TREE_USED (decl
))
4255 #ifdef ASM_WEAKEN_DECL
4256 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, NULL
);
4258 #ifdef ASM_WEAKEN_LABEL
4259 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4261 #ifdef ASM_OUTPUT_WEAK_ALIAS
4262 warning ("only weak aliases are supported in this configuration");
4270 /* Emit the assembly bits to indicate that DECL is globally visible. */
4273 globalize_decl (tree decl
)
4275 const char *name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
4277 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
4278 if (DECL_WEAK (decl
))
4282 #ifdef ASM_WEAKEN_DECL
4283 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, 0);
4285 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4288 /* Remove this function from the pending weak list so that
4289 we do not emit multiple .weak directives for it. */
4290 for (p
= &weak_decls
; (t
= *p
) ; )
4292 if (DECL_ASSEMBLER_NAME (decl
) == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
4293 *p
= TREE_CHAIN (t
);
4295 p
= &TREE_CHAIN (t
);
4299 #elif defined(ASM_MAKE_LABEL_LINKONCE)
4300 if (DECL_ONE_ONLY (decl
))
4301 ASM_MAKE_LABEL_LINKONCE (asm_out_file
, name
);
4304 targetm
.asm_out
.globalize_label (asm_out_file
, name
);
4307 /* Emit an assembler directive to make the symbol for DECL an alias to
4308 the symbol for TARGET. */
4311 assemble_alias (tree decl
, tree target ATTRIBUTE_UNUSED
)
4315 /* We must force creation of DECL_RTL for debug info generation, even though
4316 we don't use it here. */
4317 make_decl_rtl (decl
);
4319 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4321 #ifdef ASM_OUTPUT_DEF
4322 /* Make name accessible from other files, if appropriate. */
4324 if (TREE_PUBLIC (decl
))
4326 globalize_decl (decl
);
4327 maybe_assemble_visibility (decl
);
4330 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4331 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
4333 ASM_OUTPUT_DEF (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4335 #else /* !ASM_OUTPUT_DEF */
4336 #if defined (ASM_OUTPUT_WEAK_ALIAS) || defined (ASM_WEAKEN_DECL)
4337 if (DECL_WEAK (decl
))
4340 #ifdef ASM_WEAKEN_DECL
4341 ASM_WEAKEN_DECL (asm_out_file
, decl
, name
, IDENTIFIER_POINTER (target
));
4343 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4345 /* Remove this function from the pending weak list so that
4346 we do not emit multiple .weak directives for it. */
4347 for (p
= &weak_decls
; (t
= *p
) ; )
4348 if (DECL_ASSEMBLER_NAME (decl
)
4349 == DECL_ASSEMBLER_NAME (TREE_VALUE (t
)))
4350 *p
= TREE_CHAIN (t
);
4352 p
= &TREE_CHAIN (t
);
4355 warning ("only weak aliases are supported in this configuration");
4358 warning ("alias definitions not supported in this configuration; ignored");
4362 TREE_USED (decl
) = 1;
4363 TREE_ASM_WRITTEN (decl
) = 1;
4364 TREE_ASM_WRITTEN (DECL_ASSEMBLER_NAME (decl
)) = 1;
4367 /* Emit an assembler directive to set symbol for DECL visibility to
4368 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
4371 default_assemble_visibility (tree decl
, int vis
)
4373 static const char * const visibility_types
[] = {
4374 NULL
, "internal", "hidden", "protected"
4377 const char *name
, *type
;
4379 name
= (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
4380 type
= visibility_types
[vis
];
4382 #ifdef HAVE_GAS_HIDDEN
4383 fprintf (asm_out_file
, "\t.%s\t", type
);
4384 assemble_name (asm_out_file
, name
);
4385 fprintf (asm_out_file
, "\n");
4387 warning ("visibility attribute not supported in this configuration; ignored");
4391 /* A helper function to call assemble_visibility when needed for a decl. */
4394 maybe_assemble_visibility (tree decl
)
4396 enum symbol_visibility vis
= DECL_VISIBILITY (decl
);
4398 if (vis
!= VISIBILITY_DEFAULT
)
4399 targetm
.asm_out
.visibility (decl
, vis
);
4402 /* Returns 1 if the target configuration supports defining public symbols
4403 so that one of them will be chosen at link time instead of generating a
4404 multiply-defined symbol error, whether through the use of weak symbols or
4405 a target-specific mechanism for having duplicates discarded. */
4408 supports_one_only (void)
4410 if (SUPPORTS_ONE_ONLY
)
4412 return SUPPORTS_WEAK
;
4415 /* Set up DECL as a public symbol that can be defined in multiple
4416 translation units without generating a linker error. */
4419 make_decl_one_only (tree decl
)
4421 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != FUNCTION_DECL
)
4424 TREE_PUBLIC (decl
) = 1;
4426 if (SUPPORTS_ONE_ONLY
)
4428 #ifdef MAKE_DECL_ONE_ONLY
4429 MAKE_DECL_ONE_ONLY (decl
);
4431 DECL_ONE_ONLY (decl
) = 1;
4433 else if (TREE_CODE (decl
) == VAR_DECL
4434 && (DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
))
4435 DECL_COMMON (decl
) = 1;
4436 else if (SUPPORTS_WEAK
)
4437 DECL_WEAK (decl
) = 1;
4443 init_varasm_once (void)
4445 in_named_htab
= htab_create_ggc (31, in_named_entry_hash
,
4446 in_named_entry_eq
, NULL
);
4447 const_desc_htab
= htab_create_ggc (1009, const_desc_hash
,
4448 const_desc_eq
, NULL
);
4450 const_alias_set
= new_alias_set ();
4454 decl_tls_model (tree decl
)
4456 enum tls_model kind
;
4457 tree attr
= lookup_attribute ("tls_model", DECL_ATTRIBUTES (decl
));
4462 attr
= TREE_VALUE (TREE_VALUE (attr
));
4463 if (TREE_CODE (attr
) != STRING_CST
)
4465 if (!strcmp (TREE_STRING_POINTER (attr
), "local-exec"))
4466 kind
= TLS_MODEL_LOCAL_EXEC
;
4467 else if (!strcmp (TREE_STRING_POINTER (attr
), "initial-exec"))
4468 kind
= TLS_MODEL_INITIAL_EXEC
;
4469 else if (!strcmp (TREE_STRING_POINTER (attr
), "local-dynamic"))
4470 kind
= optimize
? TLS_MODEL_LOCAL_DYNAMIC
: TLS_MODEL_GLOBAL_DYNAMIC
;
4471 else if (!strcmp (TREE_STRING_POINTER (attr
), "global-dynamic"))
4472 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
4478 is_local
= targetm
.binds_local_p (decl
);
4482 kind
= TLS_MODEL_LOCAL_EXEC
;
4484 kind
= TLS_MODEL_INITIAL_EXEC
;
4486 /* Local dynamic is inefficient when we're not combining the
4487 parts of the address. */
4488 else if (optimize
&& is_local
)
4489 kind
= TLS_MODEL_LOCAL_DYNAMIC
;
4491 kind
= TLS_MODEL_GLOBAL_DYNAMIC
;
4492 if (kind
< flag_tls_default
)
4493 kind
= flag_tls_default
;
4498 /* Select a set of attributes for section NAME based on the properties
4499 of DECL and whether or not RELOC indicates that DECL's initializer
4500 might contain runtime relocations.
4502 We make the section read-only and executable for a function decl,
4503 read-only for a const data decl, and writable for a non-const data decl. */
4506 default_section_type_flags (tree decl
, const char *name
, int reloc
)
4508 return default_section_type_flags_1 (decl
, name
, reloc
, flag_pic
);
4512 default_section_type_flags_1 (tree decl
, const char *name
, int reloc
,
4517 if (decl
&& TREE_CODE (decl
) == FUNCTION_DECL
)
4518 flags
= SECTION_CODE
;
4519 else if (decl
&& decl_readonly_section_1 (decl
, reloc
, shlib
))
4521 else if (unlikely_text_section_name
4522 && strcmp (name
, unlikely_text_section_name
) == 0)
4523 flags
= SECTION_CODE
;
4525 flags
= SECTION_WRITE
;
4527 if (decl
&& DECL_ONE_ONLY (decl
))
4528 flags
|= SECTION_LINKONCE
;
4530 if (decl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
4531 flags
|= SECTION_TLS
| SECTION_WRITE
;
4533 if (strcmp (name
, ".bss") == 0
4534 || strncmp (name
, ".bss.", 5) == 0
4535 || strncmp (name
, ".gnu.linkonce.b.", 16) == 0
4536 || strcmp (name
, ".sbss") == 0
4537 || strncmp (name
, ".sbss.", 6) == 0
4538 || strncmp (name
, ".gnu.linkonce.sb.", 17) == 0
4539 || strcmp (name
, ".tbss") == 0
4540 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
4541 flags
|= SECTION_BSS
;
4543 if (strcmp (name
, ".tdata") == 0
4544 || strcmp (name
, ".tbss") == 0
4545 || strncmp (name
, ".gnu.linkonce.td.", 17) == 0
4546 || strncmp (name
, ".gnu.linkonce.tb.", 17) == 0)
4547 flags
|= SECTION_TLS
;
4549 /* These three sections have special ELF types. They are neither
4550 SHT_PROGBITS nor SHT_NOBITS, so when changing sections we don't
4551 want to print a section type (@progbits or @nobits). If someone
4552 is silly enough to emit code or TLS variables to one of these
4553 sections, then don't handle them specially. */
4554 if (!(flags
& (SECTION_CODE
| SECTION_BSS
| SECTION_TLS
))
4555 && (strcmp (name
, ".init_array") == 0
4556 || strcmp (name
, ".fini_array") == 0
4557 || strcmp (name
, ".preinit_array") == 0))
4558 flags
|= SECTION_NOTYPE
;
4563 /* Output assembly to switch to section NAME with attribute FLAGS.
4564 Four variants for common object file formats. */
4567 default_no_named_section (const char *name ATTRIBUTE_UNUSED
,
4568 unsigned int flags ATTRIBUTE_UNUSED
)
4570 /* Some object formats don't support named sections at all. The
4571 front-end should already have flagged this as an error. */
4576 default_elf_asm_named_section (const char *name
, unsigned int flags
)
4578 char flagchars
[10], *f
= flagchars
;
4580 if (! named_section_first_declaration (name
))
4582 fprintf (asm_out_file
, "\t.section\t%s\n", name
);
4586 if (!(flags
& SECTION_DEBUG
))
4588 if (flags
& SECTION_WRITE
)
4590 if (flags
& SECTION_CODE
)
4592 if (flags
& SECTION_SMALL
)
4594 if (flags
& SECTION_MERGE
)
4596 if (flags
& SECTION_STRINGS
)
4598 if (flags
& SECTION_TLS
)
4602 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"", name
, flagchars
);
4604 if (!(flags
& SECTION_NOTYPE
))
4608 if (flags
& SECTION_BSS
)
4613 fprintf (asm_out_file
, ",@%s", type
);
4615 if (flags
& SECTION_ENTSIZE
)
4616 fprintf (asm_out_file
, ",%d", flags
& SECTION_ENTSIZE
);
4619 putc ('\n', asm_out_file
);
4623 default_coff_asm_named_section (const char *name
, unsigned int flags
)
4625 char flagchars
[8], *f
= flagchars
;
4627 if (flags
& SECTION_WRITE
)
4629 if (flags
& SECTION_CODE
)
4633 fprintf (asm_out_file
, "\t.section\t%s,\"%s\"\n", name
, flagchars
);
4637 default_pe_asm_named_section (const char *name
, unsigned int flags
)
4639 default_coff_asm_named_section (name
, flags
);
4641 if (flags
& SECTION_LINKONCE
)
4643 /* Functions may have been compiled at various levels of
4644 optimization so we can't use `same_size' here.
4645 Instead, have the linker pick one. */
4646 fprintf (asm_out_file
, "\t.linkonce %s\n",
4647 (flags
& SECTION_CODE
? "discard" : "same_size"));
4651 /* The lame default section selector. */
4654 default_select_section (tree decl
, int reloc
,
4655 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
4657 bool readonly
= false;
4661 if (decl_readonly_section (decl
, reloc
))
4664 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
4666 if (! ((flag_pic
&& reloc
)
4667 || !TREE_READONLY (decl
)
4668 || TREE_SIDE_EFFECTS (decl
)
4669 || !TREE_CONSTANT (decl
)))
4672 else if (TREE_CODE (decl
) == STRING_CST
)
4674 else if (! (flag_pic
&& reloc
))
4678 readonly_data_section ();
4683 /* A helper function for default_elf_select_section and
4684 default_elf_unique_section. Categorizes the DECL. */
4686 enum section_category
4691 SECCAT_RODATA_MERGE_STR
,
4692 SECCAT_RODATA_MERGE_STR_INIT
,
4693 SECCAT_RODATA_MERGE_CONST
,
4698 /* To optimize loading of shared programs, define following subsections
4700 _REL Contains data that has relocations, so they get grouped
4701 together and dynamic linker will visit fewer pages in memory.
4702 _RO Contains data that is otherwise read-only. This is useful
4703 with prelinking as most relocations won't be dynamically
4704 linked and thus stay read only.
4705 _LOCAL Marks data containing relocations only to local objects.
4706 These relocations will get fully resolved by prelinking. */
4708 SECCAT_DATA_REL_LOCAL
,
4710 SECCAT_DATA_REL_RO_LOCAL
,
4720 static enum section_category
4721 categorize_decl_for_section (tree
, int, int);
4723 static enum section_category
4724 categorize_decl_for_section (tree decl
, int reloc
, int shlib
)
4726 enum section_category ret
;
4728 if (TREE_CODE (decl
) == FUNCTION_DECL
)
4730 else if (TREE_CODE (decl
) == STRING_CST
)
4732 if (flag_mudflap
) /* or !flag_merge_constants */
4733 return SECCAT_RODATA
;
4735 return SECCAT_RODATA_MERGE_STR
;
4737 else if (TREE_CODE (decl
) == VAR_DECL
)
4739 if (DECL_INITIAL (decl
) == NULL
4740 || DECL_INITIAL (decl
) == error_mark_node
4741 || (flag_zero_initialized_in_bss
4742 /* Leave constant zeroes in .rodata so they can be shared. */
4743 && !TREE_READONLY (decl
)
4744 && initializer_zerop (DECL_INITIAL (decl
))))
4746 else if (! TREE_READONLY (decl
)
4747 || TREE_SIDE_EFFECTS (decl
)
4748 || ! TREE_CONSTANT (DECL_INITIAL (decl
)))
4750 if (shlib
&& (reloc
& 2))
4751 ret
= SECCAT_DATA_REL
;
4752 else if (shlib
&& reloc
)
4753 ret
= SECCAT_DATA_REL_LOCAL
;
4757 else if (shlib
&& (reloc
& 2))
4758 ret
= SECCAT_DATA_REL_RO
;
4759 else if (shlib
&& reloc
)
4760 ret
= SECCAT_DATA_REL_RO_LOCAL
;
4761 else if (reloc
|| flag_merge_constants
< 2)
4762 /* C and C++ don't allow different variables to share the same
4763 location. -fmerge-all-constants allows even that (at the
4764 expense of not conforming). */
4765 ret
= SECCAT_RODATA
;
4766 else if (TREE_CODE (DECL_INITIAL (decl
)) == STRING_CST
)
4767 ret
= SECCAT_RODATA_MERGE_STR_INIT
;
4769 ret
= SECCAT_RODATA_MERGE_CONST
;
4771 else if (TREE_CODE (decl
) == CONSTRUCTOR
)
4773 if ((shlib
&& reloc
)
4774 || TREE_SIDE_EFFECTS (decl
)
4775 || ! TREE_CONSTANT (decl
))
4778 ret
= SECCAT_RODATA
;
4781 ret
= SECCAT_RODATA
;
4783 /* There are no read-only thread-local sections. */
4784 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
4786 /* Note that this would be *just* SECCAT_BSS, except that there's
4787 no concept of a read-only thread-local-data section. */
4788 if (ret
== SECCAT_BSS
4789 || (flag_zero_initialized_in_bss
4790 && initializer_zerop (DECL_INITIAL (decl
))))
4796 /* If the target uses small data sections, select it. */
4797 else if (targetm
.in_small_data_p (decl
))
4799 if (ret
== SECCAT_BSS
)
4801 else if (targetm
.have_srodata_section
&& ret
== SECCAT_RODATA
)
4802 ret
= SECCAT_SRODATA
;
4811 decl_readonly_section (tree decl
, int reloc
)
4813 return decl_readonly_section_1 (decl
, reloc
, flag_pic
);
4817 decl_readonly_section_1 (tree decl
, int reloc
, int shlib
)
4819 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
4822 case SECCAT_RODATA_MERGE_STR
:
4823 case SECCAT_RODATA_MERGE_STR_INIT
:
4824 case SECCAT_RODATA_MERGE_CONST
:
4825 case SECCAT_SRODATA
:
4834 /* Select a section based on the above categorization. */
4837 default_elf_select_section (tree decl
, int reloc
,
4838 unsigned HOST_WIDE_INT align
)
4840 default_elf_select_section_1 (decl
, reloc
, align
, flag_pic
);
4844 default_elf_select_section_1 (tree decl
, int reloc
,
4845 unsigned HOST_WIDE_INT align
, int shlib
)
4847 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
4850 /* We're not supposed to be called on FUNCTION_DECLs. */
4853 readonly_data_section ();
4855 case SECCAT_RODATA_MERGE_STR
:
4856 mergeable_string_section (decl
, align
, 0);
4858 case SECCAT_RODATA_MERGE_STR_INIT
:
4859 mergeable_string_section (DECL_INITIAL (decl
), align
, 0);
4861 case SECCAT_RODATA_MERGE_CONST
:
4862 mergeable_constant_section (DECL_MODE (decl
), align
, 0);
4864 case SECCAT_SRODATA
:
4865 named_section (NULL_TREE
, ".sdata2", reloc
);
4870 case SECCAT_DATA_REL
:
4871 named_section (NULL_TREE
, ".data.rel", reloc
);
4873 case SECCAT_DATA_REL_LOCAL
:
4874 named_section (NULL_TREE
, ".data.rel.local", reloc
);
4876 case SECCAT_DATA_REL_RO
:
4877 named_section (NULL_TREE
, ".data.rel.ro", reloc
);
4879 case SECCAT_DATA_REL_RO_LOCAL
:
4880 named_section (NULL_TREE
, ".data.rel.ro.local", reloc
);
4883 named_section (NULL_TREE
, ".sdata", reloc
);
4886 named_section (NULL_TREE
, ".tdata", reloc
);
4889 #ifdef BSS_SECTION_ASM_OP
4892 named_section (NULL_TREE
, ".bss", reloc
);
4896 named_section (NULL_TREE
, ".sbss", reloc
);
4899 named_section (NULL_TREE
, ".tbss", reloc
);
4906 /* Construct a unique section name based on the decl name and the
4907 categorization performed above. */
4910 default_unique_section (tree decl
, int reloc
)
4912 default_unique_section_1 (decl
, reloc
, flag_pic
);
4916 default_unique_section_1 (tree decl
, int reloc
, int shlib
)
4918 bool one_only
= DECL_ONE_ONLY (decl
);
4919 const char *prefix
, *name
;
4923 switch (categorize_decl_for_section (decl
, reloc
, shlib
))
4926 prefix
= one_only
? ".gnu.linkonce.t." : ".text.";
4929 case SECCAT_RODATA_MERGE_STR
:
4930 case SECCAT_RODATA_MERGE_STR_INIT
:
4931 case SECCAT_RODATA_MERGE_CONST
:
4932 prefix
= one_only
? ".gnu.linkonce.r." : ".rodata.";
4934 case SECCAT_SRODATA
:
4935 prefix
= one_only
? ".gnu.linkonce.s2." : ".sdata2.";
4938 case SECCAT_DATA_REL
:
4939 case SECCAT_DATA_REL_LOCAL
:
4940 case SECCAT_DATA_REL_RO
:
4941 case SECCAT_DATA_REL_RO_LOCAL
:
4942 prefix
= one_only
? ".gnu.linkonce.d." : ".data.";
4945 prefix
= one_only
? ".gnu.linkonce.s." : ".sdata.";
4948 prefix
= one_only
? ".gnu.linkonce.b." : ".bss.";
4951 prefix
= one_only
? ".gnu.linkonce.sb." : ".sbss.";
4954 prefix
= one_only
? ".gnu.linkonce.td." : ".tdata.";
4957 prefix
= one_only
? ".gnu.linkonce.tb." : ".tbss.";
4962 plen
= strlen (prefix
);
4964 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
4965 name
= targetm
.strip_name_encoding (name
);
4966 nlen
= strlen (name
);
4968 string
= alloca (nlen
+ plen
+ 1);
4969 memcpy (string
, prefix
, plen
);
4970 memcpy (string
+ plen
, name
, nlen
+ 1);
4972 DECL_SECTION_NAME (decl
) = build_string (nlen
+ plen
, string
);
4976 default_select_rtx_section (enum machine_mode mode ATTRIBUTE_UNUSED
,
4978 unsigned HOST_WIDE_INT align ATTRIBUTE_UNUSED
)
4981 switch (GET_CODE (x
))
4993 readonly_data_section ();
4997 default_elf_select_rtx_section (enum machine_mode mode
, rtx x
,
4998 unsigned HOST_WIDE_INT align
)
5000 /* ??? Handle small data here somehow. */
5003 switch (GET_CODE (x
))
5007 named_section (NULL_TREE
, ".data.rel.ro", 3);
5011 named_section (NULL_TREE
, ".data.rel.ro.local", 1);
5018 mergeable_constant_section (mode
, align
, 0);
5021 /* Set the generally applicable flags on the SYMBOL_REF for EXP. */
5024 default_encode_section_info (tree decl
, rtx rtl
, int first ATTRIBUTE_UNUSED
)
5029 /* Careful not to prod global register variables. */
5032 symbol
= XEXP (rtl
, 0);
5033 if (GET_CODE (symbol
) != SYMBOL_REF
)
5037 if (TREE_CODE (decl
) == FUNCTION_DECL
)
5038 flags
|= SYMBOL_FLAG_FUNCTION
;
5039 if (targetm
.binds_local_p (decl
))
5040 flags
|= SYMBOL_FLAG_LOCAL
;
5041 if (targetm
.in_small_data_p (decl
))
5042 flags
|= SYMBOL_FLAG_SMALL
;
5043 if (TREE_CODE (decl
) == VAR_DECL
&& DECL_THREAD_LOCAL (decl
))
5044 flags
|= decl_tls_model (decl
) << SYMBOL_FLAG_TLS_SHIFT
;
5045 /* ??? Why is DECL_EXTERNAL ever set for non-PUBLIC names? Without
5046 being PUBLIC, the thing *must* be defined in this translation unit.
5047 Prevent this buglet from being propagated into rtl code as well. */
5048 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
5049 flags
|= SYMBOL_FLAG_EXTERNAL
;
5051 SYMBOL_REF_FLAGS (symbol
) = flags
;
5054 /* By default, we do nothing for encode_section_info, so we need not
5055 do anything but discard the '*' marker. */
5058 default_strip_name_encoding (const char *str
)
5060 return str
+ (*str
== '*');
5063 /* Assume ELF-ish defaults, since that's pretty much the most liberal
5064 wrt cross-module name binding. */
5067 default_binds_local_p (tree exp
)
5069 return default_binds_local_p_1 (exp
, flag_shlib
);
5073 default_binds_local_p_1 (tree exp
, int shlib
)
5077 /* A non-decl is an entry in the constant pool. */
5080 /* Static variables are always local. */
5081 else if (! TREE_PUBLIC (exp
))
5083 /* A variable is local if the user explicitly tells us so. */
5084 else if (DECL_VISIBILITY_SPECIFIED (exp
) && DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
5086 /* Otherwise, variables defined outside this object may not be local. */
5087 else if (DECL_EXTERNAL (exp
))
5089 /* Linkonce and weak data are never local. */
5090 else if (DECL_ONE_ONLY (exp
) || DECL_WEAK (exp
))
5092 /* If none of the above and visibility is not default, make local. */
5093 else if (DECL_VISIBILITY (exp
) != VISIBILITY_DEFAULT
)
5095 /* If PIC, then assume that any global name can be overridden by
5096 symbols resolved from other modules. */
5099 /* Uninitialized COMMON variable may be unified with symbols
5100 resolved from other modules. */
5101 else if (DECL_COMMON (exp
)
5102 && (DECL_INITIAL (exp
) == NULL
5103 || DECL_INITIAL (exp
) == error_mark_node
))
5105 /* Otherwise we're left with initialized (or non-common) global data
5106 which is of necessity defined locally. */
5113 /* Determine whether or not a pointer mode is valid. Assume defaults
5114 of ptr_mode or Pmode - can be overridden. */
5116 default_valid_pointer_mode (enum machine_mode mode
)
5118 return (mode
== ptr_mode
|| mode
== Pmode
);
5121 /* Default function to output code that will globalize a label. A
5122 target must define GLOBAL_ASM_OP or provide it's own function to
5123 globalize a label. */
5124 #ifdef GLOBAL_ASM_OP
5126 default_globalize_label (FILE * stream
, const char *name
)
5128 fputs (GLOBAL_ASM_OP
, stream
);
5129 assemble_name (stream
, name
);
5130 putc ('\n', stream
);
5132 #endif /* GLOBAL_ASM_OP */
5134 /* Default function to output a label for unwind information. The
5135 default is to do nothing. A target that needs nonlocal labels for
5136 unwind information must provide its own function to do this. */
5138 default_emit_unwind_label (FILE * stream ATTRIBUTE_UNUSED
,
5139 tree decl ATTRIBUTE_UNUSED
,
5140 int for_eh ATTRIBUTE_UNUSED
,
5141 int empty ATTRIBUTE_UNUSED
)
5145 /* This is how to output an internal numbered label where PREFIX is
5146 the class of label and LABELNO is the number within the class. */
5149 default_internal_label (FILE *stream
, const char *prefix
,
5150 unsigned long labelno
)
5152 char *const buf
= alloca (40 + strlen (prefix
));
5153 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, labelno
);
5154 ASM_OUTPUT_LABEL (stream
, buf
);
5157 /* This is the default behavior at the beginning of a file. It's
5158 controlled by two other target-hook toggles. */
5160 default_file_start (void)
5162 if (targetm
.file_start_app_off
&& !flag_verbose_asm
)
5163 fputs (ASM_APP_OFF
, asm_out_file
);
5165 if (targetm
.file_start_file_directive
)
5166 output_file_directive (asm_out_file
, main_input_filename
);
5169 /* This is a generic routine suitable for use as TARGET_ASM_FILE_END
5170 which emits a special section directive used to indicate whether or
5171 not this object file needs an executable stack. This is primarily
5172 a GNU extension to ELF but could be used on other targets. */
5174 int trampolines_created
;
5177 file_end_indicate_exec_stack (void)
5179 unsigned int flags
= SECTION_DEBUG
;
5180 if (trampolines_created
)
5181 flags
|= SECTION_CODE
;
5183 named_section_flags (".note.GNU-stack", flags
);
5186 #include "gt-varasm.h"