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 Free Software Foundation, Inc.
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
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. */
38 #include "hard-reg-set.h"
52 #ifdef XCOFF_DEBUGGING_INFO
56 #ifndef TRAMPOLINE_ALIGNMENT
57 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
61 #define ASM_STABS_OP "\t.stabs\t"
64 /* Define the prefix to use when check_memory_usage_flag is enable. */
65 #ifdef NO_DOLLAR_IN_LABEL
66 #ifdef NO_DOT_IN_LABEL
67 #define CHKR_PREFIX "chkr_prefix_"
68 #else /* !NO_DOT_IN_LABEL */
69 #define CHKR_PREFIX "chkr."
71 #else /* !NO_DOLLAR_IN_LABEL */
72 #define CHKR_PREFIX "chkr$"
74 #define CHKR_PREFIX_SIZE (sizeof (CHKR_PREFIX) - 1)
76 /* File in which assembler code is being written. */
78 extern FILE *asm_out_file
;
80 /* The (assembler) name of the first globally-visible object output. */
81 const char *first_global_object_name
;
82 const char *weak_global_object_name
;
84 extern struct obstack permanent_obstack
;
85 #define obstack_chunk_alloc xmalloc
88 struct constant_descriptor
;
92 #define MAX_RTX_HASH_TABLE 61
96 /* Hash facility for making memory-constants
97 from constant rtl-expressions. It is used on RISC machines
98 where immediate integer arguments and constant addresses are restricted
99 so that such constants must be stored in memory.
101 This pool of constants is reinitialized for each function
102 so each function gets its own constants-pool that comes right before
104 struct constant_descriptor
**x_const_rtx_hash_table
;
105 struct pool_constant
**x_const_rtx_sym_hash_table
;
107 /* Pointers to first and last constant in pool. */
108 struct pool_constant
*x_first_pool
, *x_last_pool
;
110 /* Current offset in constant pool (does not include any machine-specific
114 /* Chain of all CONST_DOUBLE rtx's constructed for the current function.
115 They are chained through the CONST_DOUBLE_CHAIN.
116 A CONST_DOUBLE rtx has CONST_DOUBLE_MEM != cc0_rtx iff it is on this chain.
117 In that case, CONST_DOUBLE_MEM is either a MEM,
118 or const0_rtx if no MEM has been made for this CONST_DOUBLE yet. */
119 rtx x_const_double_chain
;
122 #define const_rtx_hash_table (cfun->varasm->x_const_rtx_hash_table)
123 #define const_rtx_sym_hash_table (cfun->varasm->x_const_rtx_sym_hash_table)
124 #define first_pool (cfun->varasm->x_first_pool)
125 #define last_pool (cfun->varasm->x_last_pool)
126 #define pool_offset (cfun->varasm->x_pool_offset)
127 #define const_double_chain (cfun->varasm->x_const_double_chain)
129 /* Number for making the label on the next
130 constant that is stored in memory. */
134 /* Number for making the label on the next
135 static variable internal to a function. */
139 /* Carry information from ASM_DECLARE_OBJECT_NAME
140 to ASM_FINISH_DECLARE_OBJECT. */
142 int size_directive_output
;
144 /* The last decl for which assemble_variable was called,
145 if it did ASM_DECLARE_OBJECT_NAME.
146 If the last call to assemble_variable didn't do that,
149 tree last_assemble_variable_decl
;
151 static const char *strip_reg_name
PARAMS ((const char *));
152 static int contains_pointers_p
PARAMS ((tree
));
153 static void decode_addr_const
PARAMS ((tree
, struct addr_const
*));
154 static int const_hash
PARAMS ((tree
));
155 static int compare_constant
PARAMS ((tree
,
156 struct constant_descriptor
*));
157 static const unsigned char *compare_constant_1
PARAMS ((tree
, const unsigned char *));
158 static struct constant_descriptor
*record_constant
PARAMS ((tree
));
159 static void record_constant_1
PARAMS ((tree
));
160 static tree copy_constant
PARAMS ((tree
));
161 static void output_constant_def_contents
PARAMS ((tree
, int, int));
162 static void decode_rtx_const
PARAMS ((enum machine_mode
, rtx
,
163 struct rtx_const
*));
164 static int const_hash_rtx
PARAMS ((enum machine_mode
, rtx
));
165 static int compare_constant_rtx
PARAMS ((enum machine_mode
, rtx
,
166 struct constant_descriptor
*));
167 static struct constant_descriptor
*record_constant_rtx
PARAMS ((enum machine_mode
,
169 static struct pool_constant
*find_pool_constant
PARAMS ((struct function
*, rtx
));
170 static void mark_constant_pool
PARAMS ((void));
171 static void mark_constants
PARAMS ((rtx
));
172 static int mark_constant
PARAMS ((rtx
*current_rtx
, void *data
));
173 static int output_addressed_constants
PARAMS ((tree
));
174 static void output_after_function_constants
PARAMS ((void));
175 static unsigned HOST_WIDE_INT array_size_for_constructor
PARAMS ((tree
));
176 static void output_constructor
PARAMS ((tree
, int));
177 #ifdef ASM_WEAKEN_LABEL
178 static void remove_from_pending_weak_list
PARAMS ((const char *));
180 #ifdef ASM_OUTPUT_BSS
181 static void asm_output_bss
PARAMS ((FILE *, tree
, const char *, int, int));
183 #ifdef BSS_SECTION_ASM_OP
184 #ifdef ASM_OUTPUT_ALIGNED_BSS
185 static void asm_output_aligned_bss
PARAMS ((FILE *, tree
, const char *,
188 #endif /* BSS_SECTION_ASM_OP */
189 static void mark_pool_constant
PARAMS ((struct pool_constant
*));
190 static void mark_const_hash_entry
PARAMS ((void *));
191 static int mark_const_str_htab_1
PARAMS ((void **, void *));
192 static void mark_const_str_htab
PARAMS ((void *));
193 static hashval_t const_str_htab_hash
PARAMS ((const void *x
));
194 static int const_str_htab_eq
PARAMS ((const void *x
, const void *y
));
195 static void const_str_htab_del
PARAMS ((void *));
196 static void asm_emit_uninitialised
PARAMS ((tree
, const char*, int, int));
198 static enum in_section
{ no_section
, in_text
, in_data
, in_named
199 #ifdef BSS_SECTION_ASM_OP
202 #ifdef EH_FRAME_SECTION_ASM_OP
205 #ifdef EXTRA_SECTIONS
208 } in_section
= no_section
;
210 /* Return a non-zero value if DECL has a section attribute. */
211 #ifndef IN_NAMED_SECTION
212 #define IN_NAMED_SECTION(DECL) \
213 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
214 && DECL_SECTION_NAME (DECL) != NULL_TREE)
217 /* Text of section name when in_section == in_named. */
218 static const char *in_named_name
;
220 /* Define functions like text_section for any extra sections. */
221 #ifdef EXTRA_SECTION_FUNCTIONS
222 EXTRA_SECTION_FUNCTIONS
225 /* Tell assembler to switch to text section. */
230 if (in_section
!= in_text
)
232 fprintf (asm_out_file
, "%s\n", TEXT_SECTION_ASM_OP
);
233 in_section
= in_text
;
237 /* Tell assembler to switch to data section. */
242 if (in_section
!= in_data
)
244 if (flag_shared_data
)
246 #ifdef SHARED_SECTION_ASM_OP
247 fprintf (asm_out_file
, "%s\n", SHARED_SECTION_ASM_OP
);
249 fprintf (asm_out_file
, "%s\n", DATA_SECTION_ASM_OP
);
253 fprintf (asm_out_file
, "%s\n", DATA_SECTION_ASM_OP
);
255 in_section
= in_data
;
258 /* Tell assembler to ALWAYS switch to data section, in case
259 it's not sure where it it. */
262 force_data_section ()
264 in_section
= no_section
;
268 /* Tell assembler to switch to read-only data section. This is normally
272 readonly_data_section ()
274 #ifdef READONLY_DATA_SECTION
275 READONLY_DATA_SECTION (); /* Note this can call data_section. */
281 /* Determine if we're in the text section. */
286 return in_section
== in_text
;
289 /* Determine if we're in the data section. */
294 return in_section
== in_data
;
297 /* Tell assembler to change to section NAME for DECL.
298 If DECL is NULL, just switch to section NAME.
299 If NAME is NULL, get the name from DECL.
300 If RELOC is 1, the initializer for DECL contains relocs. */
303 named_section (decl
, name
, reloc
)
306 int reloc ATTRIBUTE_UNUSED
;
308 if (decl
!= NULL_TREE
&& !DECL_P (decl
))
311 name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
313 if (in_section
!= in_named
|| strcmp (name
, in_named_name
))
315 #ifdef ASM_OUTPUT_SECTION_NAME
316 ASM_OUTPUT_SECTION_NAME (asm_out_file
, decl
, name
, reloc
);
318 /* Section attributes are not supported if this macro isn't provided -
319 some host formats don't support them at all. The front-end should
320 already have flagged this as an error. */
324 in_named_name
= ggc_strdup (name
);
325 in_section
= in_named
;
329 #ifdef ASM_OUTPUT_SECTION_NAME
330 #ifndef UNIQUE_SECTION
331 #define UNIQUE_SECTION(DECL,RELOC) \
337 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (DECL)); \
338 /* Strip off any encoding in name. */ \
339 STRIP_NAME_ENCODING (name, name); \
341 len = strlen (name) + 1; \
342 string = alloca (len + 1); \
343 sprintf (string, ".%s", name); \
345 DECL_SECTION_NAME (DECL) = build_string (len, string); \
348 #ifndef UNIQUE_SECTION_P
349 #define UNIQUE_SECTION_P(DECL) 0
353 #ifdef BSS_SECTION_ASM_OP
355 /* Tell the assembler to switch to the bss section. */
360 if (in_section
!= in_bss
)
362 #ifdef SHARED_BSS_SECTION_ASM_OP
363 if (flag_shared_data
)
364 fprintf (asm_out_file
, "%s\n", SHARED_BSS_SECTION_ASM_OP
);
367 fprintf (asm_out_file
, "%s\n", BSS_SECTION_ASM_OP
);
373 #ifdef ASM_OUTPUT_BSS
375 /* Utility function for ASM_OUTPUT_BSS for targets to use if
376 they don't support alignments in .bss.
377 ??? It is believed that this function will work in most cases so such
378 support is localized here. */
381 asm_output_bss (file
, decl
, name
, size
, rounded
)
383 tree decl ATTRIBUTE_UNUSED
;
385 int size ATTRIBUTE_UNUSED
, rounded
;
387 ASM_GLOBALIZE_LABEL (file
, name
);
389 #ifdef ASM_DECLARE_OBJECT_NAME
390 last_assemble_variable_decl
= decl
;
391 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
393 /* Standard thing is just output label for the object. */
394 ASM_OUTPUT_LABEL (file
, name
);
395 #endif /* ASM_DECLARE_OBJECT_NAME */
396 ASM_OUTPUT_SKIP (file
, rounded
);
401 #ifdef ASM_OUTPUT_ALIGNED_BSS
403 /* Utility function for targets to use in implementing
404 ASM_OUTPUT_ALIGNED_BSS.
405 ??? It is believed that this function will work in most cases so such
406 support is localized here. */
409 asm_output_aligned_bss (file
, decl
, name
, size
, align
)
415 ASM_GLOBALIZE_LABEL (file
, name
);
417 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
418 #ifdef ASM_DECLARE_OBJECT_NAME
419 last_assemble_variable_decl
= decl
;
420 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
422 /* Standard thing is just output label for the object. */
423 ASM_OUTPUT_LABEL (file
, name
);
424 #endif /* ASM_DECLARE_OBJECT_NAME */
425 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
430 #endif /* BSS_SECTION_ASM_OP */
432 #ifdef EH_FRAME_SECTION_ASM_OP
436 if (in_section
!= in_eh_frame
)
438 fprintf (asm_out_file
, "%s\n", EH_FRAME_SECTION_ASM_OP
);
439 in_section
= in_eh_frame
;
444 /* Switch to the section for function DECL.
446 If DECL is NULL_TREE, switch to the text section.
447 ??? It's not clear that we will ever be passed NULL_TREE, but it's
448 safer to handle it. */
451 function_section (decl
)
454 if (decl
!= NULL_TREE
455 && DECL_SECTION_NAME (decl
) != NULL_TREE
)
456 named_section (decl
, (char *) 0, 0);
461 /* Switch to section for variable DECL.
463 RELOC is the `reloc' argument to SELECT_SECTION. */
466 variable_section (decl
, reloc
)
470 if (IN_NAMED_SECTION (decl
))
471 named_section (decl
, NULL
, reloc
);
474 /* C++ can have const variables that get initialized from constructors,
475 and thus can not be in a readonly section. We prevent this by
476 verifying that the initial value is constant for objects put in a
479 error_mark_node is used by the C front end to indicate that the
480 initializer has not been seen yet. In this case, we assume that
481 the initializer must be constant.
483 C++ uses error_mark_node for variables that have complicated
484 initializers, but these variables go in BSS so we won't be called
487 #ifdef SELECT_SECTION
488 SELECT_SECTION (decl
, reloc
);
490 if (DECL_READONLY_SECTION (decl
, reloc
))
491 readonly_data_section ();
498 /* Tell assembler to switch to the section for the exception handling
504 #if defined (EXCEPTION_SECTION)
505 EXCEPTION_SECTION ();
507 #ifdef ASM_OUTPUT_SECTION_NAME
508 named_section (NULL_TREE
, ".gcc_except_table", 0);
513 readonly_data_section ();
518 /* Given NAME, a putative register name, discard any customary prefixes. */
521 strip_reg_name (name
)
524 #ifdef REGISTER_PREFIX
525 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
526 name
+= strlen (REGISTER_PREFIX
);
528 if (name
[0] == '%' || name
[0] == '#')
533 /* Decode an `asm' spec for a declaration as a register name.
534 Return the register number, or -1 if nothing specified,
535 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
536 or -3 if ASMSPEC is `cc' and is not recognized,
537 or -4 if ASMSPEC is `memory' and is not recognized.
538 Accept an exact spelling or a decimal number.
539 Prefixes such as % are optional. */
542 decode_reg_name (asmspec
)
549 /* Get rid of confusing prefixes. */
550 asmspec
= strip_reg_name (asmspec
);
552 /* Allow a decimal number as a "register name". */
553 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
554 if (! (asmspec
[i
] >= '0' && asmspec
[i
] <= '9'))
556 if (asmspec
[0] != 0 && i
< 0)
559 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
565 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
567 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
570 #ifdef ADDITIONAL_REGISTER_NAMES
572 static struct { const char *name
; int number
; } table
[]
573 = ADDITIONAL_REGISTER_NAMES
;
575 for (i
= 0; i
< (int) ARRAY_SIZE (table
); i
++)
576 if (! strcmp (asmspec
, table
[i
].name
))
577 return table
[i
].number
;
579 #endif /* ADDITIONAL_REGISTER_NAMES */
581 if (!strcmp (asmspec
, "memory"))
584 if (!strcmp (asmspec
, "cc"))
593 /* Create the DECL_RTL for a declaration for a static or external variable
594 or static or external function.
595 ASMSPEC, if not 0, is the string which the user specified
596 as the assembler symbol name.
598 This is never called for PARM_DECL nodes. */
601 make_decl_rtl (decl
, asmspec
)
605 int top_level
= (DECL_CONTEXT (decl
) == NULL_TREE
);
606 const char *name
= 0;
607 const char *new_name
= 0;
610 /* For a duplicate declaration, we can be called twice on the
611 same DECL node. Don't discard the RTL already made. */
612 if (DECL_RTL (decl
) != 0)
614 /* If the old RTL had the wrong mode, fix the mode. */
615 if (GET_MODE (DECL_RTL (decl
)) != DECL_MODE (decl
))
617 rtx rtl
= DECL_RTL (decl
);
618 PUT_MODE (rtl
, DECL_MODE (decl
));
621 /* ??? Another way to do this would be to do what halfpic.c does
622 and maintain a hashed table of such critters. */
623 /* ??? Another way to do this would be to pass a flag bit to
624 ENCODE_SECTION_INFO saying whether this is a new decl or not. */
625 /* Let the target reassign the RTL if it wants.
626 This is necessary, for example, when one machine specific
627 decl attribute overrides another. */
628 #ifdef REDO_SECTION_INFO_P
629 if (REDO_SECTION_INFO_P (decl
))
630 ENCODE_SECTION_INFO (decl
);
635 new_name
= name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
637 reg_number
= decode_reg_name (asmspec
);
638 if (reg_number
== -2)
640 /* ASMSPEC is given, and not the name of a register. Mark the
641 name with a star so assemble_name won't munge it. */
642 char *starred
= alloca (strlen (asmspec
) + 2);
644 strcpy (starred
+ 1, asmspec
);
648 if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
650 /* First detect errors in declaring global registers. */
651 if (reg_number
== -1)
652 error_with_decl (decl
, "register name not specified for `%s'");
653 else if (reg_number
< 0)
654 error_with_decl (decl
, "invalid register name for `%s'");
655 else if (TYPE_MODE (TREE_TYPE (decl
)) == BLKmode
)
656 error_with_decl (decl
,
657 "data type of `%s' isn't suitable for a register");
658 else if (! HARD_REGNO_MODE_OK (reg_number
, TYPE_MODE (TREE_TYPE (decl
))))
659 error_with_decl (decl
,
660 "register specified for `%s' isn't suitable for data type");
661 /* Now handle properly declared static register variables. */
666 if (DECL_INITIAL (decl
) != 0 && !TREE_STATIC (decl
))
668 DECL_INITIAL (decl
) = 0;
669 error ("global register variable has initial value");
671 if (TREE_THIS_VOLATILE (decl
))
672 warning ("volatile register variables don't work as you might wish");
674 /* If the user specified one of the eliminables registers here,
675 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
676 confused with that register and be eliminated. Although this
677 usage is somewhat suspect, we nevertheless use the following
678 kludge to avoid setting DECL_RTL to frame_pointer_rtx. */
681 = gen_rtx_REG (DECL_MODE (decl
), FIRST_PSEUDO_REGISTER
);
682 REGNO (DECL_RTL (decl
)) = reg_number
;
683 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
685 if (TREE_STATIC (decl
))
687 /* Make this register global, so not usable for anything
689 #ifdef ASM_DECLARE_REGISTER_GLOBAL
690 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file
, decl
, reg_number
, name
);
692 nregs
= HARD_REGNO_NREGS (reg_number
, DECL_MODE (decl
));
694 globalize_reg (reg_number
+ --nregs
);
697 /* As a register variable, it has no section. */
702 /* Now handle ordinary static variables and functions (in memory).
703 Also handle vars declared register invalidly. */
705 if (reg_number
>= 0 || reg_number
== -3)
706 error_with_decl (decl
,
707 "register name given for non-register variable `%s'");
709 /* Specifying a section attribute on a variable forces it into a
710 non-.bss section, and thus it cannot be common. */
711 if (TREE_CODE (decl
) == VAR_DECL
712 && DECL_SECTION_NAME (decl
) != NULL_TREE
713 && DECL_INITIAL (decl
) == NULL_TREE
714 && DECL_COMMON (decl
))
715 DECL_COMMON (decl
) = 0;
717 /* Can't use just the variable's own name for a variable
718 whose scope is less than the whole file, unless it's a member
719 of a local class (which will already be unambiguous).
720 Concatenate a distinguishing number. */
721 if (!top_level
&& !TREE_PUBLIC (decl
)
722 && ! (DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
)))
726 ASM_FORMAT_PRIVATE_NAME (label
, name
, var_labelno
);
731 /* When -fprefix-function-name is used, the functions
732 names are prefixed. Only nested function names are not
734 else if (flag_prefix_function_name
&& TREE_CODE (decl
) == FUNCTION_DECL
)
736 size_t name_len
= IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (decl
));
739 pname
= alloca (name_len
+ CHKR_PREFIX_SIZE
+ 1);
740 memcpy (pname
, CHKR_PREFIX
, CHKR_PREFIX_SIZE
);
741 memcpy (pname
+ CHKR_PREFIX_SIZE
, name
, name_len
+ 1);
745 if (name
!= new_name
)
747 DECL_ASSEMBLER_NAME (decl
) = get_identifier (new_name
);
748 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
751 /* If this variable is to be treated as volatile, show its
752 tree node has side effects. */
753 if ((flag_volatile_global
&& TREE_CODE (decl
) == VAR_DECL
754 && TREE_PUBLIC (decl
))
755 || ((flag_volatile_static
&& TREE_CODE (decl
) == VAR_DECL
756 && (TREE_PUBLIC (decl
) || TREE_STATIC (decl
)))))
757 TREE_SIDE_EFFECTS (decl
) = 1;
759 DECL_RTL (decl
) = gen_rtx_MEM (DECL_MODE (decl
),
760 gen_rtx_SYMBOL_REF (Pmode
, name
));
761 if (TREE_CODE (decl
) != FUNCTION_DECL
)
762 set_mem_attributes (DECL_RTL (decl
), decl
, 1);
764 /* Optionally set flags or add text to the name to record information
765 such as that it is a function name.
766 If the name is changed, the macro ASM_OUTPUT_LABELREF
767 will have to know how to strip this information. */
768 #ifdef ENCODE_SECTION_INFO
769 ENCODE_SECTION_INFO (decl
);
773 /* Make the rtl for variable VAR be volatile.
774 Use this only for static variables. */
777 make_var_volatile (var
)
780 if (GET_CODE (DECL_RTL (var
)) != MEM
)
783 MEM_VOLATILE_P (DECL_RTL (var
)) = 1;
786 /* Output alignment directive to align for constant expression EXP. */
789 assemble_constant_align (exp
)
794 /* Align the location counter as required by EXP's data type. */
795 align
= TYPE_ALIGN (TREE_TYPE (exp
));
796 #ifdef CONSTANT_ALIGNMENT
797 align
= CONSTANT_ALIGNMENT (exp
, align
);
800 if (align
> BITS_PER_UNIT
)
801 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
804 /* Output a string of literal assembler code
805 for an `asm' keyword used between functions. */
808 assemble_asm (string
)
813 if (TREE_CODE (string
) == ADDR_EXPR
)
814 string
= TREE_OPERAND (string
, 0);
816 fprintf (asm_out_file
, "\t%s\n", TREE_STRING_POINTER (string
));
819 #if 0 /* This should no longer be needed, because
820 flag_gnu_linker should be 0 on these systems,
821 which should prevent any output
822 if ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are absent. */
823 #if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER))
824 #ifndef ASM_OUTPUT_CONSTRUCTOR
825 #define ASM_OUTPUT_CONSTRUCTOR(file, name)
827 #ifndef ASM_OUTPUT_DESTRUCTOR
828 #define ASM_OUTPUT_DESTRUCTOR(file, name)
833 /* Record an element in the table of global destructors.
834 How this is done depends on what sort of assembler and linker
837 NAME should be the name of a global function to be called
838 at exit time. This name is output using assemble_name. */
841 assemble_destructor (name
)
844 #ifdef ASM_OUTPUT_DESTRUCTOR
845 ASM_OUTPUT_DESTRUCTOR (asm_out_file
, name
);
849 /* Now tell GNU LD that this is part of the static destructor set. */
850 /* This code works for any machine provided you use GNU as/ld. */
851 fprintf (asm_out_file
, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
852 assemble_name (asm_out_file
, name
);
853 fputc ('\n', asm_out_file
);
858 /* Likewise for global constructors. */
861 assemble_constructor (name
)
864 #ifdef ASM_OUTPUT_CONSTRUCTOR
865 ASM_OUTPUT_CONSTRUCTOR (asm_out_file
, name
);
869 /* Now tell GNU LD that this is part of the static constructor set. */
870 /* This code works for any machine provided you use GNU as/ld. */
871 fprintf (asm_out_file
, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
872 assemble_name (asm_out_file
, name
);
873 fputc ('\n', asm_out_file
);
878 /* Likewise for entries we want to record for garbage collection.
879 Garbage collection is still under development. */
882 assemble_gc_entry (name
)
885 #ifdef ASM_OUTPUT_GC_ENTRY
886 ASM_OUTPUT_GC_ENTRY (asm_out_file
, name
);
890 /* Now tell GNU LD that this is part of the static constructor set. */
891 fprintf (asm_out_file
, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP
);
892 assemble_name (asm_out_file
, name
);
893 fputc ('\n', asm_out_file
);
898 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
899 a non-zero value if the constant pool should be output before the
900 start of the function, or a zero value if the pool should output
901 after the end of the function. The default is to put it before the
904 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
905 #define CONSTANT_POOL_BEFORE_FUNCTION 1
908 /* Output assembler code for the constant pool of a function and associated
909 with defining the name of the function. DECL describes the function.
910 NAME is the function's name. For the constant pool, we use the current
911 constant pool data. */
914 assemble_start_function (decl
, fnname
)
920 /* The following code does not need preprocessing in the assembler. */
924 if (CONSTANT_POOL_BEFORE_FUNCTION
)
925 output_constant_pool (fnname
, decl
);
927 #ifdef ASM_OUTPUT_SECTION_NAME
928 /* If the function is to be put in its own section and it's not in a section
929 already, indicate so. */
930 if ((flag_function_sections
931 && DECL_SECTION_NAME (decl
) == NULL_TREE
)
932 || UNIQUE_SECTION_P (decl
))
933 UNIQUE_SECTION (decl
, 0);
936 function_section (decl
);
938 /* Tell assembler to move to target machine's alignment for functions. */
939 align
= floor_log2 (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
941 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
943 /* Handle a user-specified function alignment.
944 Note that we still need to align to FUNCTION_BOUNDARY, as above,
945 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
946 if (align_functions_log
> align
)
948 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
949 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file
,
950 align_functions_log
, align_functions
-1);
952 ASM_OUTPUT_ALIGN (asm_out_file
, align_functions_log
);
956 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
957 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
960 #ifdef SDB_DEBUGGING_INFO
961 /* Output SDB definition of the function. */
962 if (write_symbols
== SDB_DEBUG
)
963 sdbout_mark_begin_function ();
966 #ifdef DBX_DEBUGGING_INFO
967 /* Output DBX definition of the function. */
968 if (write_symbols
== DBX_DEBUG
)
969 dbxout_begin_function (decl
);
972 /* Make function name accessible from other files, if appropriate. */
974 if (TREE_PUBLIC (decl
))
976 if (! first_global_object_name
)
981 STRIP_NAME_ENCODING (p
, fnname
);
982 name
= permalloc (strlen (p
) + 1);
985 if (! DECL_WEAK (decl
) && ! DECL_ONE_ONLY (decl
))
986 first_global_object_name
= name
;
988 weak_global_object_name
= name
;
991 #ifdef ASM_WEAKEN_LABEL
992 if (DECL_WEAK (decl
))
994 ASM_WEAKEN_LABEL (asm_out_file
, fnname
);
995 /* Remove this function from the pending weak list so that
996 we do not emit multiple .weak directives for it. */
997 remove_from_pending_weak_list
998 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
1002 ASM_GLOBALIZE_LABEL (asm_out_file
, fnname
);
1005 /* Do any machine/system dependent processing of the function name */
1006 #ifdef ASM_DECLARE_FUNCTION_NAME
1007 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
1009 /* Standard thing is just output label for the function. */
1010 ASM_OUTPUT_LABEL (asm_out_file
, fnname
);
1011 #endif /* ASM_DECLARE_FUNCTION_NAME */
1014 /* Output assembler code associated with defining the size of the
1015 function. DECL describes the function. NAME is the function's name. */
1018 assemble_end_function (decl
, fnname
)
1022 #ifdef ASM_DECLARE_FUNCTION_SIZE
1023 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1025 if (! CONSTANT_POOL_BEFORE_FUNCTION
)
1027 output_constant_pool (fnname
, decl
);
1028 function_section (decl
); /* need to switch back */
1031 /* Output any constants which should appear after the function. */
1032 output_after_function_constants ();
1035 /* Assemble code to leave SIZE bytes of zeros. */
1038 assemble_zeros (size
)
1041 /* Do no output if -fsyntax-only. */
1042 if (flag_syntax_only
)
1045 #ifdef ASM_NO_SKIP_IN_TEXT
1046 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1047 so we must output 0s explicitly in the text section. */
1048 if (ASM_NO_SKIP_IN_TEXT
&& in_text_section ())
1052 for (i
= 0; i
< size
- 20; i
+= 20)
1055 fprintf (asm_out_file
,
1056 "%s0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP
);
1058 fprintf (asm_out_file
,
1059 "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n");
1065 fprintf (asm_out_file
, "%s0", ASM_BYTE_OP
);
1067 fprintf (asm_out_file
, "\tbyte 0");
1070 for (; i
< size
; i
++)
1071 fprintf (asm_out_file
, ",0");
1072 fprintf (asm_out_file
, "\n");
1078 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1081 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1084 assemble_align (align
)
1087 if (align
> BITS_PER_UNIT
)
1088 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1091 /* Assemble a string constant with the specified C string as contents. */
1094 assemble_string (p
, size
)
1101 /* If the string is very long, split it up. */
1105 int thissize
= size
- pos
;
1106 if (thissize
> maximum
)
1109 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1117 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1118 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1119 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1121 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1122 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1123 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1125 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1126 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1130 #if defined ASM_OUTPUT_ALIGNED_BSS
1131 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1132 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1134 #if defined ASM_OUTPUT_BSS
1135 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1136 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1142 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1143 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1144 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1146 #if defined ASM_OUTPUT_ALIGNED_COMMON
1147 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1148 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1150 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1151 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1156 asm_emit_uninitialised (decl
, name
, size
, rounded
)
1159 int size ATTRIBUTE_UNUSED
;
1160 int rounded ATTRIBUTE_UNUSED
;
1168 destination
= asm_dest_local
;
1170 if (TREE_PUBLIC (decl
))
1172 #if defined ASM_EMIT_BSS
1173 if (! DECL_COMMON (decl
))
1174 destination
= asm_dest_bss
;
1177 destination
= asm_dest_common
;
1180 if (flag_shared_data
)
1182 switch (destination
)
1184 #ifdef ASM_OUTPUT_SHARED_BSS
1186 ASM_OUTPUT_SHARED_BSS (asm_out_file
, decl
, name
, size
, rounded
);
1189 #ifdef ASM_OUTPUT_SHARED_COMMON
1190 case asm_dest_common
:
1191 ASM_OUTPUT_SHARED_COMMON (asm_out_file
, name
, size
, rounded
);
1194 #ifdef ASM_OUTPUT_SHARED_LOCAL
1195 case asm_dest_local
:
1196 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
1204 #ifdef ASM_OUTPUT_SECTION_NAME
1205 /* We already know that DECL_SECTION_NAME() == NULL. */
1206 if (flag_data_sections
!= 0 || UNIQUE_SECTION_P (decl
))
1207 UNIQUE_SECTION (decl
, 0);
1210 switch (destination
)
1214 ASM_EMIT_BSS (decl
, name
, size
, rounded
);
1217 case asm_dest_common
:
1218 ASM_EMIT_COMMON (decl
, name
, size
, rounded
);
1220 case asm_dest_local
:
1221 ASM_EMIT_LOCAL (decl
, name
, size
, rounded
);
1230 /* Assemble everything that is needed for a variable or function declaration.
1231 Not used for automatic variables, and not used for function definitions.
1232 Should not be called for variables of incomplete structure type.
1234 TOP_LEVEL is nonzero if this variable has file scope.
1235 AT_END is nonzero if this is the special handling, at end of compilation,
1236 to define things that have had only tentative definitions.
1237 DONT_OUTPUT_DATA if nonzero means don't actually output the
1238 initial value (that will be done by the caller). */
1241 assemble_variable (decl
, top_level
, at_end
, dont_output_data
)
1243 int top_level ATTRIBUTE_UNUSED
;
1244 int at_end ATTRIBUTE_UNUSED
;
1245 int dont_output_data
;
1247 register const char *name
;
1250 enum in_section saved_in_section
;
1252 last_assemble_variable_decl
= 0;
1254 if (GET_CODE (DECL_RTL (decl
)) == REG
)
1256 /* Do output symbol info for global register variables, but do nothing
1259 if (TREE_ASM_WRITTEN (decl
))
1261 TREE_ASM_WRITTEN (decl
) = 1;
1263 /* Do no output if -fsyntax-only. */
1264 if (flag_syntax_only
)
1267 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1268 /* File-scope global variables are output here. */
1269 if ((write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
1271 dbxout_symbol (decl
, 0);
1273 #ifdef SDB_DEBUGGING_INFO
1274 if (write_symbols
== SDB_DEBUG
&& top_level
1275 /* Leave initialized global vars for end of compilation;
1276 see comment in compile_file. */
1277 && (TREE_PUBLIC (decl
) == 0 || DECL_INITIAL (decl
) == 0))
1278 sdbout_symbol (decl
, 0);
1281 /* Don't output any DWARF debugging information for variables here.
1282 In the case of local variables, the information for them is output
1283 when we do our recursive traversal of the tree representation for
1284 the entire containing function. In the case of file-scope variables,
1285 we output information for all of them at the very end of compilation
1286 while we are doing our final traversal of the chain of file-scope
1292 /* Normally no need to say anything here for external references,
1293 since assemble_external is called by the language-specific code
1294 when a declaration is first seen. */
1296 if (DECL_EXTERNAL (decl
))
1299 /* Output no assembler code for a function declaration.
1300 Only definitions of functions output anything. */
1302 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1305 /* If type was incomplete when the variable was declared,
1306 see if it is complete now. */
1308 if (DECL_SIZE (decl
) == 0)
1309 layout_decl (decl
, 0);
1311 /* Still incomplete => don't allocate it; treat the tentative defn
1312 (which is what it must have been) as an `extern' reference. */
1314 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
1316 error_with_file_and_line (DECL_SOURCE_FILE (decl
),
1317 DECL_SOURCE_LINE (decl
),
1318 "storage size of `%s' isn't known",
1319 IDENTIFIER_POINTER (DECL_NAME (decl
)));
1320 TREE_ASM_WRITTEN (decl
) = 1;
1324 /* The first declaration of a variable that comes through this function
1325 decides whether it is global (in C, has external linkage)
1326 or local (in C, has internal linkage). So do nothing more
1327 if this function has already run. */
1329 if (TREE_ASM_WRITTEN (decl
))
1332 TREE_ASM_WRITTEN (decl
) = 1;
1334 /* Do no output if -fsyntax-only. */
1335 if (flag_syntax_only
)
1340 if (! dont_output_data
1341 && ! host_integerp (DECL_SIZE_UNIT (decl
), 1))
1343 error_with_decl (decl
, "size of variable `%s' is too large");
1347 name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
1348 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
)
1349 && ! first_global_object_name
1350 && ! (DECL_COMMON (decl
) && (DECL_INITIAL (decl
) == 0
1351 || DECL_INITIAL (decl
) == error_mark_node
))
1352 && ! DECL_WEAK (decl
)
1353 && ! DECL_ONE_ONLY (decl
))
1358 STRIP_NAME_ENCODING (p
, name
);
1359 xname
= permalloc (strlen (p
) + 1);
1361 first_global_object_name
= xname
;
1364 /* Compute the alignment of this data. */
1366 align
= DECL_ALIGN (decl
);
1368 /* In the case for initialing an array whose length isn't specified,
1369 where we have not yet been able to do the layout,
1370 figure out the proper alignment now. */
1371 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1372 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1373 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1375 /* Some object file formats have a maximum alignment which they support.
1376 In particular, a.out format supports a maximum alignment of 4. */
1377 #ifndef MAX_OFILE_ALIGNMENT
1378 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1380 if (align
> MAX_OFILE_ALIGNMENT
)
1382 warning_with_decl (decl
,
1383 "alignment of `%s' is greater than maximum object file alignment. Using %d.",
1384 MAX_OFILE_ALIGNMENT
/BITS_PER_UNIT
);
1385 align
= MAX_OFILE_ALIGNMENT
;
1388 /* On some machines, it is good to increase alignment sometimes. */
1389 #ifdef DATA_ALIGNMENT
1390 align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1392 #ifdef CONSTANT_ALIGNMENT
1393 if (DECL_INITIAL (decl
) != 0 && DECL_INITIAL (decl
) != error_mark_node
)
1394 align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1397 /* Reset the alignment in case we have made it tighter, so we can benefit
1398 from it in get_pointer_alignment. */
1399 DECL_ALIGN (decl
) = align
;
1401 /* Handle uninitialized definitions. */
1403 if ((DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
)
1404 /* If the target can't output uninitialized but not common global data
1405 in .bss, then we have to use .data. */
1406 #if ! defined ASM_EMIT_BSS
1407 && DECL_COMMON (decl
)
1409 && DECL_SECTION_NAME (decl
) == NULL_TREE
1410 && ! dont_output_data
)
1412 unsigned HOST_WIDE_INT size
= tree_low_cst (DECL_SIZE_UNIT (decl
), 1);
1413 unsigned HOST_WIDE_INT rounded
= size
;
1415 /* Don't allocate zero bytes of common,
1416 since that means "undefined external" in the linker. */
1420 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1421 so that each uninitialized object starts on such a boundary. */
1422 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1423 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1424 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1426 /* Don't continue this line--convex cc version 4.1 would lose. */
1427 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1428 if ((unsigned HOST_WIDE_INT
) DECL_ALIGN (decl
) / BITS_PER_UNIT
> rounded
)
1430 (decl
, "requested alignment for %s is greater than implemented alignment of %d.",rounded
);
1433 #ifdef DBX_DEBUGGING_INFO
1434 /* File-scope global variables are output here. */
1435 if (write_symbols
== DBX_DEBUG
&& top_level
)
1436 dbxout_symbol (decl
, 0);
1438 #ifdef SDB_DEBUGGING_INFO
1439 if (write_symbols
== SDB_DEBUG
&& top_level
1440 /* Leave initialized global vars for end of compilation;
1441 see comment in compile_file. */
1442 && (TREE_PUBLIC (decl
) == 0 || DECL_INITIAL (decl
) == 0))
1443 sdbout_symbol (decl
, 0);
1446 /* Don't output any DWARF debugging information for variables here.
1447 In the case of local variables, the information for them is output
1448 when we do our recursive traversal of the tree representation for
1449 the entire containing function. In the case of file-scope variables,
1450 we output information for all of them at the very end of compilation
1451 while we are doing our final traversal of the chain of file-scope
1454 #if 0 /* ??? We should either delete this or add a comment describing what
1455 it was intended to do and why we shouldn't delete it. */
1456 if (flag_shared_data
)
1459 asm_emit_uninitialised (decl
, name
, size
, rounded
);
1464 /* Handle initialized definitions.
1465 Also handle uninitialized global definitions if -fno-common and the
1466 target doesn't support ASM_OUTPUT_BSS. */
1468 /* First make the assembler name(s) global if appropriate. */
1469 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1471 #ifdef ASM_WEAKEN_LABEL
1472 if (DECL_WEAK (decl
))
1474 ASM_WEAKEN_LABEL (asm_out_file
, name
);
1475 /* Remove this variable from the pending weak list so that
1476 we do not emit multiple .weak directives for it. */
1477 remove_from_pending_weak_list
1478 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
1482 ASM_GLOBALIZE_LABEL (asm_out_file
, name
);
1485 for (d
= equivalents
; d
; d
= TREE_CHAIN (d
))
1487 tree e
= TREE_VALUE (d
);
1488 if (TREE_PUBLIC (e
) && DECL_NAME (e
))
1489 ASM_GLOBALIZE_LABEL (asm_out_file
,
1490 XSTR (XEXP (DECL_RTL (e
), 0), 0));
1494 /* Output any data that we will need to use the address of. */
1495 if (DECL_INITIAL (decl
) == error_mark_node
)
1496 reloc
= contains_pointers_p (TREE_TYPE (decl
));
1497 else if (DECL_INITIAL (decl
))
1498 reloc
= output_addressed_constants (DECL_INITIAL (decl
));
1500 #ifdef ASM_OUTPUT_SECTION_NAME
1501 if ((flag_data_sections
!= 0 && DECL_SECTION_NAME (decl
) == NULL_TREE
)
1502 || UNIQUE_SECTION_P (decl
))
1503 UNIQUE_SECTION (decl
, reloc
);
1506 /* Switch to the appropriate section. */
1507 variable_section (decl
, reloc
);
1509 /* dbxout.c needs to know this. */
1510 if (in_text_section ())
1511 DECL_IN_TEXT_SECTION (decl
) = 1;
1513 /* Record current section so we can restore it if dbxout.c clobbers it. */
1514 saved_in_section
= in_section
;
1516 /* Output the dbx info now that we have chosen the section. */
1518 #ifdef DBX_DEBUGGING_INFO
1519 /* File-scope global variables are output here. */
1520 if (write_symbols
== DBX_DEBUG
&& top_level
)
1521 dbxout_symbol (decl
, 0);
1523 #ifdef SDB_DEBUGGING_INFO
1524 if (write_symbols
== SDB_DEBUG
&& top_level
1525 /* Leave initialized global vars for end of compilation;
1526 see comment in compile_file. */
1527 && (TREE_PUBLIC (decl
) == 0 || DECL_INITIAL (decl
) == 0))
1528 sdbout_symbol (decl
, 0);
1531 /* Don't output any DWARF debugging information for variables here.
1532 In the case of local variables, the information for them is output
1533 when we do our recursive traversal of the tree representation for
1534 the entire containing function. In the case of file-scope variables,
1535 we output information for all of them at the very end of compilation
1536 while we are doing our final traversal of the chain of file-scope
1539 /* If the debugging output changed sections, reselect the section
1540 that's supposed to be selected. */
1541 if (in_section
!= saved_in_section
)
1542 variable_section (decl
, reloc
);
1544 /* Output the alignment of this data. */
1545 if (align
> BITS_PER_UNIT
)
1546 ASM_OUTPUT_ALIGN (asm_out_file
,
1547 floor_log2 (DECL_ALIGN (decl
) / BITS_PER_UNIT
));
1549 /* Do any machine/system dependent processing of the object. */
1550 #ifdef ASM_DECLARE_OBJECT_NAME
1551 last_assemble_variable_decl
= decl
;
1552 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1554 /* Standard thing is just output label for the object. */
1555 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1556 #endif /* ASM_DECLARE_OBJECT_NAME */
1558 if (!dont_output_data
)
1560 if (DECL_INITIAL (decl
))
1561 /* Output the actual data. */
1562 output_constant (DECL_INITIAL (decl
),
1563 tree_low_cst (DECL_SIZE_UNIT (decl
), 1));
1565 /* Leave space for it. */
1566 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl
), 1));
1570 #ifdef XCOFF_DEBUGGING_INFO
1571 /* Unfortunately, the IBM assembler cannot handle stabx before the actual
1572 declaration. When something like ".stabx "aa:S-2",aa,133,0" is emitted
1573 and `aa' hasn't been output yet, the assembler generates a stab entry with
1574 a value of zero, in addition to creating an unnecessary external entry
1575 for `aa'. Hence, we must postpone dbxout_symbol to here at the end. */
1577 /* File-scope global variables are output here. */
1578 if (write_symbols
== XCOFF_DEBUG
&& top_level
)
1580 saved_in_section
= in_section
;
1582 dbxout_symbol (decl
, 0);
1584 if (in_section
!= saved_in_section
)
1585 variable_section (decl
, reloc
);
1588 /* There must be a statement after a label. */
1593 /* Return 1 if type TYPE contains any pointers. */
1596 contains_pointers_p (type
)
1599 switch (TREE_CODE (type
))
1602 case REFERENCE_TYPE
:
1603 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1604 so I'll play safe and return 1. */
1610 case QUAL_UNION_TYPE
:
1613 /* For a type that has fields, see if the fields have pointers. */
1614 for (fields
= TYPE_FIELDS (type
); fields
; fields
= TREE_CHAIN (fields
))
1615 if (TREE_CODE (fields
) == FIELD_DECL
1616 && contains_pointers_p (TREE_TYPE (fields
)))
1622 /* An array type contains pointers if its element type does. */
1623 return contains_pointers_p (TREE_TYPE (type
));
1630 /* Output something to declare an external symbol to the assembler.
1631 (Most assemblers don't need this, so we normally output nothing.)
1632 Do nothing if DECL is not external. */
1635 assemble_external (decl
)
1636 tree decl ATTRIBUTE_UNUSED
;
1638 #ifdef ASM_OUTPUT_EXTERNAL
1639 if (DECL_P (decl
) && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
1641 rtx rtl
= DECL_RTL (decl
);
1643 if (GET_CODE (rtl
) == MEM
&& GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
1644 && ! SYMBOL_REF_USED (XEXP (rtl
, 0)))
1646 /* Some systems do require some output. */
1647 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
1648 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
1654 /* Similar, for calling a library function FUN. */
1657 assemble_external_libcall (fun
)
1658 rtx fun ATTRIBUTE_UNUSED
;
1660 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1661 /* Declare library function name external when first used, if nec. */
1662 if (! SYMBOL_REF_USED (fun
))
1664 SYMBOL_REF_USED (fun
) = 1;
1665 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file
, fun
);
1670 /* Declare the label NAME global. */
1673 assemble_global (name
)
1676 ASM_GLOBALIZE_LABEL (asm_out_file
, name
);
1679 /* Assemble a label named NAME. */
1682 assemble_label (name
)
1685 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1688 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1689 If NAME starts with a *, the rest of NAME is output verbatim.
1690 Otherwise NAME is transformed in an implementation-defined way
1691 (usually by the addition of an underscore).
1692 Many macros in the tm file are defined to call this function. */
1695 assemble_name (file
, name
)
1699 const char *real_name
;
1702 STRIP_NAME_ENCODING (real_name
, name
);
1703 if (flag_prefix_function_name
1704 && ! memcmp (real_name
, CHKR_PREFIX
, CHKR_PREFIX_SIZE
))
1705 real_name
= real_name
+ CHKR_PREFIX_SIZE
;
1707 id
= maybe_get_identifier (real_name
);
1709 TREE_SYMBOL_REFERENCED (id
) = 1;
1712 fputs (&name
[1], file
);
1714 ASM_OUTPUT_LABELREF (file
, real_name
);
1717 /* Allocate SIZE bytes writable static space with a gensym name
1718 and return an RTX to refer to its address. */
1721 assemble_static_space (size
)
1725 const char *namestring
;
1729 if (flag_shared_data
)
1733 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
1735 namestring
= ggc_strdup (name
);
1737 x
= gen_rtx_SYMBOL_REF (Pmode
, namestring
);
1739 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1740 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file
, NULL_TREE
, name
, size
,
1743 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1744 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
1747 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1748 so that each uninitialized object starts on such a boundary. */
1749 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1750 int rounded ATTRIBUTE_UNUSED
1751 = ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
1752 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1753 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1754 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1761 /* Assemble the static constant template for function entry trampolines.
1762 This is done at most once per compilation.
1763 Returns an RTX for the address of the template. */
1765 #ifdef TRAMPOLINE_TEMPLATE
1767 assemble_trampoline_template ()
1773 /* By default, put trampoline templates in read-only data section. */
1775 #ifdef TRAMPOLINE_SECTION
1776 TRAMPOLINE_SECTION ();
1778 readonly_data_section ();
1781 /* Write the assembler code to define one. */
1782 align
= floor_log2 (TRAMPOLINE_ALIGNMENT
/ BITS_PER_UNIT
);
1784 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1786 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LTRAMP", 0);
1787 TRAMPOLINE_TEMPLATE (asm_out_file
);
1789 /* Record the rtl to refer to it. */
1790 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
1791 name
= ggc_strdup (label
);
1792 return gen_rtx_SYMBOL_REF (Pmode
, name
);
1796 /* Assemble the integer constant X into an object of SIZE bytes.
1797 X must be either a CONST_INT or CONST_DOUBLE.
1799 Return 1 if we were able to output the constant, otherwise 0. If FORCE is
1800 non-zero, abort if we can't output the constant. */
1803 assemble_integer (x
, size
, force
)
1808 /* First try to use the standard 1, 2, 4, 8, and 16 byte
1809 ASM_OUTPUT... macros. */
1813 #ifdef ASM_OUTPUT_CHAR
1815 ASM_OUTPUT_CHAR (asm_out_file
, x
);
1819 #ifdef ASM_OUTPUT_SHORT
1821 ASM_OUTPUT_SHORT (asm_out_file
, x
);
1825 #ifdef ASM_OUTPUT_INT
1827 ASM_OUTPUT_INT (asm_out_file
, x
);
1831 #ifdef ASM_OUTPUT_DOUBLE_INT
1833 ASM_OUTPUT_DOUBLE_INT (asm_out_file
, x
);
1837 #ifdef ASM_OUTPUT_QUADRUPLE_INT
1839 ASM_OUTPUT_QUADRUPLE_INT (asm_out_file
, x
);
1844 /* If we couldn't do it that way, there are two other possibilities: First,
1845 if the machine can output an explicit byte and this is a 1 byte constant,
1846 we can use ASM_OUTPUT_BYTE. */
1848 #ifdef ASM_OUTPUT_BYTE
1849 if (size
== 1 && GET_CODE (x
) == CONST_INT
)
1851 ASM_OUTPUT_BYTE (asm_out_file
, INTVAL (x
));
1856 /* Finally, if SIZE is larger than a single word, try to output the constant
1857 one word at a time. */
1859 if (size
> UNITS_PER_WORD
)
1862 enum machine_mode mode
1863 = mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
, 0);
1866 for (i
= 0; i
< size
/ UNITS_PER_WORD
; i
++)
1868 word
= operand_subword (x
, i
, 0, mode
);
1873 if (! assemble_integer (word
, UNITS_PER_WORD
, 0))
1877 if (i
== size
/ UNITS_PER_WORD
)
1879 /* If we output at least one word and then could not finish,
1880 there is no valid way to continue. */
1891 /* Assemble the floating-point constant D into an object of size MODE. */
1894 assemble_real (d
, mode
)
1896 enum machine_mode mode
;
1898 jmp_buf output_constant_handler
;
1900 if (setjmp (output_constant_handler
))
1902 error ("floating point trap outputting a constant");
1903 #ifdef REAL_IS_NOT_DOUBLE
1904 memset ((char *) &d
, 0, sizeof d
);
1911 set_float_handler (output_constant_handler
);
1915 #ifdef ASM_OUTPUT_BYTE_FLOAT
1917 ASM_OUTPUT_BYTE_FLOAT (asm_out_file
, d
);
1920 #ifdef ASM_OUTPUT_SHORT_FLOAT
1922 ASM_OUTPUT_SHORT_FLOAT (asm_out_file
, d
);
1925 #ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
1927 ASM_OUTPUT_THREE_QUARTER_FLOAT (asm_out_file
, d
);
1930 #ifdef ASM_OUTPUT_FLOAT
1932 ASM_OUTPUT_FLOAT (asm_out_file
, d
);
1936 #ifdef ASM_OUTPUT_DOUBLE
1938 ASM_OUTPUT_DOUBLE (asm_out_file
, d
);
1942 #ifdef ASM_OUTPUT_LONG_DOUBLE
1945 ASM_OUTPUT_LONG_DOUBLE (asm_out_file
, d
);
1953 set_float_handler (NULL_PTR
);
1956 /* Here we combine duplicate floating constants to make
1957 CONST_DOUBLE rtx's, and force those out to memory when necessary. */
1959 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair of ints.
1960 For an integer, I0 is the low-order word and I1 is the high-order word.
1961 For a real number, I0 is the word with the low address
1962 and I1 is the word with the high address. */
1965 immed_double_const (i0
, i1
, mode
)
1966 HOST_WIDE_INT i0
, i1
;
1967 enum machine_mode mode
;
1971 if (GET_MODE_CLASS (mode
) == MODE_INT
1972 || GET_MODE_CLASS (mode
) == MODE_PARTIAL_INT
)
1974 /* We clear out all bits that don't belong in MODE, unless they and our
1975 sign bit are all one. So we get either a reasonable negative value
1976 or a reasonable unsigned value for this mode. */
1977 int width
= GET_MODE_BITSIZE (mode
);
1978 if (width
< HOST_BITS_PER_WIDE_INT
1979 && ((i0
& ((HOST_WIDE_INT
) (-1) << (width
- 1)))
1980 != ((HOST_WIDE_INT
) (-1) << (width
- 1))))
1981 i0
&= ((HOST_WIDE_INT
) 1 << width
) - 1, i1
= 0;
1982 else if (width
== HOST_BITS_PER_WIDE_INT
1983 && ! (i1
== ~0 && i0
< 0))
1985 else if (width
> 2 * HOST_BITS_PER_WIDE_INT
)
1986 /* We cannot represent this value as a constant. */
1989 /* If this would be an entire word for the target, but is not for
1990 the host, then sign-extend on the host so that the number will look
1991 the same way on the host that it would on the target.
1993 For example, when building a 64 bit alpha hosted 32 bit sparc
1994 targeted compiler, then we want the 32 bit unsigned value -1 to be
1995 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
1996 The later confuses the sparc backend. */
1998 if (BITS_PER_WORD
< HOST_BITS_PER_WIDE_INT
&& BITS_PER_WORD
== width
1999 && (i0
& ((HOST_WIDE_INT
) 1 << (width
- 1))))
2000 i0
|= ((HOST_WIDE_INT
) (-1) << width
);
2002 /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a CONST_INT.
2004 ??? Strictly speaking, this is wrong if we create a CONST_INT
2005 for a large unsigned constant with the size of MODE being
2006 HOST_BITS_PER_WIDE_INT and later try to interpret that constant in a
2007 wider mode. In that case we will mis-interpret it as a negative
2010 Unfortunately, the only alternative is to make a CONST_DOUBLE
2011 for any constant in any mode if it is an unsigned constant larger
2012 than the maximum signed integer in an int on the host. However,
2013 doing this will break everyone that always expects to see a CONST_INT
2014 for SImode and smaller.
2016 We have always been making CONST_INTs in this case, so nothing new
2019 if (width
<= HOST_BITS_PER_WIDE_INT
)
2020 i1
= (i0
< 0) ? ~(HOST_WIDE_INT
) 0 : 0;
2022 /* If this integer fits in one word, return a CONST_INT. */
2023 if ((i1
== 0 && i0
>= 0)
2024 || (i1
== ~0 && i0
< 0))
2025 return GEN_INT (i0
);
2027 /* We use VOIDmode for integers. */
2031 /* Search the chain for an existing CONST_DOUBLE with the right value.
2032 If one is found, return it. */
2034 for (r
= const_double_chain
; r
; r
= CONST_DOUBLE_CHAIN (r
))
2035 if (CONST_DOUBLE_LOW (r
) == i0
&& CONST_DOUBLE_HIGH (r
) == i1
2036 && GET_MODE (r
) == mode
)
2039 /* No; make a new one and add it to the chain. */
2040 r
= gen_rtx_CONST_DOUBLE (mode
, const0_rtx
, i0
, i1
);
2042 /* Don't touch const_double_chain if not inside any function. */
2043 if (current_function_decl
!= 0)
2045 CONST_DOUBLE_CHAIN (r
) = const_double_chain
;
2046 const_double_chain
= r
;
2052 /* Return a CONST_DOUBLE for a specified `double' value
2053 and machine mode. */
2056 immed_real_const_1 (d
, mode
)
2058 enum machine_mode mode
;
2060 union real_extract u
;
2063 /* Get the desired `double' value as a sequence of ints
2064 since that is how they are stored in a CONST_DOUBLE. */
2068 /* Detect special cases. But be careful we don't use a CONST_DOUBLE
2069 that's from a parent function since it may be in its constant pool. */
2070 if (REAL_VALUES_IDENTICAL (dconst0
, d
)
2071 && (cfun
== 0 || decl_function_context (current_function_decl
) == 0))
2072 return CONST0_RTX (mode
);
2074 /* Check for NaN first, because some ports (specifically the i386) do not
2075 emit correct ieee-fp code by default, and thus will generate a core
2076 dump here if we pass a NaN to REAL_VALUES_EQUAL and if REAL_VALUES_EQUAL
2077 does a floating point comparison. */
2078 else if ((! REAL_VALUE_ISNAN (d
) && REAL_VALUES_EQUAL (dconst1
, d
))
2080 || decl_function_context (current_function_decl
) == 0))
2081 return CONST1_RTX (mode
);
2083 if (sizeof u
== sizeof (HOST_WIDE_INT
))
2084 return immed_double_const (u
.i
[0], 0, mode
);
2085 if (sizeof u
== 2 * sizeof (HOST_WIDE_INT
))
2086 return immed_double_const (u
.i
[0], u
.i
[1], mode
);
2088 /* The rest of this function handles the case where
2089 a float value requires more than 2 ints of space.
2090 It will be deleted as dead code on machines that don't need it. */
2092 /* Search the chain for an existing CONST_DOUBLE with the right value.
2093 If one is found, return it. */
2095 for (r
= const_double_chain
; r
; r
= CONST_DOUBLE_CHAIN (r
))
2096 if (! memcmp ((char *) &CONST_DOUBLE_LOW (r
), (char *) &u
, sizeof u
)
2097 && GET_MODE (r
) == mode
)
2100 /* No; make a new one and add it to the chain.
2102 We may be called by an optimizer which may be discarding any memory
2103 allocated during its processing (such as combine and loop). However,
2104 we will be leaving this constant on the chain, so we cannot tolerate
2106 r
= rtx_alloc (CONST_DOUBLE
);
2108 memcpy ((char *) &CONST_DOUBLE_LOW (r
), (char *) &u
, sizeof u
);
2110 /* If we aren't inside a function, don't put r on the
2111 const_double_chain. */
2112 if (current_function_decl
!= 0)
2114 CONST_DOUBLE_CHAIN (r
) = const_double_chain
;
2115 const_double_chain
= r
;
2118 CONST_DOUBLE_CHAIN (r
) = NULL_RTX
;
2120 /* Store const0_rtx in CONST_DOUBLE_MEM since this CONST_DOUBLE is on the
2121 chain, but has not been allocated memory. Actual use of CONST_DOUBLE_MEM
2122 is only through force_const_mem. */
2124 CONST_DOUBLE_MEM (r
) = const0_rtx
;
2129 /* Return a CONST_DOUBLE rtx for a value specified by EXP,
2130 which must be a REAL_CST tree node. */
2133 immed_real_const (exp
)
2136 return immed_real_const_1 (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)));
2139 /* At the end of a function, forget the memory-constants
2140 previously made for CONST_DOUBLEs. Mark them as not on real_constant_chain.
2141 Also clear out real_constant_chain and clear out all the chain-pointers. */
2144 clear_const_double_mem ()
2146 register rtx r
, next
;
2148 for (r
= const_double_chain
; r
; r
= next
)
2150 next
= CONST_DOUBLE_CHAIN (r
);
2151 CONST_DOUBLE_CHAIN (r
) = 0;
2152 CONST_DOUBLE_MEM (r
) = cc0_rtx
;
2154 const_double_chain
= 0;
2157 /* Given an expression EXP with a constant value,
2158 reduce it to the sum of an assembler symbol and an integer.
2159 Store them both in the structure *VALUE.
2160 Abort if EXP does not reduce. */
2165 HOST_WIDE_INT offset
;
2169 decode_addr_const (exp
, value
)
2171 struct addr_const
*value
;
2173 register tree target
= TREE_OPERAND (exp
, 0);
2174 register int offset
= 0;
2179 if (TREE_CODE (target
) == COMPONENT_REF
2180 && host_integerp (byte_position (TREE_OPERAND (target
, 1)), 0))
2183 offset
+= int_byte_position (TREE_OPERAND (target
, 1));
2184 target
= TREE_OPERAND (target
, 0);
2186 else if (TREE_CODE (target
) == ARRAY_REF
)
2188 offset
+= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target
)), 1)
2189 * tree_low_cst (TREE_OPERAND (target
, 1), 0));
2190 target
= TREE_OPERAND (target
, 0);
2196 switch (TREE_CODE (target
))
2200 x
= DECL_RTL (target
);
2204 x
= gen_rtx_MEM (FUNCTION_MODE
,
2205 gen_rtx_LABEL_REF (VOIDmode
,
2206 label_rtx (TREE_OPERAND (exp
, 0))));
2214 x
= TREE_CST_RTL (target
);
2221 if (GET_CODE (x
) != MEM
)
2226 value
->offset
= offset
;
2231 #ifdef ONLY_INT_FIELDS
2232 unsigned int kind
: 16;
2233 unsigned int mode
: 16;
2235 enum kind kind
: 16;
2236 enum machine_mode mode
: 16;
2239 union real_extract du
;
2240 struct addr_const addr
;
2241 struct {HOST_WIDE_INT high
, low
;} di
;
2245 /* Uniquize all constants that appear in memory.
2246 Each constant in memory thus far output is recorded
2247 in `const_hash_table' with a `struct constant_descriptor'
2248 that contains a polish representation of the value of
2251 We cannot store the trees in the hash table
2252 because the trees may be temporary. */
2254 struct constant_descriptor
2256 struct constant_descriptor
*next
;
2259 /* Make sure the data is reasonably aligned. */
2262 unsigned char contents
[1];
2263 #ifdef HAVE_LONG_DOUBLE
2272 #define MAX_HASH_TABLE 1009
2273 static struct constant_descriptor
*const_hash_table
[MAX_HASH_TABLE
];
2275 #define STRHASH(x) ((hashval_t)((long)(x) >> 3))
2277 struct deferred_string
2284 static htab_t const_str_htab
;
2286 /* Mark a const_hash_table descriptor for GC. */
2289 mark_const_hash_entry (ptr
)
2292 struct constant_descriptor
*desc
= * (struct constant_descriptor
**) ptr
;
2296 ggc_mark_rtx (desc
->rtl
);
2301 /* Mark the hash-table element X (which is really a pointer to an
2302 struct deferred_string *). */
2305 mark_const_str_htab_1 (x
, data
)
2307 void *data ATTRIBUTE_UNUSED
;
2309 ggc_mark_tree (((struct deferred_string
*) *x
)->exp
);
2313 /* Mark a const_str_htab for GC. */
2316 mark_const_str_htab (htab
)
2319 htab_traverse (*((htab_t
*) htab
), mark_const_str_htab_1
, NULL
);
2322 /* Returns a hash code for X (which is a really a
2323 struct deferred_string *). */
2326 const_str_htab_hash (x
)
2329 return STRHASH (((const struct deferred_string
*) x
)->label
);
2332 /* Returns non-zero if the value represented by X (which is really a
2333 struct deferred_string *) is the same as that given by Y
2334 (which is really a char *). */
2337 const_str_htab_eq (x
, y
)
2341 return (((const struct deferred_string
*) x
)->label
== (const char *) y
);
2344 /* Delete the hash table entry dfsp. */
2347 const_str_htab_del (dfsp
)
2353 /* Compute a hash code for a constant expression. */
2359 register const char *p
;
2360 register int len
, hi
, i
;
2361 register enum tree_code code
= TREE_CODE (exp
);
2363 /* Either set P and LEN to the address and len of something to hash and
2364 exit the switch or return a value. */
2369 p
= (char *) &TREE_INT_CST (exp
);
2370 len
= sizeof TREE_INT_CST (exp
);
2374 p
= (char *) &TREE_REAL_CST (exp
);
2375 len
= sizeof TREE_REAL_CST (exp
);
2379 p
= TREE_STRING_POINTER (exp
);
2380 len
= TREE_STRING_LENGTH (exp
);
2384 return (const_hash (TREE_REALPART (exp
)) * 5
2385 + const_hash (TREE_IMAGPART (exp
)));
2388 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2392 len
= int_size_in_bytes (TREE_TYPE (exp
));
2393 tmp
= (char *) alloca (len
);
2394 get_set_constructor_bytes (exp
, (unsigned char *) tmp
, len
);
2402 /* For record type, include the type in the hashing.
2403 We do not do so for array types
2404 because (1) the sizes of the elements are sufficient
2405 and (2) distinct array types can have the same constructor.
2406 Instead, we include the array size because the constructor could
2408 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
2409 hi
= ((unsigned long) TREE_TYPE (exp
) & ((1 << HASHBITS
) - 1))
2412 hi
= ((5 + int_size_in_bytes (TREE_TYPE (exp
)))
2413 & ((1 << HASHBITS
) - 1)) % MAX_HASH_TABLE
;
2415 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2416 if (TREE_VALUE (link
))
2418 = (hi
* 603 + const_hash (TREE_VALUE (link
))) % MAX_HASH_TABLE
;
2425 struct addr_const value
;
2427 decode_addr_const (exp
, &value
);
2428 if (GET_CODE (value
.base
) == SYMBOL_REF
)
2430 /* Don't hash the address of the SYMBOL_REF;
2431 only use the offset and the symbol name. */
2433 p
= XSTR (value
.base
, 0);
2434 for (i
= 0; p
[i
] != 0; i
++)
2435 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2437 else if (GET_CODE (value
.base
) == LABEL_REF
)
2438 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2442 hi
&= (1 << HASHBITS
) - 1;
2443 hi
%= MAX_HASH_TABLE
;
2449 return (const_hash (TREE_OPERAND (exp
, 0)) * 9
2450 + const_hash (TREE_OPERAND (exp
, 1)));
2454 case NON_LVALUE_EXPR
:
2455 return const_hash (TREE_OPERAND (exp
, 0)) * 7 + 2;
2458 /* A language specific constant. Just hash the code. */
2459 return code
% MAX_HASH_TABLE
;
2462 /* Compute hashing function */
2464 for (i
= 0; i
< len
; i
++)
2465 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2467 hi
&= (1 << HASHBITS
) - 1;
2468 hi
%= MAX_HASH_TABLE
;
2472 /* Compare a constant expression EXP with a constant-descriptor DESC.
2473 Return 1 if DESC describes a constant with the same value as EXP. */
2476 compare_constant (exp
, desc
)
2478 struct constant_descriptor
*desc
;
2480 return 0 != compare_constant_1 (exp
, desc
->u
.contents
);
2483 /* Compare constant expression EXP with a substring P of a constant descriptor.
2484 If they match, return a pointer to the end of the substring matched.
2485 If they do not match, return 0.
2487 Since descriptors are written in polish prefix notation,
2488 this function can be used recursively to test one operand of EXP
2489 against a subdescriptor, and if it succeeds it returns the
2490 address of the subdescriptor for the next operand. */
2492 static const unsigned char *
2493 compare_constant_1 (exp
, p
)
2495 const unsigned char *p
;
2497 register const unsigned char *strp
;
2499 register enum tree_code code
= TREE_CODE (exp
);
2501 if (code
!= (enum tree_code
) *p
++)
2504 /* Either set STRP, P and LEN to pointers and length to compare and exit the
2505 switch, or return the result of the comparison. */
2510 /* Integer constants are the same only if the same width of type. */
2511 if (*p
++ != TYPE_PRECISION (TREE_TYPE (exp
)))
2514 strp
= (unsigned char *) &TREE_INT_CST (exp
);
2515 len
= sizeof TREE_INT_CST (exp
);
2519 /* Real constants are the same only if the same width of type. */
2520 if (*p
++ != TYPE_PRECISION (TREE_TYPE (exp
)))
2523 strp
= (unsigned char *) &TREE_REAL_CST (exp
);
2524 len
= sizeof TREE_REAL_CST (exp
);
2528 if (flag_writable_strings
)
2531 if ((enum machine_mode
) *p
++ != TYPE_MODE (TREE_TYPE (exp
)))
2534 strp
= (const unsigned char *)TREE_STRING_POINTER (exp
);
2535 len
= TREE_STRING_LENGTH (exp
);
2536 if (memcmp ((char *) &TREE_STRING_LENGTH (exp
), p
,
2537 sizeof TREE_STRING_LENGTH (exp
)))
2540 p
+= sizeof TREE_STRING_LENGTH (exp
);
2544 p
= compare_constant_1 (TREE_REALPART (exp
), p
);
2548 return compare_constant_1 (TREE_IMAGPART (exp
), p
);
2551 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2553 int xlen
= len
= int_size_in_bytes (TREE_TYPE (exp
));
2554 unsigned char *tmp
= (unsigned char *) alloca (len
);
2556 get_set_constructor_bytes (exp
, tmp
, len
);
2557 strp
= (unsigned char *) tmp
;
2558 if (memcmp ((char *) &xlen
, p
, sizeof xlen
))
2567 int length
= list_length (CONSTRUCTOR_ELTS (exp
));
2569 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (exp
));
2570 int have_purpose
= 0;
2572 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2573 if (TREE_PURPOSE (link
))
2576 if (memcmp ((char *) &length
, p
, sizeof length
))
2581 /* For record constructors, insist that the types match.
2582 For arrays, just verify both constructors are for arrays.
2583 Then insist that either both or none have any TREE_PURPOSE
2585 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
2586 type
= TREE_TYPE (exp
);
2590 if (memcmp ((char *) &type
, p
, sizeof type
))
2593 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2595 if (memcmp ((char *) &mode
, p
, sizeof mode
))
2603 if (memcmp ((char *) &have_purpose
, p
, sizeof have_purpose
))
2606 p
+= sizeof have_purpose
;
2608 /* For arrays, insist that the size in bytes match. */
2609 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2611 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (exp
));
2613 if (memcmp ((char *) &size
, p
, sizeof size
))
2619 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2621 if (TREE_VALUE (link
))
2623 if ((p
= compare_constant_1 (TREE_VALUE (link
), p
)) == 0)
2630 if (memcmp ((char *) &zero
, p
, sizeof zero
))
2636 if (TREE_PURPOSE (link
)
2637 && TREE_CODE (TREE_PURPOSE (link
)) == FIELD_DECL
)
2639 if (memcmp ((char *) &TREE_PURPOSE (link
), p
,
2640 sizeof TREE_PURPOSE (link
)))
2643 p
+= sizeof TREE_PURPOSE (link
);
2645 else if (TREE_PURPOSE (link
))
2647 if ((p
= compare_constant_1 (TREE_PURPOSE (link
), p
)) == 0)
2650 else if (have_purpose
)
2654 if (memcmp ((char *) &zero
, p
, sizeof zero
))
2666 struct addr_const value
;
2668 decode_addr_const (exp
, &value
);
2669 strp
= (unsigned char *) &value
.offset
;
2670 len
= sizeof value
.offset
;
2671 /* Compare the offset. */
2673 if (*p
++ != *strp
++)
2676 /* Compare symbol name. */
2677 strp
= (const unsigned char *) XSTR (value
.base
, 0);
2678 len
= strlen ((const char *) strp
) + 1;
2685 p
= compare_constant_1 (TREE_OPERAND (exp
, 0), p
);
2689 return compare_constant_1 (TREE_OPERAND (exp
, 1), p
);
2693 case NON_LVALUE_EXPR
:
2694 return compare_constant_1 (TREE_OPERAND (exp
, 0), p
);
2697 if (lang_expand_constant
)
2699 exp
= (*lang_expand_constant
) (exp
);
2700 return compare_constant_1 (exp
, p
);
2705 /* Compare constant contents. */
2707 if (*p
++ != *strp
++)
2713 /* Construct a constant descriptor for the expression EXP.
2714 It is up to the caller to enter the descriptor in the hash table. */
2716 static struct constant_descriptor
*
2717 record_constant (exp
)
2720 struct constant_descriptor
*next
= 0;
2725 /* Make a struct constant_descriptor. The first three pointers will
2726 be filled in later. Here we just leave space for them. */
2728 obstack_grow (&permanent_obstack
, (char *) &next
, sizeof next
);
2729 obstack_grow (&permanent_obstack
, (char *) &label
, sizeof label
);
2730 obstack_grow (&permanent_obstack
, (char *) &rtl
, sizeof rtl
);
2732 /* Align the descriptor for the data payload. */
2733 pad
= (offsetof (struct constant_descriptor
, u
)
2734 - offsetof(struct constant_descriptor
, rtl
)
2735 - sizeof(next
->rtl
));
2737 obstack_blank (&permanent_obstack
, pad
);
2739 record_constant_1 (exp
);
2740 return (struct constant_descriptor
*) obstack_finish (&permanent_obstack
);
2743 /* Add a description of constant expression EXP
2744 to the object growing in `permanent_obstack'.
2745 No need to return its address; the caller will get that
2746 from the obstack when the object is complete. */
2749 record_constant_1 (exp
)
2752 register const unsigned char *strp
;
2754 register enum tree_code code
= TREE_CODE (exp
);
2756 obstack_1grow (&permanent_obstack
, (unsigned int) code
);
2761 obstack_1grow (&permanent_obstack
, TYPE_PRECISION (TREE_TYPE (exp
)));
2762 strp
= (unsigned char *) &TREE_INT_CST (exp
);
2763 len
= sizeof TREE_INT_CST (exp
);
2767 obstack_1grow (&permanent_obstack
, TYPE_PRECISION (TREE_TYPE (exp
)));
2768 strp
= (unsigned char *) &TREE_REAL_CST (exp
);
2769 len
= sizeof TREE_REAL_CST (exp
);
2773 if (flag_writable_strings
)
2776 obstack_1grow (&permanent_obstack
, TYPE_MODE (TREE_TYPE (exp
)));
2777 strp
= (const unsigned char *) TREE_STRING_POINTER (exp
);
2778 len
= TREE_STRING_LENGTH (exp
);
2779 obstack_grow (&permanent_obstack
, (char *) &TREE_STRING_LENGTH (exp
),
2780 sizeof TREE_STRING_LENGTH (exp
));
2784 record_constant_1 (TREE_REALPART (exp
));
2785 record_constant_1 (TREE_IMAGPART (exp
));
2789 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2791 int nbytes
= int_size_in_bytes (TREE_TYPE (exp
));
2792 obstack_grow (&permanent_obstack
, &nbytes
, sizeof (nbytes
));
2793 obstack_blank (&permanent_obstack
, nbytes
);
2794 get_set_constructor_bytes
2795 (exp
, (unsigned char *) permanent_obstack
.next_free
-nbytes
,
2802 int length
= list_length (CONSTRUCTOR_ELTS (exp
));
2803 enum machine_mode mode
= TYPE_MODE (TREE_TYPE (exp
));
2805 int have_purpose
= 0;
2807 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2808 if (TREE_PURPOSE (link
))
2811 obstack_grow (&permanent_obstack
, (char *) &length
, sizeof length
);
2813 /* For record constructors, insist that the types match.
2814 For arrays, just verify both constructors are for arrays
2815 of the same mode. Then insist that either both or none
2816 have any TREE_PURPOSE values. */
2817 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
2818 type
= TREE_TYPE (exp
);
2822 obstack_grow (&permanent_obstack
, (char *) &type
, sizeof type
);
2823 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2824 obstack_grow (&permanent_obstack
, &mode
, sizeof mode
);
2826 obstack_grow (&permanent_obstack
, (char *) &have_purpose
,
2827 sizeof have_purpose
);
2829 /* For arrays, insist that the size in bytes match. */
2830 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2832 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (exp
));
2833 obstack_grow (&permanent_obstack
, (char *) &size
, sizeof size
);
2836 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2838 if (TREE_VALUE (link
))
2839 record_constant_1 (TREE_VALUE (link
));
2844 obstack_grow (&permanent_obstack
,
2845 (char *) &zero
, sizeof zero
);
2848 if (TREE_PURPOSE (link
)
2849 && TREE_CODE (TREE_PURPOSE (link
)) == FIELD_DECL
)
2850 obstack_grow (&permanent_obstack
,
2851 (char *) &TREE_PURPOSE (link
),
2852 sizeof TREE_PURPOSE (link
));
2853 else if (TREE_PURPOSE (link
))
2854 record_constant_1 (TREE_PURPOSE (link
));
2855 else if (have_purpose
)
2859 obstack_grow (&permanent_obstack
,
2860 (char *) &zero
, sizeof zero
);
2868 struct addr_const value
;
2870 decode_addr_const (exp
, &value
);
2871 /* Record the offset. */
2872 obstack_grow (&permanent_obstack
,
2873 (char *) &value
.offset
, sizeof value
.offset
);
2875 switch (GET_CODE (value
.base
))
2878 /* Record the symbol name. */
2879 obstack_grow (&permanent_obstack
, XSTR (value
.base
, 0),
2880 strlen (XSTR (value
.base
, 0)) + 1);
2883 /* Record the address of the CODE_LABEL. It may not have
2884 been emitted yet, so it's UID may be zero. But pointer
2885 identity is good enough. */
2886 obstack_grow (&permanent_obstack
, &XEXP (value
.base
, 0),
2898 record_constant_1 (TREE_OPERAND (exp
, 0));
2899 record_constant_1 (TREE_OPERAND (exp
, 1));
2904 case NON_LVALUE_EXPR
:
2905 record_constant_1 (TREE_OPERAND (exp
, 0));
2909 if (lang_expand_constant
)
2911 exp
= (*lang_expand_constant
) (exp
);
2912 record_constant_1 (exp
);
2917 /* Record constant contents. */
2918 obstack_grow (&permanent_obstack
, strp
, len
);
2921 /* Record a list of constant expressions that were passed to
2922 output_constant_def but that could not be output right away. */
2924 struct deferred_constant
2926 struct deferred_constant
*next
;
2932 static struct deferred_constant
*deferred_constants
;
2934 /* Another list of constants which should be output after the
2936 static struct deferred_constant
*after_function_constants
;
2938 /* Nonzero means defer output of addressed subconstants
2939 (i.e., those for which output_constant_def is called.) */
2940 static int defer_addressed_constants_flag
;
2942 /* Start deferring output of subconstants. */
2945 defer_addressed_constants ()
2947 defer_addressed_constants_flag
++;
2950 /* Stop deferring output of subconstants,
2951 and output now all those that have been deferred. */
2954 output_deferred_addressed_constants ()
2956 struct deferred_constant
*p
, *next
;
2958 defer_addressed_constants_flag
--;
2960 if (defer_addressed_constants_flag
> 0)
2963 for (p
= deferred_constants
; p
; p
= next
)
2965 output_constant_def_contents (p
->exp
, p
->reloc
, p
->labelno
);
2970 deferred_constants
= 0;
2973 /* Output any constants which should appear after a function. */
2976 output_after_function_constants ()
2978 struct deferred_constant
*p
, *next
;
2980 for (p
= after_function_constants
; p
; p
= next
)
2982 output_constant_def_contents (p
->exp
, p
->reloc
, p
->labelno
);
2987 after_function_constants
= 0;
2990 /* Make a copy of the whole tree structure for a constant.
2991 This handles the same types of nodes that compare_constant
2992 and record_constant handle. */
2998 switch (TREE_CODE (exp
))
3001 /* For ADDR_EXPR, we do not want to copy the decl whose address
3002 is requested. We do want to copy constants though. */
3003 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp
, 0))) == 'c')
3004 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
3005 copy_constant (TREE_OPERAND (exp
, 0)));
3007 return copy_node (exp
);
3012 return copy_node (exp
);
3015 return build_complex (TREE_TYPE (exp
),
3016 copy_constant (TREE_REALPART (exp
)),
3017 copy_constant (TREE_IMAGPART (exp
)));
3021 return build (TREE_CODE (exp
), TREE_TYPE (exp
),
3022 copy_constant (TREE_OPERAND (exp
, 0)),
3023 copy_constant (TREE_OPERAND (exp
, 1)));
3027 case NON_LVALUE_EXPR
:
3028 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
3029 copy_constant (TREE_OPERAND (exp
, 0)));
3033 tree copy
= copy_node (exp
);
3034 tree list
= copy_list (CONSTRUCTOR_ELTS (exp
));
3037 CONSTRUCTOR_ELTS (copy
) = list
;
3038 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
3039 TREE_VALUE (tail
) = copy_constant (TREE_VALUE (tail
));
3040 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
3041 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
3042 TREE_PURPOSE (tail
) = copy_constant (TREE_PURPOSE (tail
));
3052 /* Return an rtx representing a reference to constant data in memory
3053 for the constant expression EXP.
3055 If assembler code for such a constant has already been output,
3056 return an rtx to refer to it.
3057 Otherwise, output such a constant in memory (or defer it for later)
3058 and generate an rtx for it.
3060 If DEFER is non-zero, the output of string constants can be deferred
3061 and output only if referenced in the function after all optimizations.
3063 The TREE_CST_RTL of EXP is set up to point to that rtx.
3064 The const_hash_table records which constants already have label strings. */
3067 output_constant_def (exp
, defer
)
3072 register struct constant_descriptor
*desc
;
3073 struct deferred_string
**defstr
;
3077 int after_function
= 0;
3080 if (TREE_CST_RTL (exp
))
3081 return TREE_CST_RTL (exp
);
3083 /* Make sure any other constants whose addresses appear in EXP
3084 are assigned label numbers. */
3086 reloc
= output_addressed_constants (exp
);
3088 /* Compute hash code of EXP. Search the descriptors for that hash code
3089 to see if any of them describes EXP. If yes, the descriptor records
3090 the label number already assigned. */
3092 hash
= const_hash (exp
) % MAX_HASH_TABLE
;
3094 for (desc
= const_hash_table
[hash
]; desc
; desc
= desc
->next
)
3095 if (compare_constant (exp
, desc
))
3100 /* No constant equal to EXP is known to have been output.
3101 Make a constant descriptor to enter EXP in the hash table.
3102 Assign the label number and record it in the descriptor for
3103 future calls to this function to find. */
3105 /* Create a string containing the label name, in LABEL. */
3106 labelno
= const_labelno
++;
3107 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", labelno
);
3109 desc
= record_constant (exp
);
3110 desc
->next
= const_hash_table
[hash
];
3111 desc
->label
= ggc_strdup (label
);
3112 const_hash_table
[hash
] = desc
;
3114 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3116 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp
)),
3117 gen_rtx_SYMBOL_REF (Pmode
, desc
->label
));
3119 set_mem_attributes (desc
->rtl
, exp
, 1);
3124 TREE_CST_RTL (exp
) = desc
->rtl
;
3126 /* Optionally set flags or add text to the name to record information
3127 such as that it is a function name. If the name is changed, the macro
3128 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
3129 #ifdef ENCODE_SECTION_INFO
3130 /* A previously-processed constant would already have section info
3134 ENCODE_SECTION_INFO (exp
);
3135 desc
->rtl
= TREE_CST_RTL (exp
);
3136 desc
->label
= XSTR (XEXP (desc
->rtl
, 0), 0);
3140 #ifdef CONSTANT_AFTER_FUNCTION_P
3141 if (current_function_decl
!= 0
3142 && CONSTANT_AFTER_FUNCTION_P (exp
))
3147 && STRING_POOL_ADDRESS_P (XEXP (desc
->rtl
, 0))
3148 && (!defer
|| defer_addressed_constants_flag
|| after_function
))
3150 defstr
= (struct deferred_string
**)
3151 htab_find_slot_with_hash (const_str_htab
, desc
->label
,
3152 STRHASH (desc
->label
), NO_INSERT
);
3155 /* If the string is currently deferred but we need to output it now,
3156 remove it from deferred string hash table. */
3158 labelno
= (*defstr
)->labelno
;
3159 STRING_POOL_ADDRESS_P (XEXP (desc
->rtl
, 0)) = 0;
3160 htab_clear_slot (const_str_htab
, (void **) defstr
);
3164 /* If this is the first time we've seen this particular constant,
3165 output it (or defer its output for later). */
3168 if (defer_addressed_constants_flag
|| after_function
)
3170 struct deferred_constant
*p
;
3171 p
= (struct deferred_constant
*) xmalloc (sizeof (struct deferred_constant
));
3173 p
->exp
= copy_constant (exp
);
3175 p
->labelno
= labelno
;
3178 p
->next
= after_function_constants
;
3179 after_function_constants
= p
;
3183 p
->next
= deferred_constants
;
3184 deferred_constants
= p
;
3189 /* Do no output if -fsyntax-only. */
3190 if (! flag_syntax_only
)
3192 if (TREE_CODE (exp
) != STRING_CST
3194 || flag_writable_strings
3195 || (defstr
= (struct deferred_string
**)
3196 htab_find_slot_with_hash (const_str_htab
,
3198 STRHASH (desc
->label
),
3200 output_constant_def_contents (exp
, reloc
, labelno
);
3203 struct deferred_string
*p
;
3205 p
= (struct deferred_string
*)
3206 xmalloc (sizeof (struct deferred_string
));
3208 p
->exp
= copy_constant (exp
);
3209 p
->label
= desc
->label
;
3210 p
->labelno
= labelno
;
3212 STRING_POOL_ADDRESS_P (XEXP (desc
->rtl
, 0)) = 1;
3218 return TREE_CST_RTL (exp
);
3221 /* Now output assembler code to define the label for EXP,
3222 and follow it with the data of EXP. */
3225 output_constant_def_contents (exp
, reloc
, labelno
)
3232 if (IN_NAMED_SECTION (exp
))
3233 named_section (exp
, NULL
, reloc
);
3236 /* First switch to text section, except for writable strings. */
3237 #ifdef SELECT_SECTION
3238 SELECT_SECTION (exp
, reloc
);
3240 if (((TREE_CODE (exp
) == STRING_CST
) && flag_writable_strings
)
3241 || (flag_pic
&& reloc
))
3244 readonly_data_section ();
3248 /* Align the location counter as required by EXP's data type. */
3249 align
= TYPE_ALIGN (TREE_TYPE (exp
));
3250 #ifdef CONSTANT_ALIGNMENT
3251 align
= CONSTANT_ALIGNMENT (exp
, align
);
3254 if (align
> BITS_PER_UNIT
)
3255 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
3257 /* Output the label itself. */
3258 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LC", labelno
);
3260 /* Output the value of EXP. */
3261 output_constant (exp
,
3262 (TREE_CODE (exp
) == STRING_CST
3263 ? TREE_STRING_LENGTH (exp
)
3264 : int_size_in_bytes (TREE_TYPE (exp
))));
3268 /* Structure to represent sufficient information about a constant so that
3269 it can be output when the constant pool is output, so that function
3270 integration can be done, and to simplify handling on machines that reference
3271 constant pool as base+displacement. */
3273 struct pool_constant
3275 struct constant_descriptor
*desc
;
3276 struct pool_constant
*next
, *next_sym
;
3279 enum machine_mode mode
;
3286 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
3287 The argument is XSTR (... , 0) */
3289 #define SYMHASH(LABEL) \
3290 ((((unsigned long) (LABEL)) & ((1 << HASHBITS) - 1)) % MAX_RTX_HASH_TABLE)
3292 /* Initialize constant pool hashing for a new function. */
3295 init_varasm_status (f
)
3298 struct varasm_status
*p
;
3299 p
= (struct varasm_status
*) xmalloc (sizeof (struct varasm_status
));
3301 p
->x_const_rtx_hash_table
3302 = ((struct constant_descriptor
**)
3303 xcalloc (MAX_RTX_HASH_TABLE
, sizeof (struct constant_descriptor
*)));
3304 p
->x_const_rtx_sym_hash_table
3305 = ((struct pool_constant
**)
3306 xcalloc (MAX_RTX_HASH_TABLE
, sizeof (struct pool_constant
*)));
3308 p
->x_first_pool
= p
->x_last_pool
= 0;
3309 p
->x_pool_offset
= 0;
3310 p
->x_const_double_chain
= 0;
3313 /* Mark PC for GC. */
3316 mark_pool_constant (pc
)
3317 struct pool_constant
*pc
;
3322 ggc_mark_rtx (pc
->constant
);
3327 /* Mark P for GC. */
3330 mark_varasm_status (p
)
3331 struct varasm_status
*p
;
3336 mark_pool_constant (p
->x_first_pool
);
3337 ggc_mark_rtx (p
->x_const_double_chain
);
3340 /* Clear out all parts of the state in F that can safely be discarded
3341 after the function has been compiled, to let garbage collection
3342 reclaim the memory. */
3345 free_varasm_status (f
)
3348 struct varasm_status
*p
;
3353 /* Clear out the hash tables. */
3354 for (i
= 0; i
< MAX_RTX_HASH_TABLE
; ++i
)
3356 struct constant_descriptor
* cd
;
3358 cd
= p
->x_const_rtx_hash_table
[i
];
3360 struct constant_descriptor
* next
= cd
->next
;
3366 free (p
->x_const_rtx_hash_table
);
3367 free (p
->x_const_rtx_sym_hash_table
);
3372 enum kind
{ RTX_DOUBLE
, RTX_INT
};
3374 /* Express an rtx for a constant integer (perhaps symbolic)
3375 as the sum of a symbol or label plus an explicit integer.
3376 They are stored into VALUE. */
3379 decode_rtx_const (mode
, x
, value
)
3380 enum machine_mode mode
;
3382 struct rtx_const
*value
;
3384 /* Clear the whole structure, including any gaps. */
3385 memset (value
, 0, sizeof (struct rtx_const
));
3387 value
->kind
= RTX_INT
; /* Most usual kind. */
3390 switch (GET_CODE (x
))
3393 value
->kind
= RTX_DOUBLE
;
3394 if (GET_MODE (x
) != VOIDmode
)
3396 value
->mode
= GET_MODE (x
);
3397 memcpy ((char *) &value
->un
.du
,
3398 (char *) &CONST_DOUBLE_LOW (x
), sizeof value
->un
.du
);
3402 value
->un
.di
.low
= CONST_DOUBLE_LOW (x
);
3403 value
->un
.di
.high
= CONST_DOUBLE_HIGH (x
);
3408 value
->un
.addr
.offset
= INTVAL (x
);
3414 value
->un
.addr
.base
= x
;
3419 if (GET_CODE (x
) == PLUS
&& GET_CODE (XEXP (x
, 1)) == CONST_INT
)
3421 value
->un
.addr
.base
= XEXP (x
, 0);
3422 value
->un
.addr
.offset
= INTVAL (XEXP (x
, 1));
3424 else if (GET_CODE (x
) == MINUS
&& GET_CODE (XEXP (x
, 1)) == CONST_INT
)
3426 value
->un
.addr
.base
= XEXP (x
, 0);
3427 value
->un
.addr
.offset
= - INTVAL (XEXP (x
, 1));
3431 value
->un
.addr
.base
= x
;
3432 value
->un
.addr
.offset
= 0;
3440 if (value
->kind
== RTX_INT
&& value
->un
.addr
.base
!= 0)
3441 switch (GET_CODE (value
->un
.addr
.base
))
3444 /* Use the string's address, not the SYMBOL_REF's address,
3445 for the sake of addresses of library routines. */
3446 value
->un
.addr
.base
= (rtx
) XSTR (value
->un
.addr
.base
, 0);
3450 /* For a LABEL_REF, compare labels. */
3451 value
->un
.addr
.base
= XEXP (value
->un
.addr
.base
, 0);
3458 /* Given a MINUS expression, simplify it if both sides
3459 include the same symbol. */
3462 simplify_subtraction (x
)
3465 struct rtx_const val0
, val1
;
3467 decode_rtx_const (GET_MODE (x
), XEXP (x
, 0), &val0
);
3468 decode_rtx_const (GET_MODE (x
), XEXP (x
, 1), &val1
);
3470 if (val0
.un
.addr
.base
== val1
.un
.addr
.base
)
3471 return GEN_INT (val0
.un
.addr
.offset
- val1
.un
.addr
.offset
);
3475 /* Compute a hash code for a constant RTL expression. */
3478 const_hash_rtx (mode
, x
)
3479 enum machine_mode mode
;
3485 struct rtx_const value
;
3486 decode_rtx_const (mode
, x
, &value
);
3488 /* Compute hashing function */
3490 for (i
= 0; i
< sizeof value
/ sizeof (int); i
++)
3491 hi
+= ((int *) &value
)[i
];
3493 hi
&= (1 << HASHBITS
) - 1;
3494 hi
%= MAX_RTX_HASH_TABLE
;
3498 /* Compare a constant rtl object X with a constant-descriptor DESC.
3499 Return 1 if DESC describes a constant with the same value as X. */
3502 compare_constant_rtx (mode
, x
, desc
)
3503 enum machine_mode mode
;
3505 struct constant_descriptor
*desc
;
3507 register int *p
= (int *) desc
->u
.contents
;
3510 struct rtx_const value
;
3512 decode_rtx_const (mode
, x
, &value
);
3513 strp
= (int *) &value
;
3514 len
= sizeof value
/ sizeof (int);
3516 /* Compare constant contents. */
3518 if (*p
++ != *strp
++)
3524 /* Construct a constant descriptor for the rtl-expression X.
3525 It is up to the caller to enter the descriptor in the hash table. */
3527 static struct constant_descriptor
*
3528 record_constant_rtx (mode
, x
)
3529 enum machine_mode mode
;
3532 struct constant_descriptor
*ptr
;
3534 ptr
= ((struct constant_descriptor
*)
3535 xcalloc (1, (offsetof (struct constant_descriptor
, u
)
3536 + sizeof (struct rtx_const
))));
3537 decode_rtx_const (mode
, x
, (struct rtx_const
*) ptr
->u
.contents
);
3542 /* Given a constant rtx X, make (or find) a memory constant for its value
3543 and return a MEM rtx to refer to it in memory. */
3546 force_const_mem (mode
, x
)
3547 enum machine_mode mode
;
3551 register struct constant_descriptor
*desc
;
3553 const char *found
= 0;
3556 /* If we want this CONST_DOUBLE in the same mode as it is in memory
3557 (this will always be true for floating CONST_DOUBLEs that have been
3558 placed in memory, but not for VOIDmode (integer) CONST_DOUBLEs),
3559 use the previous copy. Otherwise, make a new one. Note that in
3560 the unlikely event that this same CONST_DOUBLE is used in two different
3561 modes in an alternating fashion, we will allocate a lot of different
3562 memory locations, but this should be extremely rare. */
3564 if (GET_CODE (x
) == CONST_DOUBLE
3565 && GET_CODE (CONST_DOUBLE_MEM (x
)) == MEM
3566 && GET_MODE (CONST_DOUBLE_MEM (x
)) == mode
)
3567 return CONST_DOUBLE_MEM (x
);
3569 /* Compute hash code of X. Search the descriptors for that hash code
3570 to see if any of them describes X. If yes, the descriptor records
3571 the label number already assigned. */
3573 hash
= const_hash_rtx (mode
, x
);
3575 for (desc
= const_rtx_hash_table
[hash
]; desc
; desc
= desc
->next
)
3576 if (compare_constant_rtx (mode
, x
, desc
))
3578 found
= desc
->label
;
3584 register struct pool_constant
*pool
;
3587 /* No constant equal to X is known to have been output.
3588 Make a constant descriptor to enter X in the hash table.
3589 Assign the label number and record it in the descriptor for
3590 future calls to this function to find. */
3592 desc
= record_constant_rtx (mode
, x
);
3593 desc
->next
= const_rtx_hash_table
[hash
];
3594 const_rtx_hash_table
[hash
] = desc
;
3596 /* Align the location counter as required by EXP's data type. */
3597 align
= (mode
== VOIDmode
) ? UNITS_PER_WORD
: GET_MODE_SIZE (mode
);
3598 if (align
> BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
3599 align
= BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
;
3600 #ifdef CONSTANT_ALIGNMENT
3601 align
= CONSTANT_ALIGNMENT (make_tree (type_for_mode (mode
, 0), x
),
3602 align
* BITS_PER_UNIT
) / BITS_PER_UNIT
;
3605 pool_offset
+= align
- 1;
3606 pool_offset
&= ~ (align
- 1);
3608 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3610 pool
= (struct pool_constant
*) ggc_alloc (sizeof (struct pool_constant
));
3614 pool
->labelno
= const_labelno
;
3615 pool
->align
= align
;
3616 pool
->offset
= pool_offset
;
3623 last_pool
->next
= pool
;
3626 pool_offset
+= GET_MODE_SIZE (mode
);
3628 /* Create a string containing the label name, in LABEL. */
3629 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3633 desc
->label
= found
= ggc_strdup (label
);
3635 /* Add label to symbol hash table. */
3636 hash
= SYMHASH (found
);
3637 pool
->label
= found
;
3638 pool
->next_sym
= const_rtx_sym_hash_table
[hash
];
3639 const_rtx_sym_hash_table
[hash
] = pool
;
3642 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3644 def
= gen_rtx_MEM (mode
, gen_rtx_SYMBOL_REF (Pmode
, found
));
3645 set_mem_attributes (def
, type_for_mode (mode
, 0), 1);
3646 RTX_UNCHANGING_P (def
) = 1;
3648 /* Mark the symbol_ref as belonging to this constants pool. */
3649 CONSTANT_POOL_ADDRESS_P (XEXP (def
, 0)) = 1;
3650 current_function_uses_const_pool
= 1;
3652 if (GET_CODE (x
) == CONST_DOUBLE
)
3654 if (CONST_DOUBLE_MEM (x
) == cc0_rtx
)
3656 CONST_DOUBLE_CHAIN (x
) = const_double_chain
;
3657 const_double_chain
= x
;
3659 CONST_DOUBLE_MEM (x
) = def
;
3665 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3666 the corresponding pool_constant structure. */
3668 static struct pool_constant
*
3669 find_pool_constant (f
, addr
)
3673 struct pool_constant
*pool
;
3674 const char *label
= XSTR (addr
, 0);
3676 for (pool
= f
->varasm
->x_const_rtx_sym_hash_table
[SYMHASH (label
)]; pool
;
3677 pool
= pool
->next_sym
)
3678 if (pool
->label
== label
)
3684 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3687 get_pool_constant (addr
)
3690 return (find_pool_constant (cfun
, addr
))->constant
;
3693 /* Likewise, but for the constant pool of a specific function. */
3696 get_pool_constant_for_function (f
, addr
)
3700 return (find_pool_constant (f
, addr
))->constant
;
3703 /* Similar, return the mode. */
3706 get_pool_mode (addr
)
3709 return (find_pool_constant (cfun
, addr
))->mode
;
3713 get_pool_mode_for_function (f
, addr
)
3717 return (find_pool_constant (f
, addr
))->mode
;
3720 /* Similar, return the offset in the constant pool. */
3723 get_pool_offset (addr
)
3726 return (find_pool_constant (cfun
, addr
))->offset
;
3729 /* Return the size of the constant pool. */
3737 /* Write all the constants in the constant pool. */
3740 output_constant_pool (fnname
, fndecl
)
3741 const char *fnname ATTRIBUTE_UNUSED
;
3742 tree fndecl ATTRIBUTE_UNUSED
;
3744 struct pool_constant
*pool
;
3746 union real_extract u
;
3748 /* It is possible for gcc to call force_const_mem and then to later
3749 discard the instructions which refer to the constant. In such a
3750 case we do not need to output the constant. */
3751 mark_constant_pool ();
3753 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3754 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool_offset
);
3757 for (pool
= first_pool
; pool
; pool
= pool
->next
)
3766 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3767 whose CODE_LABEL has been deleted. This can occur if a jump table
3768 is eliminated by optimization. If so, write a constant of zero
3769 instead. Note that this can also happen by turning the
3770 CODE_LABEL into a NOTE. */
3771 /* ??? This seems completely and utterly wrong. Certainly it's
3772 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3773 functioning even with INSN_DELETED_P and friends. */
3776 switch (GET_CODE (x
))
3779 if (GET_CODE (XEXP (x
, 0)) != PLUS
3780 || GET_CODE (XEXP (XEXP (x
, 0), 0)) != LABEL_REF
)
3782 tmp
= XEXP (XEXP (x
, 0), 0);
3787 if (INSN_DELETED_P (tmp
)
3788 || (GET_CODE (tmp
) == NOTE
3789 && NOTE_LINE_NUMBER (tmp
) == NOTE_INSN_DELETED
))
3800 /* First switch to correct section. */
3801 #ifdef SELECT_RTX_SECTION
3802 SELECT_RTX_SECTION (pool
->mode
, x
);
3804 readonly_data_section ();
3807 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3808 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, pool
->mode
,
3809 pool
->align
, pool
->labelno
, done
);
3812 if (pool
->align
> 1)
3813 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (pool
->align
));
3815 /* Output the label. */
3816 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LC", pool
->labelno
);
3818 /* Output the value of the constant itself. */
3819 switch (GET_MODE_CLASS (pool
->mode
))
3822 if (GET_CODE (x
) != CONST_DOUBLE
)
3825 memcpy ((char *) &u
, (char *) &CONST_DOUBLE_LOW (x
), sizeof u
);
3826 assemble_real (u
.d
, pool
->mode
);
3830 case MODE_PARTIAL_INT
:
3831 assemble_integer (x
, GET_MODE_SIZE (pool
->mode
), 1);
3838 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3844 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3845 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file
, fnname
, fndecl
, pool_offset
);
3848 /* Done with this pool. */
3849 first_pool
= last_pool
= 0;
3852 /* Look through the instructions for this function, and mark all the
3853 entries in the constant pool which are actually being used.
3854 Emit used deferred strings. */
3857 mark_constant_pool ()
3860 struct pool_constant
*pool
;
3862 if (first_pool
== 0 && htab_elements (const_str_htab
) == 0)
3865 for (pool
= first_pool
; pool
; pool
= pool
->next
)
3868 for (insn
= get_insns (); insn
; insn
= NEXT_INSN (insn
))
3870 mark_constants (PATTERN (insn
));
3872 for (insn
= current_function_epilogue_delay_list
;
3874 insn
= XEXP (insn
, 1))
3876 mark_constants (PATTERN (insn
));
3879 /* Look through appropriate parts of X, marking all entries in the
3880 constant pool which are actually being used. Entries that are only
3881 referenced by other constants are also marked as used. Emit
3882 deferred strings that are used. */
3889 register const char *format_ptr
;
3894 if (GET_CODE (x
) == SYMBOL_REF
)
3896 mark_constant (&x
, NULL
);
3899 /* Never search inside a CONST_DOUBLE, because CONST_DOUBLE_MEM may be
3900 a MEM, but does not constitute a use of that MEM. */
3901 else if (GET_CODE (x
) == CONST_DOUBLE
)
3904 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3905 insns, not any notes that may be attached. We don't want to mark
3906 a constant just because it happens to appear in a REG_EQUIV note. */
3909 mark_constants (PATTERN (x
));
3913 format_ptr
= GET_RTX_FORMAT (GET_CODE (x
));
3915 for (i
= 0; i
< GET_RTX_LENGTH (GET_CODE (x
)); i
++)
3917 switch (*format_ptr
++)
3920 mark_constants (XEXP (x
, i
));
3924 if (XVEC (x
, i
) != 0)
3928 for (j
= 0; j
< XVECLEN (x
, i
); j
++)
3929 mark_constants (XVECEXP (x
, i
, j
));
3948 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3949 to as used. Emit referenced deferred strings. This function can
3950 be used with for_each_rtx () to mark all SYMBOL_REFs in an rtx. */
3953 mark_constant (current_rtx
, data
)
3955 void *data ATTRIBUTE_UNUSED
;
3957 rtx x
= *current_rtx
;
3961 else if (GET_CODE(x
) == CONST_DOUBLE
)
3962 /* Never search inside a CONST_DOUBLE because CONST_DOUBLE_MEM may
3963 be a MEM but does not constitute a use of that MEM. */
3965 else if (GET_CODE (x
) == SYMBOL_REF
)
3967 if (CONSTANT_POOL_ADDRESS_P (x
))
3969 struct pool_constant
*pool
= find_pool_constant (cfun
, x
);
3970 if (pool
->mark
== 0) {
3972 for_each_rtx (&(pool
->constant
), &mark_constant
, NULL
);
3977 else if (STRING_POOL_ADDRESS_P (x
))
3979 struct deferred_string
**defstr
;
3981 defstr
= (struct deferred_string
**)
3982 htab_find_slot_with_hash (const_str_htab
, XSTR (x
, 0),
3983 STRHASH (XSTR (x
, 0)), NO_INSERT
);
3986 struct deferred_string
*p
= *defstr
;
3988 STRING_POOL_ADDRESS_P (x
) = 0;
3989 output_constant_def_contents (p
->exp
, 0, p
->labelno
);
3990 htab_clear_slot (const_str_htab
, (void **) defstr
);
3997 /* Find all the constants whose addresses are referenced inside of EXP,
3998 and make sure assembler code with a label has been output for each one.
3999 Indicate whether an ADDR_EXPR has been encountered. */
4002 output_addressed_constants (exp
)
4007 /* Give the front-end a chance to convert VALUE to something that
4008 looks more like a constant to the back-end. */
4009 if (lang_expand_constant
)
4010 exp
= (*lang_expand_constant
) (exp
);
4012 switch (TREE_CODE (exp
))
4016 register tree constant
= TREE_OPERAND (exp
, 0);
4018 while (TREE_CODE (constant
) == COMPONENT_REF
)
4020 constant
= TREE_OPERAND (constant
, 0);
4023 if (TREE_CODE_CLASS (TREE_CODE (constant
)) == 'c'
4024 || TREE_CODE (constant
) == CONSTRUCTOR
)
4025 /* No need to do anything here
4026 for addresses of variables or functions. */
4027 output_constant_def (constant
, 0);
4034 reloc
= output_addressed_constants (TREE_OPERAND (exp
, 0));
4035 reloc
|= output_addressed_constants (TREE_OPERAND (exp
, 1));
4040 case NON_LVALUE_EXPR
:
4041 reloc
= output_addressed_constants (TREE_OPERAND (exp
, 0));
4047 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
4048 if (TREE_VALUE (link
) != 0)
4049 reloc
|= output_addressed_constants (TREE_VALUE (link
));
4059 /* Return nonzero if VALUE is a valid constant-valued expression
4060 for use in initializing a static variable; one that can be an
4061 element of a "constant" initializer.
4063 Return null_pointer_node if the value is absolute;
4064 if it is relocatable, return the variable that determines the relocation.
4065 We assume that VALUE has been folded as much as possible;
4066 therefore, we do not need to check for such things as
4067 arithmetic-combinations of integers. */
4070 initializer_constant_valid_p (value
, endtype
)
4074 /* Give the front-end a chance to convert VALUE to something that
4075 looks more like a constant to the back-end. */
4076 if (lang_expand_constant
)
4077 value
= (*lang_expand_constant
) (value
);
4079 switch (TREE_CODE (value
))
4082 if ((TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
4083 || TREE_CODE (TREE_TYPE (value
)) == RECORD_TYPE
)
4084 && TREE_CONSTANT (value
)
4085 && CONSTRUCTOR_ELTS (value
))
4087 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value
)),
4090 return TREE_STATIC (value
) ? null_pointer_node
: 0;
4096 return null_pointer_node
;
4099 return staticp (TREE_OPERAND (value
, 0)) ? TREE_OPERAND (value
, 0) : 0;
4101 case NON_LVALUE_EXPR
:
4102 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
4106 /* Allow conversions between pointer types. */
4107 if (POINTER_TYPE_P (TREE_TYPE (value
))
4108 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
4109 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
4111 /* Allow conversions between real types. */
4112 if (FLOAT_TYPE_P (TREE_TYPE (value
))
4113 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
4114 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
4116 /* Allow length-preserving conversions between integer types. */
4117 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
4118 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0)))
4119 && (TYPE_PRECISION (TREE_TYPE (value
))
4120 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0)))))
4121 return initializer_constant_valid_p (TREE_OPERAND (value
, 0), endtype
);
4123 /* Allow conversions between other integer types only if
4125 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
4126 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
4128 tree inner
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
4130 if (inner
== null_pointer_node
)
4131 return null_pointer_node
;
4135 /* Allow (int) &foo provided int is as wide as a pointer. */
4136 if (INTEGRAL_TYPE_P (TREE_TYPE (value
))
4137 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0)))
4138 && (TYPE_PRECISION (TREE_TYPE (value
))
4139 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0)))))
4140 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
4143 /* Likewise conversions from int to pointers, but also allow
4144 conversions from 0. */
4145 if (POINTER_TYPE_P (TREE_TYPE (value
))
4146 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value
, 0))))
4148 if (integer_zerop (TREE_OPERAND (value
, 0)))
4149 return null_pointer_node
;
4150 else if (TYPE_PRECISION (TREE_TYPE (value
))
4151 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value
, 0))))
4152 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
4156 /* Allow conversions to union types if the value inside is okay. */
4157 if (TREE_CODE (TREE_TYPE (value
)) == UNION_TYPE
)
4158 return initializer_constant_valid_p (TREE_OPERAND (value
, 0),
4163 if (! INTEGRAL_TYPE_P (endtype
)
4164 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
4166 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
4168 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
4170 /* If either term is absolute, use the other terms relocation. */
4171 if (valid0
== null_pointer_node
)
4173 if (valid1
== null_pointer_node
)
4179 if (! INTEGRAL_TYPE_P (endtype
)
4180 || TYPE_PRECISION (endtype
) >= POINTER_SIZE
)
4182 tree valid0
= initializer_constant_valid_p (TREE_OPERAND (value
, 0),
4184 tree valid1
= initializer_constant_valid_p (TREE_OPERAND (value
, 1),
4186 /* Win if second argument is absolute. */
4187 if (valid1
== null_pointer_node
)
4189 /* Win if both arguments have the same relocation.
4190 Then the value is absolute. */
4191 if (valid0
== valid1
&& valid0
!= 0)
4192 return null_pointer_node
;
4194 /* Since GCC guarantees that string constants are unique in the
4195 generated code, a subtraction between two copies of the same
4196 constant string is absolute. */
4197 if (valid0
&& TREE_CODE (valid0
) == STRING_CST
&&
4198 valid1
&& TREE_CODE (valid1
) == STRING_CST
&&
4199 TREE_STRING_POINTER (valid0
) == TREE_STRING_POINTER (valid1
))
4200 return null_pointer_node
;
4203 /* Support differences between labels. */
4204 if (INTEGRAL_TYPE_P (endtype
))
4207 op0
= TREE_OPERAND (value
, 0);
4208 op1
= TREE_OPERAND (value
, 1);
4212 if (TREE_CODE (op0
) == ADDR_EXPR
4213 && TREE_CODE (TREE_OPERAND (op0
, 0)) == LABEL_DECL
4214 && TREE_CODE (op1
) == ADDR_EXPR
4215 && TREE_CODE (TREE_OPERAND (op1
, 0)) == LABEL_DECL
)
4216 return null_pointer_node
;
4227 /* Output assembler code for constant EXP to FILE, with no label.
4228 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4229 Assumes output_addressed_constants has been done on EXP already.
4231 Generate exactly SIZE bytes of assembler data, padding at the end
4232 with zeros if necessary. SIZE must always be specified.
4234 SIZE is important for structure constructors,
4235 since trailing members may have been omitted from the constructor.
4236 It is also important for initialization of arrays from string constants
4237 since the full length of the string constant might not be wanted.
4238 It is also needed for initialization of unions, where the initializer's
4239 type is just one member, and that may not be as long as the union.
4241 There a case in which we would fail to output exactly SIZE bytes:
4242 for a structure constructor that wants to produce more than SIZE bytes.
4243 But such constructors will never be generated for any possible input. */
4246 output_constant (exp
, size
)
4250 register enum tree_code code
= TREE_CODE (TREE_TYPE (exp
));
4252 /* Some front-ends use constants other than the standard
4253 language-indepdent varieties, but which may still be output
4254 directly. Give the front-end a chance to convert EXP to a
4255 language-independent representation. */
4256 if (lang_expand_constant
)
4257 exp
= (*lang_expand_constant
) (exp
);
4259 if (size
== 0 || flag_syntax_only
)
4262 /* Eliminate the NON_LVALUE_EXPR_EXPR that makes a cast not be an lvalue.
4263 That way we get the constant (we hope) inside it. Also, strip off any
4264 NOP_EXPR that converts between two record, union, array, or set types
4265 or a CONVERT_EXPR that converts to a union TYPE. */
4266 while ((TREE_CODE (exp
) == NOP_EXPR
4267 && (TREE_TYPE (exp
) == TREE_TYPE (TREE_OPERAND (exp
, 0))
4268 || AGGREGATE_TYPE_P (TREE_TYPE (exp
))))
4269 || (TREE_CODE (exp
) == CONVERT_EXPR
4270 && code
== UNION_TYPE
)
4271 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
4273 exp
= TREE_OPERAND (exp
, 0);
4274 code
= TREE_CODE (TREE_TYPE (exp
));
4277 /* Allow a constructor with no elements for any data type.
4278 This means to fill the space with zeros. */
4279 if (TREE_CODE (exp
) == CONSTRUCTOR
&& CONSTRUCTOR_ELTS (exp
) == 0)
4281 assemble_zeros (size
);
4292 case REFERENCE_TYPE
:
4293 /* ??? What about (int)((float)(int)&foo + 4) */
4294 while (TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
4295 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
4296 exp
= TREE_OPERAND (exp
, 0);
4298 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
4299 EXPAND_INITIALIZER
),
4301 error ("initializer for integer value is too complicated");
4306 if (TREE_CODE (exp
) != REAL_CST
)
4307 error ("initializer for floating value is not a floating constant");
4309 assemble_real (TREE_REAL_CST (exp
),
4310 mode_for_size (size
* BITS_PER_UNIT
, MODE_FLOAT
, 0));
4315 output_constant (TREE_REALPART (exp
), size
/ 2);
4316 output_constant (TREE_IMAGPART (exp
), size
/ 2);
4317 size
-= (size
/ 2) * 2;
4321 if (TREE_CODE (exp
) == CONSTRUCTOR
)
4323 output_constructor (exp
, size
);
4326 else if (TREE_CODE (exp
) == STRING_CST
)
4330 if (size
> TREE_STRING_LENGTH (exp
))
4332 excess
= size
- TREE_STRING_LENGTH (exp
);
4333 size
= TREE_STRING_LENGTH (exp
);
4336 assemble_string (TREE_STRING_POINTER (exp
), size
);
4345 if (TREE_CODE (exp
) == CONSTRUCTOR
)
4346 output_constructor (exp
, size
);
4352 if (TREE_CODE (exp
) == INTEGER_CST
)
4353 assemble_integer (expand_expr (exp
, NULL_RTX
,
4354 VOIDmode
, EXPAND_INITIALIZER
),
4356 else if (TREE_CODE (exp
) == CONSTRUCTOR
)
4358 unsigned char *buffer
= (unsigned char *) alloca (size
);
4359 if (get_set_constructor_bytes (exp
, buffer
, size
))
4361 assemble_string ((char *) buffer
, size
);
4364 error ("unknown set constructor type");
4372 assemble_zeros (size
);
4376 /* Subroutine of output_constructor, used for computing the size of
4377 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4378 type with an unspecified upper bound. */
4380 static unsigned HOST_WIDE_INT
4381 array_size_for_constructor (val
)
4386 max_index
= NULL_TREE
;
4387 for (i
= CONSTRUCTOR_ELTS (val
); i
; i
= TREE_CHAIN (i
))
4389 tree index
= TREE_PURPOSE (i
);
4391 if (TREE_CODE (index
) == RANGE_EXPR
)
4392 index
= TREE_OPERAND (index
, 1);
4393 if (max_index
== NULL_TREE
|| tree_int_cst_lt (max_index
, index
))
4397 if (max_index
== NULL_TREE
)
4400 /* Compute the total number of array elements. */
4401 i
= size_binop (MINUS_EXPR
, convert (sizetype
, max_index
),
4403 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val
)))));
4404 i
= size_binop (PLUS_EXPR
, i
, convert (sizetype
, integer_one_node
));
4406 /* Multiply by the array element unit size to find number of bytes. */
4407 i
= size_binop (MULT_EXPR
, i
, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val
))));
4409 return tree_low_cst (i
, 1);
4412 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4413 Generate at least SIZE bytes, padding if necessary. */
4416 output_constructor (exp
, size
)
4420 tree type
= TREE_TYPE (exp
);
4421 register tree link
, field
= 0;
4423 /* Number of bytes output or skipped so far.
4424 In other words, current position within the constructor. */
4425 HOST_WIDE_INT total_bytes
= 0;
4426 /* Non-zero means BYTE contains part of a byte, to be output. */
4427 int byte_buffer_in_use
= 0;
4428 register int byte
= 0;
4430 if (HOST_BITS_PER_WIDE_INT
< BITS_PER_UNIT
)
4433 if (TREE_CODE (type
) == RECORD_TYPE
)
4434 field
= TYPE_FIELDS (type
);
4436 if (TREE_CODE (type
) == ARRAY_TYPE
4437 && TYPE_DOMAIN (type
) != 0)
4438 min_index
= TYPE_MIN_VALUE (TYPE_DOMAIN (type
));
4440 /* As LINK goes through the elements of the constant,
4441 FIELD goes through the structure fields, if the constant is a structure.
4442 if the constant is a union, then we override this,
4443 by getting the field from the TREE_LIST element.
4444 But the constant could also be an array. Then FIELD is zero.
4446 There is always a maximum of one element in the chain LINK for unions
4447 (even if the initializer in a source program incorrectly contains
4449 for (link
= CONSTRUCTOR_ELTS (exp
);
4451 link
= TREE_CHAIN (link
),
4452 field
= field
? TREE_CHAIN (field
) : 0)
4454 tree val
= TREE_VALUE (link
);
4457 /* The element in a union constructor specifies the proper field
4459 if ((TREE_CODE (type
) == RECORD_TYPE
|| TREE_CODE (type
) == UNION_TYPE
4460 || TREE_CODE (type
) == QUAL_UNION_TYPE
)
4461 && TREE_PURPOSE (link
) != 0)
4462 field
= TREE_PURPOSE (link
);
4464 else if (TREE_CODE (type
) == ARRAY_TYPE
)
4465 index
= TREE_PURPOSE (link
);
4467 /* Eliminate the marker that makes a cast not be an lvalue. */
4471 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
4473 unsigned HOST_WIDE_INT fieldsize
4474 = int_size_in_bytes (TREE_TYPE (type
));
4475 HOST_WIDE_INT lo_index
= tree_low_cst (TREE_OPERAND (index
, 0), 0);
4476 HOST_WIDE_INT hi_index
= tree_low_cst (TREE_OPERAND (index
, 1), 0);
4477 HOST_WIDE_INT index
;
4479 for (index
= lo_index
; index
<= hi_index
; index
++)
4481 /* Output the element's initial value. */
4483 assemble_zeros (fieldsize
);
4485 output_constant (val
, fieldsize
);
4487 /* Count its size. */
4488 total_bytes
+= fieldsize
;
4491 else if (field
== 0 || !DECL_BIT_FIELD (field
))
4493 /* An element that is not a bit-field. */
4495 unsigned HOST_WIDE_INT fieldsize
;
4496 /* Since this structure is static,
4497 we know the positions are constant. */
4498 HOST_WIDE_INT pos
= field
? int_byte_position (field
) : 0;
4501 pos
= (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val
)), 1)
4502 * (tree_low_cst (index
, 0) - tree_low_cst (min_index
, 0)));
4504 /* Output any buffered-up bit-fields preceding this element. */
4505 if (byte_buffer_in_use
)
4507 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4509 byte_buffer_in_use
= 0;
4512 /* Advance to offset of this element.
4513 Note no alignment needed in an array, since that is guaranteed
4514 if each element has the proper size. */
4515 if ((field
!= 0 || index
!= 0) && pos
!= total_bytes
)
4517 assemble_zeros (pos
- total_bytes
);
4521 else if (field
!= 0 && DECL_PACKED (field
))
4522 /* Some assemblers automaticallly align a datum according to its
4523 size if no align directive is specified. The datum, however,
4524 may be declared with 'packed' attribute, so we have to disable
4526 ASM_OUTPUT_ALIGN (asm_out_file
, 0);
4528 /* Determine size this element should occupy. */
4533 /* If this is an array with an unspecified upper bound,
4534 the initializer determines the size. */
4535 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4536 but we cannot do this until the deprecated support for
4537 initializing zero-length array members is removed. */
4538 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
4539 && TYPE_DOMAIN (TREE_TYPE (field
))
4540 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
4542 fieldsize
= array_size_for_constructor (val
);
4543 /* Given a non-empty initialization, this field had
4545 if (fieldsize
!= 0 && TREE_CHAIN (field
) != NULL_TREE
)
4548 else if (DECL_SIZE_UNIT (field
))
4550 /* ??? This can't be right. If the decl size overflows
4551 a host integer we will silently emit no data. */
4552 if (host_integerp (DECL_SIZE_UNIT (field
), 1))
4553 fieldsize
= tree_low_cst (DECL_SIZE_UNIT (field
), 1);
4557 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
4559 /* Output the element's initial value. */
4561 assemble_zeros (fieldsize
);
4563 output_constant (val
, fieldsize
);
4565 /* Count its size. */
4566 total_bytes
+= fieldsize
;
4568 else if (val
!= 0 && TREE_CODE (val
) != INTEGER_CST
)
4569 error ("invalid initial value for member `%s'",
4570 IDENTIFIER_POINTER (DECL_NAME (field
)));
4573 /* Element that is a bit-field. */
4575 HOST_WIDE_INT next_offset
= int_bit_position (field
);
4576 HOST_WIDE_INT end_offset
4577 = (next_offset
+ tree_low_cst (DECL_SIZE (field
), 1));
4580 val
= integer_zero_node
;
4582 /* If this field does not start in this (or, next) byte,
4584 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4586 /* Output remnant of any bit field in previous bytes. */
4587 if (byte_buffer_in_use
)
4589 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4591 byte_buffer_in_use
= 0;
4594 /* If still not at proper byte, advance to there. */
4595 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4597 assemble_zeros (next_offset
/ BITS_PER_UNIT
- total_bytes
);
4598 total_bytes
= next_offset
/ BITS_PER_UNIT
;
4602 if (! byte_buffer_in_use
)
4605 /* We must split the element into pieces that fall within
4606 separate bytes, and combine each byte with previous or
4607 following bit-fields. */
4609 /* next_offset is the offset n fbits from the beginning of
4610 the structure to the next bit of this element to be processed.
4611 end_offset is the offset of the first bit past the end of
4613 while (next_offset
< end_offset
)
4617 HOST_WIDE_INT value
;
4618 HOST_WIDE_INT next_byte
= next_offset
/ BITS_PER_UNIT
;
4619 HOST_WIDE_INT next_bit
= next_offset
% BITS_PER_UNIT
;
4621 /* Advance from byte to byte
4622 within this element when necessary. */
4623 while (next_byte
!= total_bytes
)
4625 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4630 /* Number of bits we can process at once
4631 (all part of the same byte). */
4632 this_time
= MIN (end_offset
- next_offset
,
4633 BITS_PER_UNIT
- next_bit
);
4634 if (BYTES_BIG_ENDIAN
)
4636 /* On big-endian machine, take the most significant bits
4637 first (of the bits that are significant)
4638 and put them into bytes from the most significant end. */
4639 shift
= end_offset
- next_offset
- this_time
;
4641 /* Don't try to take a bunch of bits that cross
4642 the word boundary in the INTEGER_CST. We can
4643 only select bits from the LOW or HIGH part
4645 if (shift
< HOST_BITS_PER_WIDE_INT
4646 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4648 this_time
= shift
+ this_time
- HOST_BITS_PER_WIDE_INT
;
4649 shift
= HOST_BITS_PER_WIDE_INT
;
4652 /* Now get the bits from the appropriate constant word. */
4653 if (shift
< HOST_BITS_PER_WIDE_INT
)
4654 value
= TREE_INT_CST_LOW (val
);
4655 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4657 value
= TREE_INT_CST_HIGH (val
);
4658 shift
-= HOST_BITS_PER_WIDE_INT
;
4663 /* Get the result. This works only when:
4664 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4665 byte
|= (((value
>> shift
)
4666 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4667 << (BITS_PER_UNIT
- this_time
- next_bit
));
4671 /* On little-endian machines,
4672 take first the least significant bits of the value
4673 and pack them starting at the least significant
4674 bits of the bytes. */
4675 shift
= next_offset
- int_bit_position (field
);
4677 /* Don't try to take a bunch of bits that cross
4678 the word boundary in the INTEGER_CST. We can
4679 only select bits from the LOW or HIGH part
4681 if (shift
< HOST_BITS_PER_WIDE_INT
4682 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4683 this_time
= (HOST_BITS_PER_WIDE_INT
- shift
);
4685 /* Now get the bits from the appropriate constant word. */
4686 if (shift
< HOST_BITS_PER_WIDE_INT
)
4687 value
= TREE_INT_CST_LOW (val
);
4688 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4690 value
= TREE_INT_CST_HIGH (val
);
4691 shift
-= HOST_BITS_PER_WIDE_INT
;
4696 /* Get the result. This works only when:
4697 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4698 byte
|= (((value
>> shift
)
4699 & (((HOST_WIDE_INT
) 2 << (this_time
- 1)) - 1))
4703 next_offset
+= this_time
;
4704 byte_buffer_in_use
= 1;
4709 if (byte_buffer_in_use
)
4711 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4715 if (total_bytes
< size
)
4716 assemble_zeros (size
- total_bytes
);
4719 #ifdef HANDLE_PRAGMA_WEAK
4720 /* Add function NAME to the weak symbols list. VALUE is a weak alias
4721 associatd with NAME. */
4724 add_weak (name
, value
)
4728 struct weak_syms
*weak
;
4730 weak
= (struct weak_syms
*) permalloc (sizeof (struct weak_syms
));
4735 weak
->next
= weak_decls
;
4737 weak
->value
= value
;
4742 #endif /* HANDLE_PRAGMA_WEAK */
4744 /* Declare DECL to be a weak symbol. */
4750 if (! TREE_PUBLIC (decl
))
4751 error_with_decl (decl
, "weak declaration of `%s' must be public");
4752 else if (TREE_ASM_WRITTEN (decl
))
4753 error_with_decl (decl
, "weak declaration of `%s' must precede definition");
4754 else if (SUPPORTS_WEAK
)
4755 DECL_WEAK (decl
) = 1;
4756 #ifdef HANDLE_PRAGMA_WEAK
4757 add_weak (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)), NULL
);
4761 /* Emit any pending weak declarations. */
4763 #ifdef HANDLE_PRAGMA_WEAK
4764 struct weak_syms
* weak_decls
;
4770 #ifdef HANDLE_PRAGMA_WEAK
4771 if (HANDLE_PRAGMA_WEAK
)
4773 struct weak_syms
*t
;
4774 for (t
= weak_decls
; t
; t
= t
->next
)
4778 ASM_WEAKEN_LABEL (asm_out_file
, t
->name
);
4780 ASM_OUTPUT_DEF (asm_out_file
, t
->name
, t
->value
);
4787 /* Remove NAME from the pending list of weak symbols. This prevents
4788 the compiler from emitting multiple .weak directives which confuses
4790 #ifdef ASM_WEAKEN_LABEL
4792 remove_from_pending_weak_list (name
)
4793 const char *name ATTRIBUTE_UNUSED
;
4795 #ifdef HANDLE_PRAGMA_WEAK
4796 if (HANDLE_PRAGMA_WEAK
)
4798 struct weak_syms
*t
;
4799 for (t
= weak_decls
; t
; t
= t
->next
)
4801 if (t
->name
&& strcmp (name
, t
->name
) == 0)
4810 assemble_alias (decl
, target
)
4811 tree decl
, target ATTRIBUTE_UNUSED
;
4815 make_decl_rtl (decl
, (char *) 0);
4816 name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
4818 #ifdef ASM_OUTPUT_DEF
4819 /* Make name accessible from other files, if appropriate. */
4821 if (TREE_PUBLIC (decl
))
4823 #ifdef ASM_WEAKEN_LABEL
4824 if (DECL_WEAK (decl
))
4826 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4827 /* Remove this function from the pending weak list so that
4828 we do not emit multiple .weak directives for it. */
4829 remove_from_pending_weak_list
4830 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
4834 ASM_GLOBALIZE_LABEL (asm_out_file
, name
);
4837 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4838 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file
, decl
, target
);
4840 ASM_OUTPUT_DEF (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4842 TREE_ASM_WRITTEN (decl
) = 1;
4844 #ifdef ASM_OUTPUT_WEAK_ALIAS
4845 if (! DECL_WEAK (decl
))
4846 warning ("only weak aliases are supported in this configuration");
4848 ASM_OUTPUT_WEAK_ALIAS (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4849 TREE_ASM_WRITTEN (decl
) = 1;
4851 warning ("alias definitions not supported in this configuration; ignored");
4856 /* This determines whether or not we support link-once semantics. */
4857 #ifndef SUPPORTS_ONE_ONLY
4858 #ifdef MAKE_DECL_ONE_ONLY
4859 #define SUPPORTS_ONE_ONLY 1
4861 #define SUPPORTS_ONE_ONLY 0
4865 /* Returns 1 if the target configuration supports defining public symbols
4866 so that one of them will be chosen at link time instead of generating a
4867 multiply-defined symbol error, whether through the use of weak symbols or
4868 a target-specific mechanism for having duplicates discarded. */
4871 supports_one_only ()
4873 if (SUPPORTS_ONE_ONLY
)
4875 return SUPPORTS_WEAK
;
4878 /* Set up DECL as a public symbol that can be defined in multiple
4879 translation units without generating a linker error. */
4882 make_decl_one_only (decl
)
4885 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != FUNCTION_DECL
)
4888 TREE_PUBLIC (decl
) = 1;
4890 if (TREE_CODE (decl
) == VAR_DECL
4891 && (DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
))
4892 DECL_COMMON (decl
) = 1;
4893 else if (SUPPORTS_ONE_ONLY
)
4895 #ifdef MAKE_DECL_ONE_ONLY
4896 MAKE_DECL_ONE_ONLY (decl
);
4898 DECL_ONE_ONLY (decl
) = 1;
4900 else if (SUPPORTS_WEAK
)
4901 DECL_WEAK (decl
) = 1;
4909 const_str_htab
= htab_create (128, const_str_htab_hash
, const_str_htab_eq
,
4910 const_str_htab_del
);
4911 ggc_add_root (const_hash_table
, MAX_HASH_TABLE
, sizeof const_hash_table
[0],
4912 mark_const_hash_entry
);
4913 ggc_add_root (&const_str_htab
, 1, sizeof const_str_htab
,
4914 mark_const_str_htab
);
4917 /* Extra support for EH values. */
4919 assemble_eh_label (name
)
4922 #ifdef ASM_OUTPUT_EH_LABEL
4923 ASM_OUTPUT_EH_LABEL (asm_out_file
, name
);
4925 assemble_label (name
);
4929 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
4932 assemble_eh_align (align
)
4935 #ifdef ASM_OUTPUT_EH_ALIGN
4936 if (align
> BITS_PER_UNIT
)
4937 ASM_OUTPUT_EH_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
4939 assemble_align (align
);
4944 /* On some platforms, we may want to specify a special mechansim to
4945 output EH data when generating with a function.. */
4947 assemble_eh_integer (x
, size
, force
)
4955 #ifdef ASM_OUTPUT_EH_CHAR
4957 ASM_OUTPUT_EH_CHAR (asm_out_file
, x
);
4961 #ifdef ASM_OUTPUT_EH_SHORT
4963 ASM_OUTPUT_EH_SHORT (asm_out_file
, x
);
4967 #ifdef ASM_OUTPUT_EH_INT
4969 ASM_OUTPUT_EH_INT (asm_out_file
, x
);
4973 #ifdef ASM_OUTPUT_EH_DOUBLE_INT
4975 ASM_OUTPUT_EH_DOUBLE_INT (asm_out_file
, x
);
4982 return (assemble_integer (x
, size
, force
));