combine.c (reversed_comparison): Fix typo in last patch.
[official-gcc.git] / gcc / varasm.c
blob8841fcf064f3afa6d4c1c61fe798cdcc5d6a65a7
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)
10 any later version.
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. */
30 #include "config.h"
31 #include "system.h"
32 #include <setjmp.h>
33 #include "rtl.h"
34 #include "tree.h"
35 #include "flags.h"
36 #include "function.h"
37 #include "expr.h"
38 #include "hard-reg-set.h"
39 #include "regs.h"
40 #include "defaults.h"
41 #include "output.h"
42 #include "real.h"
43 #include "toplev.h"
44 #include "dbxout.h"
45 #include "sdbout.h"
46 #include "obstack.h"
47 #include "hashtab.h"
48 #include "c-pragma.h"
49 #include "ggc.h"
50 #include "tm_p.h"
52 #ifdef XCOFF_DEBUGGING_INFO
53 #include "xcoffout.h"
54 #endif
56 #ifndef TRAMPOLINE_ALIGNMENT
57 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
58 #endif
60 #ifndef ASM_STABS_OP
61 #define ASM_STABS_OP "\t.stabs\t"
62 #endif
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."
70 #endif
71 #else /* !NO_DOLLAR_IN_LABEL */
72 #define CHKR_PREFIX "chkr$"
73 #endif
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
87 struct addr_const;
88 struct constant_descriptor;
89 struct rtx_const;
90 struct pool_constant;
92 #define MAX_RTX_HASH_TABLE 61
94 struct varasm_status
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
103 it. */
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
111 header). */
112 int x_pool_offset;
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. */
132 int const_labelno;
134 /* Number for making the label on the next
135 static variable internal to a function. */
137 int var_labelno;
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,
147 this holds 0. */
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,
168 rtx));
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 *));
179 #endif
180 #ifdef ASM_OUTPUT_BSS
181 static void asm_output_bss PARAMS ((FILE *, tree, const char *, int, int));
182 #endif
183 #ifdef BSS_SECTION_ASM_OP
184 #ifdef ASM_OUTPUT_ALIGNED_BSS
185 static void asm_output_aligned_bss PARAMS ((FILE *, tree, const char *,
186 int, int));
187 #endif
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
200 , in_bss
201 #endif
202 #ifdef EH_FRAME_SECTION_ASM_OP
203 , in_eh_frame
204 #endif
205 #ifdef EXTRA_SECTIONS
206 , EXTRA_SECTIONS
207 #endif
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)
215 #endif
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
223 #endif
225 /* Tell assembler to switch to text section. */
227 void
228 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. */
239 void
240 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);
248 #else
249 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
250 #endif
252 else
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. */
261 void
262 force_data_section ()
264 in_section = no_section;
265 data_section ();
268 /* Tell assembler to switch to read-only data section. This is normally
269 the text section. */
271 void
272 readonly_data_section ()
274 #ifdef READONLY_DATA_SECTION
275 READONLY_DATA_SECTION (); /* Note this can call data_section. */
276 #else
277 text_section ();
278 #endif
281 /* Determine if we're in the text section. */
284 in_text_section ()
286 return in_section == in_text;
289 /* Determine if we're in the data section. */
292 in_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. */
302 void
303 named_section (decl, name, reloc)
304 tree decl;
305 const char *name;
306 int reloc ATTRIBUTE_UNUSED;
308 if (decl != NULL_TREE && !DECL_P (decl))
309 abort ();
310 if (name == NULL)
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);
317 #else
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. */
321 abort ();
322 #endif
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) \
332 do { \
333 int len; \
334 const char *name; \
335 char *string; \
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); \
346 } while (0)
347 #endif
348 #ifndef UNIQUE_SECTION_P
349 #define UNIQUE_SECTION_P(DECL) 0
350 #endif
351 #endif
353 #ifdef BSS_SECTION_ASM_OP
355 /* Tell the assembler to switch to the bss section. */
357 void
358 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);
365 else
366 #endif
367 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
369 in_section = in_bss;
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. */
380 static void
381 asm_output_bss (file, decl, name, size, rounded)
382 FILE *file;
383 tree decl ATTRIBUTE_UNUSED;
384 const char *name;
385 int size ATTRIBUTE_UNUSED, rounded;
387 ASM_GLOBALIZE_LABEL (file, name);
388 bss_section ();
389 #ifdef ASM_DECLARE_OBJECT_NAME
390 last_assemble_variable_decl = decl;
391 ASM_DECLARE_OBJECT_NAME (file, name, decl);
392 #else
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);
399 #endif
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. */
408 static void
409 asm_output_aligned_bss (file, decl, name, size, align)
410 FILE *file;
411 tree decl;
412 const char *name;
413 int size, align;
415 ASM_GLOBALIZE_LABEL (file, name);
416 bss_section ();
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);
421 #else
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);
428 #endif
430 #endif /* BSS_SECTION_ASM_OP */
432 #ifdef EH_FRAME_SECTION_ASM_OP
433 void
434 eh_frame_section ()
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;
442 #endif
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. */
450 void
451 function_section (decl)
452 tree decl;
454 if (decl != NULL_TREE
455 && DECL_SECTION_NAME (decl) != NULL_TREE)
456 named_section (decl, (char *) 0, 0);
457 else
458 text_section ();
461 /* Switch to section for variable DECL.
463 RELOC is the `reloc' argument to SELECT_SECTION. */
465 void
466 variable_section (decl, reloc)
467 tree decl;
468 int reloc;
470 if (IN_NAMED_SECTION (decl))
471 named_section (decl, NULL, reloc);
472 else
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
477 readonly section.
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
485 for them. */
487 #ifdef SELECT_SECTION
488 SELECT_SECTION (decl, reloc);
489 #else
490 if (DECL_READONLY_SECTION (decl, reloc))
491 readonly_data_section ();
492 else
493 data_section ();
494 #endif
498 /* Tell assembler to switch to the section for the exception handling
499 table. */
501 void
502 exception_section ()
504 #if defined (EXCEPTION_SECTION)
505 EXCEPTION_SECTION ();
506 #else
507 #ifdef ASM_OUTPUT_SECTION_NAME
508 named_section (NULL_TREE, ".gcc_except_table", 0);
509 #else
510 if (flag_pic)
511 data_section ();
512 else
513 readonly_data_section ();
514 #endif
515 #endif
518 /* Given NAME, a putative register name, discard any customary prefixes. */
520 static const char *
521 strip_reg_name (name)
522 const char *name;
524 #ifdef REGISTER_PREFIX
525 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
526 name += strlen (REGISTER_PREFIX);
527 #endif
528 if (name[0] == '%' || name[0] == '#')
529 name++;
530 return name;
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)
543 const char *asmspec;
545 if (asmspec != 0)
547 int i;
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'))
555 break;
556 if (asmspec[0] != 0 && i < 0)
558 i = atoi (asmspec);
559 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
560 return i;
561 else
562 return -2;
565 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
566 if (reg_names[i][0]
567 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
568 return 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"))
582 return -4;
584 if (!strcmp (asmspec, "cc"))
585 return -3;
587 return -2;
590 return -1;
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. */
600 void
601 make_decl_rtl (decl, asmspec)
602 tree decl;
603 const char *asmspec;
605 int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
606 const char *name = 0;
607 const char *new_name = 0;
608 int reg_number;
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);
631 #endif
632 return;
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);
643 starred[0] = '*';
644 strcpy (starred + 1, asmspec);
645 new_name = starred;
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. */
662 else
664 int nregs;
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. */
680 DECL_RTL (decl)
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
688 else. */
689 #ifdef ASM_DECLARE_REGISTER_GLOBAL
690 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
691 #endif
692 nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
693 while (nregs > 0)
694 globalize_reg (reg_number + --nregs);
697 /* As a register variable, it has no section. */
698 return;
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)))
723 && asmspec == 0)
725 char *label;
726 ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno);
727 var_labelno++;
728 new_name = label;
731 /* When -fprefix-function-name is used, the functions
732 names are prefixed. Only nested function names are not
733 prefixed. */
734 else if (flag_prefix_function_name && TREE_CODE (decl) == FUNCTION_DECL)
736 size_t name_len = IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (decl));
737 char *pname;
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);
742 new_name = pname;
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);
770 #endif
773 /* Make the rtl for variable VAR be volatile.
774 Use this only for static variables. */
776 void
777 make_var_volatile (var)
778 tree var;
780 if (GET_CODE (DECL_RTL (var)) != MEM)
781 abort ();
783 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
786 /* Output alignment directive to align for constant expression EXP. */
788 void
789 assemble_constant_align (exp)
790 tree exp;
792 int align;
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);
798 #endif
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. */
807 void
808 assemble_asm (string)
809 tree string;
811 app_enable ();
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)
826 #endif
827 #ifndef ASM_OUTPUT_DESTRUCTOR
828 #define ASM_OUTPUT_DESTRUCTOR(file, name)
829 #endif
830 #endif
831 #endif /* 0 */
833 /* Record an element in the table of global destructors.
834 How this is done depends on what sort of assembler and linker
835 are in use.
837 NAME should be the name of a global function to be called
838 at exit time. This name is output using assemble_name. */
840 void
841 assemble_destructor (name)
842 const char *name;
844 #ifdef ASM_OUTPUT_DESTRUCTOR
845 ASM_OUTPUT_DESTRUCTOR (asm_out_file, name);
846 #else
847 if (flag_gnu_linker)
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);
855 #endif
858 /* Likewise for global constructors. */
860 void
861 assemble_constructor (name)
862 const char *name;
864 #ifdef ASM_OUTPUT_CONSTRUCTOR
865 ASM_OUTPUT_CONSTRUCTOR (asm_out_file, name);
866 #else
867 if (flag_gnu_linker)
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);
875 #endif
878 /* Likewise for entries we want to record for garbage collection.
879 Garbage collection is still under development. */
881 void
882 assemble_gc_entry (name)
883 const char *name;
885 #ifdef ASM_OUTPUT_GC_ENTRY
886 ASM_OUTPUT_GC_ENTRY (asm_out_file, name);
887 #else
888 if (flag_gnu_linker)
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);
895 #endif
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
902 start. */
904 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
905 #define CONSTANT_POOL_BEFORE_FUNCTION 1
906 #endif
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. */
913 void
914 assemble_start_function (decl, fnname)
915 tree decl;
916 const char *fnname;
918 int align;
920 /* The following code does not need preprocessing in the assembler. */
922 app_disable ();
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);
934 #endif
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);
940 if (align > 0)
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);
951 #else
952 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
953 #endif
956 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
957 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
958 #endif
960 #ifdef SDB_DEBUGGING_INFO
961 /* Output SDB definition of the function. */
962 if (write_symbols == SDB_DEBUG)
963 sdbout_mark_begin_function ();
964 #endif
966 #ifdef DBX_DEBUGGING_INFO
967 /* Output DBX definition of the function. */
968 if (write_symbols == DBX_DEBUG)
969 dbxout_begin_function (decl);
970 #endif
972 /* Make function name accessible from other files, if appropriate. */
974 if (TREE_PUBLIC (decl))
976 if (! first_global_object_name)
978 const char *p;
979 char *name;
981 STRIP_NAME_ENCODING (p, fnname);
982 name = permalloc (strlen (p) + 1);
983 strcpy (name, p);
985 if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
986 first_global_object_name = name;
987 else
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)));
1000 else
1001 #endif
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);
1008 #else
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. */
1017 void
1018 assemble_end_function (decl, fnname)
1019 tree decl;
1020 const char *fnname;
1022 #ifdef ASM_DECLARE_FUNCTION_SIZE
1023 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1024 #endif
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. */
1037 void
1038 assemble_zeros (size)
1039 int size;
1041 /* Do no output if -fsyntax-only. */
1042 if (flag_syntax_only)
1043 return;
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 ())
1050 int i;
1052 for (i = 0; i < size - 20; i += 20)
1054 #ifdef ASM_BYTE_OP
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);
1057 #else
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");
1060 #endif
1062 if (i < size)
1064 #ifdef ASM_BYTE_OP
1065 fprintf (asm_out_file, "%s0", ASM_BYTE_OP);
1066 #else
1067 fprintf (asm_out_file, "\tbyte 0");
1068 #endif
1069 i++;
1070 for (; i < size; i++)
1071 fprintf (asm_out_file, ",0");
1072 fprintf (asm_out_file, "\n");
1075 else
1076 #endif
1077 if (size > 0)
1078 ASM_OUTPUT_SKIP (asm_out_file, size);
1081 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1083 void
1084 assemble_align (align)
1085 int 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. */
1093 void
1094 assemble_string (p, size)
1095 const char *p;
1096 int size;
1098 int pos = 0;
1099 int maximum = 2000;
1101 /* If the string is very long, split it up. */
1103 while (pos < size)
1105 int thissize = size - pos;
1106 if (thissize > maximum)
1107 thissize = maximum;
1109 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1111 pos += thissize;
1112 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))
1120 #else
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))
1124 #else
1125 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1126 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1127 #endif
1128 #endif
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))
1133 #else
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)
1137 #else
1138 #undef ASM_EMIT_BSS
1139 #endif
1140 #endif
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))
1145 #else
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))
1149 #else
1150 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1151 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1152 #endif
1153 #endif
1155 static void
1156 asm_emit_uninitialised (decl, name, size, rounded)
1157 tree decl;
1158 const char * name;
1159 int size ATTRIBUTE_UNUSED;
1160 int rounded ATTRIBUTE_UNUSED;
1162 enum
1164 asm_dest_common,
1165 asm_dest_bss,
1166 asm_dest_local
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;
1175 else
1176 #endif
1177 destination = asm_dest_common;
1180 if (flag_shared_data)
1182 switch (destination)
1184 #ifdef ASM_OUTPUT_SHARED_BSS
1185 case asm_dest_bss:
1186 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1187 return;
1188 #endif
1189 #ifdef ASM_OUTPUT_SHARED_COMMON
1190 case asm_dest_common:
1191 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1192 return;
1193 #endif
1194 #ifdef ASM_OUTPUT_SHARED_LOCAL
1195 case asm_dest_local:
1196 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1197 return;
1198 #endif
1199 default:
1200 break;
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);
1208 #endif
1210 switch (destination)
1212 #ifdef ASM_EMIT_BSS
1213 case asm_dest_bss:
1214 ASM_EMIT_BSS (decl, name, size, rounded);
1215 break;
1216 #endif
1217 case asm_dest_common:
1218 ASM_EMIT_COMMON (decl, name, size, rounded);
1219 break;
1220 case asm_dest_local:
1221 ASM_EMIT_LOCAL (decl, name, size, rounded);
1222 break;
1223 default:
1224 abort ();
1227 return;
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). */
1240 void
1241 assemble_variable (decl, top_level, at_end, dont_output_data)
1242 tree decl;
1243 int top_level ATTRIBUTE_UNUSED;
1244 int at_end ATTRIBUTE_UNUSED;
1245 int dont_output_data;
1247 register const char *name;
1248 unsigned int align;
1249 int reloc = 0;
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
1257 else for them. */
1259 if (TREE_ASM_WRITTEN (decl))
1260 return;
1261 TREE_ASM_WRITTEN (decl) = 1;
1263 /* Do no output if -fsyntax-only. */
1264 if (flag_syntax_only)
1265 return;
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)
1270 && top_level)
1271 dbxout_symbol (decl, 0);
1272 #endif
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);
1279 #endif
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
1287 declarations. */
1289 return;
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))
1297 return;
1299 /* Output no assembler code for a function declaration.
1300 Only definitions of functions output anything. */
1302 if (TREE_CODE (decl) == FUNCTION_DECL)
1303 return;
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;
1321 return;
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))
1330 return;
1332 TREE_ASM_WRITTEN (decl) = 1;
1334 /* Do no output if -fsyntax-only. */
1335 if (flag_syntax_only)
1336 return;
1338 app_disable ();
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");
1344 goto finish;
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))
1355 const char *p;
1356 char *xname;
1358 STRIP_NAME_ENCODING (p, name);
1359 xname = permalloc (strlen (p) + 1);
1360 strcpy (xname, p);
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
1379 #endif
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);
1391 #endif
1392 #ifdef CONSTANT_ALIGNMENT
1393 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1394 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1395 #endif
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)
1408 #endif
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. */
1417 if (size == 0)
1418 rounded = 1;
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)
1429 warning_with_decl
1430 (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded);
1431 #endif
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);
1437 #endif
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);
1444 #endif
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
1452 declarations. */
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)
1457 data_section ();
1458 #endif
1459 asm_emit_uninitialised (decl, name, size, rounded);
1461 goto finish;
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)));
1480 else
1481 #endif
1482 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1484 #if 0
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));
1492 #endif
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);
1504 #endif
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);
1522 #endif
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);
1529 #endif
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
1537 declarations. */
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);
1553 #else
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));
1564 else
1565 /* Leave space for it. */
1566 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1569 finish:
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);
1587 #else
1588 /* There must be a statement after a label. */
1590 #endif
1593 /* Return 1 if type TYPE contains any pointers. */
1595 static int
1596 contains_pointers_p (type)
1597 tree type;
1599 switch (TREE_CODE (type))
1601 case POINTER_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. */
1605 case OFFSET_TYPE:
1606 return 1;
1608 case RECORD_TYPE:
1609 case UNION_TYPE:
1610 case QUAL_UNION_TYPE:
1612 tree fields;
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)))
1617 return 1;
1618 return 0;
1621 case ARRAY_TYPE:
1622 /* An array type contains pointers if its element type does. */
1623 return contains_pointers_p (TREE_TYPE (type));
1625 default:
1626 return 0;
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. */
1634 void
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));
1651 #endif
1654 /* Similar, for calling a library function FUN. */
1656 void
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);
1667 #endif
1670 /* Declare the label NAME global. */
1672 void
1673 assemble_global (name)
1674 const char *name;
1676 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1679 /* Assemble a label named NAME. */
1681 void
1682 assemble_label (name)
1683 const char *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. */
1694 void
1695 assemble_name (file, name)
1696 FILE *file;
1697 const char *name;
1699 const char *real_name;
1700 tree id;
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);
1708 if (id)
1709 TREE_SYMBOL_REFERENCED (id) = 1;
1711 if (name[0] == '*')
1712 fputs (&name[1], file);
1713 else
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)
1722 int size;
1724 char name[12];
1725 const char *namestring;
1726 rtx x;
1728 #if 0
1729 if (flag_shared_data)
1730 data_section ();
1731 #endif
1733 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1734 ++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,
1741 BIGGEST_ALIGNMENT);
1742 #else
1743 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1744 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1745 #else
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);
1756 #endif
1757 #endif
1758 return x;
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 ()
1769 char label[256];
1770 const char *name;
1771 int align;
1773 /* By default, put trampoline templates in read-only data section. */
1775 #ifdef TRAMPOLINE_SECTION
1776 TRAMPOLINE_SECTION ();
1777 #else
1778 readonly_data_section ();
1779 #endif
1781 /* Write the assembler code to define one. */
1782 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1783 if (align > 0)
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);
1794 #endif
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)
1804 rtx x;
1805 int size;
1806 int force;
1808 /* First try to use the standard 1, 2, 4, 8, and 16 byte
1809 ASM_OUTPUT... macros. */
1811 switch (size)
1813 #ifdef ASM_OUTPUT_CHAR
1814 case 1:
1815 ASM_OUTPUT_CHAR (asm_out_file, x);
1816 return 1;
1817 #endif
1819 #ifdef ASM_OUTPUT_SHORT
1820 case 2:
1821 ASM_OUTPUT_SHORT (asm_out_file, x);
1822 return 1;
1823 #endif
1825 #ifdef ASM_OUTPUT_INT
1826 case 4:
1827 ASM_OUTPUT_INT (asm_out_file, x);
1828 return 1;
1829 #endif
1831 #ifdef ASM_OUTPUT_DOUBLE_INT
1832 case 8:
1833 ASM_OUTPUT_DOUBLE_INT (asm_out_file, x);
1834 return 1;
1835 #endif
1837 #ifdef ASM_OUTPUT_QUADRUPLE_INT
1838 case 16:
1839 ASM_OUTPUT_QUADRUPLE_INT (asm_out_file, x);
1840 return 1;
1841 #endif
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));
1852 return 1;
1854 #endif
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)
1861 int i;
1862 enum machine_mode mode
1863 = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1864 rtx word;
1866 for (i = 0; i < size / UNITS_PER_WORD; i++)
1868 word = operand_subword (x, i, 0, mode);
1870 if (word == 0)
1871 break;
1873 if (! assemble_integer (word, UNITS_PER_WORD, 0))
1874 break;
1877 if (i == size / UNITS_PER_WORD)
1878 return 1;
1879 /* If we output at least one word and then could not finish,
1880 there is no valid way to continue. */
1881 if (i > 0)
1882 abort ();
1885 if (force)
1886 abort ();
1888 return 0;
1891 /* Assemble the floating-point constant D into an object of size MODE. */
1893 void
1894 assemble_real (d, mode)
1895 REAL_VALUE_TYPE d;
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);
1905 d = dconst0;
1906 #else
1907 d = 0;
1908 #endif
1911 set_float_handler (output_constant_handler);
1913 switch (mode)
1915 #ifdef ASM_OUTPUT_BYTE_FLOAT
1916 case QFmode:
1917 ASM_OUTPUT_BYTE_FLOAT (asm_out_file, d);
1918 break;
1919 #endif
1920 #ifdef ASM_OUTPUT_SHORT_FLOAT
1921 case HFmode:
1922 ASM_OUTPUT_SHORT_FLOAT (asm_out_file, d);
1923 break;
1924 #endif
1925 #ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
1926 case TQFmode:
1927 ASM_OUTPUT_THREE_QUARTER_FLOAT (asm_out_file, d);
1928 break;
1929 #endif
1930 #ifdef ASM_OUTPUT_FLOAT
1931 case SFmode:
1932 ASM_OUTPUT_FLOAT (asm_out_file, d);
1933 break;
1934 #endif
1936 #ifdef ASM_OUTPUT_DOUBLE
1937 case DFmode:
1938 ASM_OUTPUT_DOUBLE (asm_out_file, d);
1939 break;
1940 #endif
1942 #ifdef ASM_OUTPUT_LONG_DOUBLE
1943 case XFmode:
1944 case TFmode:
1945 ASM_OUTPUT_LONG_DOUBLE (asm_out_file, d);
1946 break;
1947 #endif
1949 default:
1950 abort ();
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;
1969 register rtx r;
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))
1984 i1 = 0;
1985 else if (width > 2 * HOST_BITS_PER_WIDE_INT)
1986 /* We cannot represent this value as a constant. */
1987 abort ();
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
2008 number.
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
2017 is being broken. */
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. */
2028 mode = VOIDmode;
2031 /* Search the chain for an existing CONST_DOUBLE with the right value.
2032 If one is found, return it. */
2033 if (cfun != 0)
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)
2037 return r;
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;
2049 return r;
2052 /* Return a CONST_DOUBLE for a specified `double' value
2053 and machine mode. */
2056 immed_real_const_1 (d, mode)
2057 REAL_VALUE_TYPE d;
2058 enum machine_mode mode;
2060 union real_extract u;
2061 register rtx r;
2063 /* Get the desired `double' value as a sequence of ints
2064 since that is how they are stored in a CONST_DOUBLE. */
2066 u.d = d;
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))
2079 && (cfun == 0
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. */
2094 if (cfun != 0)
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)
2098 return r;
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
2105 freed memory. */
2106 r = rtx_alloc (CONST_DOUBLE);
2107 PUT_MODE (r, mode);
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;
2117 else
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;
2126 return r;
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)
2134 tree 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. */
2143 void
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. */
2162 struct addr_const
2164 rtx base;
2165 HOST_WIDE_INT offset;
2168 static void
2169 decode_addr_const (exp, value)
2170 tree exp;
2171 struct addr_const *value;
2173 register tree target = TREE_OPERAND (exp, 0);
2174 register int offset = 0;
2175 register rtx x;
2177 while (1)
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);
2192 else
2193 break;
2196 switch (TREE_CODE (target))
2198 case VAR_DECL:
2199 case FUNCTION_DECL:
2200 x = DECL_RTL (target);
2201 break;
2203 case LABEL_DECL:
2204 x = gen_rtx_MEM (FUNCTION_MODE,
2205 gen_rtx_LABEL_REF (VOIDmode,
2206 label_rtx (TREE_OPERAND (exp, 0))));
2207 break;
2209 case REAL_CST:
2210 case STRING_CST:
2211 case COMPLEX_CST:
2212 case CONSTRUCTOR:
2213 case INTEGER_CST:
2214 x = TREE_CST_RTL (target);
2215 break;
2217 default:
2218 abort ();
2221 if (GET_CODE (x) != MEM)
2222 abort ();
2223 x = XEXP (x, 0);
2225 value->base = x;
2226 value->offset = offset;
2229 struct rtx_const
2231 #ifdef ONLY_INT_FIELDS
2232 unsigned int kind : 16;
2233 unsigned int mode : 16;
2234 #else
2235 enum kind kind : 16;
2236 enum machine_mode mode : 16;
2237 #endif
2238 union {
2239 union real_extract du;
2240 struct addr_const addr;
2241 struct {HOST_WIDE_INT high, low;} di;
2242 } un;
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
2249 the constant.
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;
2257 const char *label;
2258 rtx rtl;
2259 /* Make sure the data is reasonably aligned. */
2260 union
2262 unsigned char contents[1];
2263 #ifdef HAVE_LONG_DOUBLE
2264 long double d;
2265 #else
2266 double d;
2267 #endif
2268 } u;
2271 #define HASHBITS 30
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
2279 const char *label;
2280 tree exp;
2281 int labelno;
2284 static htab_t const_str_htab;
2286 /* Mark a const_hash_table descriptor for GC. */
2288 static void
2289 mark_const_hash_entry (ptr)
2290 void *ptr;
2292 struct constant_descriptor *desc = * (struct constant_descriptor **) ptr;
2294 while (desc)
2296 ggc_mark_rtx (desc->rtl);
2297 desc = desc->next;
2301 /* Mark the hash-table element X (which is really a pointer to an
2302 struct deferred_string *). */
2304 static int
2305 mark_const_str_htab_1 (x, data)
2306 void **x;
2307 void *data ATTRIBUTE_UNUSED;
2309 ggc_mark_tree (((struct deferred_string *) *x)->exp);
2310 return 1;
2313 /* Mark a const_str_htab for GC. */
2315 static void
2316 mark_const_str_htab (htab)
2317 void *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 *). */
2325 static hashval_t
2326 const_str_htab_hash (x)
2327 const void *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 *). */
2336 static int
2337 const_str_htab_eq (x, y)
2338 const void *x;
2339 const void *y;
2341 return (((const struct deferred_string *) x)->label == (const char *) y);
2344 /* Delete the hash table entry dfsp. */
2346 static void
2347 const_str_htab_del (dfsp)
2348 void *dfsp;
2350 free (dfsp);
2353 /* Compute a hash code for a constant expression. */
2355 static int
2356 const_hash (exp)
2357 tree exp;
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. */
2366 switch (code)
2368 case INTEGER_CST:
2369 p = (char *) &TREE_INT_CST (exp);
2370 len = sizeof TREE_INT_CST (exp);
2371 break;
2373 case REAL_CST:
2374 p = (char *) &TREE_REAL_CST (exp);
2375 len = sizeof TREE_REAL_CST (exp);
2376 break;
2378 case STRING_CST:
2379 p = TREE_STRING_POINTER (exp);
2380 len = TREE_STRING_LENGTH (exp);
2381 break;
2383 case COMPLEX_CST:
2384 return (const_hash (TREE_REALPART (exp)) * 5
2385 + const_hash (TREE_IMAGPART (exp)));
2387 case CONSTRUCTOR:
2388 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2390 char *tmp;
2392 len = int_size_in_bytes (TREE_TYPE (exp));
2393 tmp = (char *) alloca (len);
2394 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2395 p = tmp;
2396 break;
2398 else
2400 register tree link;
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
2407 be shorter. */
2408 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2409 hi = ((unsigned long) TREE_TYPE (exp) & ((1 << HASHBITS) - 1))
2410 % MAX_HASH_TABLE;
2411 else
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;
2420 return hi;
2423 case ADDR_EXPR:
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. */
2432 hi = value.offset;
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;
2439 else
2440 abort();
2442 hi &= (1 << HASHBITS) - 1;
2443 hi %= MAX_HASH_TABLE;
2445 return hi;
2447 case PLUS_EXPR:
2448 case MINUS_EXPR:
2449 return (const_hash (TREE_OPERAND (exp, 0)) * 9
2450 + const_hash (TREE_OPERAND (exp, 1)));
2452 case NOP_EXPR:
2453 case CONVERT_EXPR:
2454 case NON_LVALUE_EXPR:
2455 return const_hash (TREE_OPERAND (exp, 0)) * 7 + 2;
2457 default:
2458 /* A language specific constant. Just hash the code. */
2459 return code % MAX_HASH_TABLE;
2462 /* Compute hashing function */
2463 hi = len;
2464 for (i = 0; i < len; i++)
2465 hi = ((hi * 613) + (unsigned) (p[i]));
2467 hi &= (1 << HASHBITS) - 1;
2468 hi %= MAX_HASH_TABLE;
2469 return hi;
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. */
2475 static int
2476 compare_constant (exp, desc)
2477 tree exp;
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)
2494 tree exp;
2495 const unsigned char *p;
2497 register const unsigned char *strp;
2498 register int len;
2499 register enum tree_code code = TREE_CODE (exp);
2501 if (code != (enum tree_code) *p++)
2502 return 0;
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. */
2507 switch (code)
2509 case INTEGER_CST:
2510 /* Integer constants are the same only if the same width of type. */
2511 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2512 return 0;
2514 strp = (unsigned char *) &TREE_INT_CST (exp);
2515 len = sizeof TREE_INT_CST (exp);
2516 break;
2518 case REAL_CST:
2519 /* Real constants are the same only if the same width of type. */
2520 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2521 return 0;
2523 strp = (unsigned char *) &TREE_REAL_CST (exp);
2524 len = sizeof TREE_REAL_CST (exp);
2525 break;
2527 case STRING_CST:
2528 if (flag_writable_strings)
2529 return 0;
2531 if ((enum machine_mode) *p++ != TYPE_MODE (TREE_TYPE (exp)))
2532 return 0;
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)))
2538 return 0;
2540 p += sizeof TREE_STRING_LENGTH (exp);
2541 break;
2543 case COMPLEX_CST:
2544 p = compare_constant_1 (TREE_REALPART (exp), p);
2545 if (p == 0)
2546 return 0;
2548 return compare_constant_1 (TREE_IMAGPART (exp), p);
2550 case CONSTRUCTOR:
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))
2559 return 0;
2561 p += sizeof xlen;
2562 break;
2564 else
2566 register tree link;
2567 int length = list_length (CONSTRUCTOR_ELTS (exp));
2568 tree type;
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))
2574 have_purpose = 1;
2576 if (memcmp ((char *) &length, p, sizeof length))
2577 return 0;
2579 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
2584 values. */
2585 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2586 type = TREE_TYPE (exp);
2587 else
2588 type = 0;
2590 if (memcmp ((char *) &type, p, sizeof type))
2591 return 0;
2593 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2595 if (memcmp ((char *) &mode, p, sizeof mode))
2596 return 0;
2598 p += sizeof mode;
2601 p += sizeof type;
2603 if (memcmp ((char *) &have_purpose, p, sizeof have_purpose))
2604 return 0;
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))
2614 return 0;
2616 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)
2624 return 0;
2626 else
2628 tree zero = 0;
2630 if (memcmp ((char *) &zero, p, sizeof zero))
2631 return 0;
2633 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)))
2641 return 0;
2643 p += sizeof TREE_PURPOSE (link);
2645 else if (TREE_PURPOSE (link))
2647 if ((p = compare_constant_1 (TREE_PURPOSE (link), p)) == 0)
2648 return 0;
2650 else if (have_purpose)
2652 int zero = 0;
2654 if (memcmp ((char *) &zero, p, sizeof zero))
2655 return 0;
2657 p += sizeof zero;
2661 return p;
2664 case ADDR_EXPR:
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. */
2672 while (--len >= 0)
2673 if (*p++ != *strp++)
2674 return 0;
2676 /* Compare symbol name. */
2677 strp = (const unsigned char *) XSTR (value.base, 0);
2678 len = strlen ((const char *) strp) + 1;
2680 break;
2682 case PLUS_EXPR:
2683 case MINUS_EXPR:
2684 case RANGE_EXPR:
2685 p = compare_constant_1 (TREE_OPERAND (exp, 0), p);
2686 if (p == 0)
2687 return 0;
2689 return compare_constant_1 (TREE_OPERAND (exp, 1), p);
2691 case NOP_EXPR:
2692 case CONVERT_EXPR:
2693 case NON_LVALUE_EXPR:
2694 return compare_constant_1 (TREE_OPERAND (exp, 0), p);
2696 default:
2697 if (lang_expand_constant)
2699 exp = (*lang_expand_constant) (exp);
2700 return compare_constant_1 (exp, p);
2702 return 0;
2705 /* Compare constant contents. */
2706 while (--len >= 0)
2707 if (*p++ != *strp++)
2708 return 0;
2710 return p;
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)
2718 tree exp;
2720 struct constant_descriptor *next = 0;
2721 char *label = 0;
2722 rtx rtl = 0;
2723 int pad;
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));
2736 if (pad > 0)
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. */
2748 static void
2749 record_constant_1 (exp)
2750 tree exp;
2752 register const unsigned char *strp;
2753 register int len;
2754 register enum tree_code code = TREE_CODE (exp);
2756 obstack_1grow (&permanent_obstack, (unsigned int) code);
2758 switch (code)
2760 case INTEGER_CST:
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);
2764 break;
2766 case REAL_CST:
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);
2770 break;
2772 case STRING_CST:
2773 if (flag_writable_strings)
2774 return;
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));
2781 break;
2783 case COMPLEX_CST:
2784 record_constant_1 (TREE_REALPART (exp));
2785 record_constant_1 (TREE_IMAGPART (exp));
2786 return;
2788 case CONSTRUCTOR:
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,
2796 nbytes);
2797 return;
2799 else
2801 register tree link;
2802 int length = list_length (CONSTRUCTOR_ELTS (exp));
2803 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2804 tree type;
2805 int have_purpose = 0;
2807 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2808 if (TREE_PURPOSE (link))
2809 have_purpose = 1;
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);
2819 else
2820 type = 0;
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));
2840 else
2842 tree zero = 0;
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)
2857 int zero = 0;
2859 obstack_grow (&permanent_obstack,
2860 (char *) &zero, sizeof zero);
2864 return;
2866 case ADDR_EXPR:
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))
2877 case SYMBOL_REF:
2878 /* Record the symbol name. */
2879 obstack_grow (&permanent_obstack, XSTR (value.base, 0),
2880 strlen (XSTR (value.base, 0)) + 1);
2881 break;
2882 case LABEL_REF:
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),
2887 sizeof (rtx));
2888 break;
2889 default:
2890 abort ();
2893 return;
2895 case PLUS_EXPR:
2896 case MINUS_EXPR:
2897 case RANGE_EXPR:
2898 record_constant_1 (TREE_OPERAND (exp, 0));
2899 record_constant_1 (TREE_OPERAND (exp, 1));
2900 return;
2902 case NOP_EXPR:
2903 case CONVERT_EXPR:
2904 case NON_LVALUE_EXPR:
2905 record_constant_1 (TREE_OPERAND (exp, 0));
2906 return;
2908 default:
2909 if (lang_expand_constant)
2911 exp = (*lang_expand_constant) (exp);
2912 record_constant_1 (exp);
2914 return;
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;
2927 tree exp;
2928 int reloc;
2929 int labelno;
2932 static struct deferred_constant *deferred_constants;
2934 /* Another list of constants which should be output after the
2935 function. */
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. */
2944 void
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. */
2953 void
2954 output_deferred_addressed_constants ()
2956 struct deferred_constant *p, *next;
2958 defer_addressed_constants_flag--;
2960 if (defer_addressed_constants_flag > 0)
2961 return;
2963 for (p = deferred_constants; p; p = next)
2965 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2966 next = p->next;
2967 free (p);
2970 deferred_constants = 0;
2973 /* Output any constants which should appear after a function. */
2975 static void
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);
2983 next = p->next;
2984 free (p);
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. */
2994 static tree
2995 copy_constant (exp)
2996 tree exp;
2998 switch (TREE_CODE (exp))
3000 case ADDR_EXPR:
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)));
3006 else
3007 return copy_node (exp);
3009 case INTEGER_CST:
3010 case REAL_CST:
3011 case STRING_CST:
3012 return copy_node (exp);
3014 case COMPLEX_CST:
3015 return build_complex (TREE_TYPE (exp),
3016 copy_constant (TREE_REALPART (exp)),
3017 copy_constant (TREE_IMAGPART (exp)));
3019 case PLUS_EXPR:
3020 case MINUS_EXPR:
3021 return build (TREE_CODE (exp), TREE_TYPE (exp),
3022 copy_constant (TREE_OPERAND (exp, 0)),
3023 copy_constant (TREE_OPERAND (exp, 1)));
3025 case NOP_EXPR:
3026 case CONVERT_EXPR:
3027 case NON_LVALUE_EXPR:
3028 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3029 copy_constant (TREE_OPERAND (exp, 0)));
3031 case CONSTRUCTOR:
3033 tree copy = copy_node (exp);
3034 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
3035 tree tail;
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));
3044 return copy;
3047 default:
3048 abort ();
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)
3068 tree exp;
3069 int defer;
3071 register int hash;
3072 register struct constant_descriptor *desc;
3073 struct deferred_string **defstr;
3074 char label[256];
3075 int reloc;
3076 int found = 1;
3077 int after_function = 0;
3078 int labelno = -1;
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))
3096 break;
3098 if (desc == 0)
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. */
3115 desc->rtl
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);
3121 found = 0;
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
3131 encoded in it. */
3132 if (! found)
3134 ENCODE_SECTION_INFO (exp);
3135 desc->rtl = TREE_CST_RTL (exp);
3136 desc->label = XSTR (XEXP (desc->rtl, 0), 0);
3138 #endif
3140 #ifdef CONSTANT_AFTER_FUNCTION_P
3141 if (current_function_decl != 0
3142 && CONSTANT_AFTER_FUNCTION_P (exp))
3143 after_function = 1;
3144 #endif
3146 if (found
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);
3153 if (defstr)
3155 /* If the string is currently deferred but we need to output it now,
3156 remove it from deferred string hash table. */
3157 found = 0;
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). */
3166 if (! found)
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);
3174 p->reloc = reloc;
3175 p->labelno = labelno;
3176 if (after_function)
3178 p->next = after_function_constants;
3179 after_function_constants = p;
3181 else
3183 p->next = deferred_constants;
3184 deferred_constants = p;
3187 else
3189 /* Do no output if -fsyntax-only. */
3190 if (! flag_syntax_only)
3192 if (TREE_CODE (exp) != STRING_CST
3193 || !defer
3194 || flag_writable_strings
3195 || (defstr = (struct deferred_string **)
3196 htab_find_slot_with_hash (const_str_htab,
3197 desc->label,
3198 STRHASH (desc->label),
3199 INSERT)) == NULL)
3200 output_constant_def_contents (exp, reloc, labelno);
3201 else
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;
3211 *defstr = p;
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. */
3224 static void
3225 output_constant_def_contents (exp, reloc, labelno)
3226 tree exp;
3227 int reloc;
3228 int labelno;
3230 int align;
3232 if (IN_NAMED_SECTION (exp))
3233 named_section (exp, NULL, reloc);
3234 else
3236 /* First switch to text section, except for writable strings. */
3237 #ifdef SELECT_SECTION
3238 SELECT_SECTION (exp, reloc);
3239 #else
3240 if (((TREE_CODE (exp) == STRING_CST) && flag_writable_strings)
3241 || (flag_pic && reloc))
3242 data_section ();
3243 else
3244 readonly_data_section ();
3245 #endif
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);
3252 #endif
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;
3277 const char *label;
3278 rtx constant;
3279 enum machine_mode mode;
3280 int labelno;
3281 int align;
3282 int offset;
3283 int mark;
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. */
3294 void
3295 init_varasm_status (f)
3296 struct function *f;
3298 struct varasm_status *p;
3299 p = (struct varasm_status *) xmalloc (sizeof (struct varasm_status));
3300 f->varasm = p;
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. */
3315 static void
3316 mark_pool_constant (pc)
3317 struct pool_constant *pc;
3319 while (pc)
3321 ggc_mark (pc);
3322 ggc_mark_rtx (pc->constant);
3323 pc = pc->next;
3327 /* Mark P for GC. */
3329 void
3330 mark_varasm_status (p)
3331 struct varasm_status *p;
3333 if (p == NULL)
3334 return;
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. */
3344 void
3345 free_varasm_status (f)
3346 struct function *f;
3348 struct varasm_status *p;
3349 int i;
3351 p = f->varasm;
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];
3359 while (cd) {
3360 struct constant_descriptor* next = cd->next;
3361 free (cd);
3362 cd = next;
3366 free (p->x_const_rtx_hash_table);
3367 free (p->x_const_rtx_sym_hash_table);
3368 free (p);
3369 f->varasm = NULL;
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. */
3378 static void
3379 decode_rtx_const (mode, x, value)
3380 enum machine_mode mode;
3381 rtx x;
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. */
3388 value->mode = mode;
3390 switch (GET_CODE (x))
3392 case CONST_DOUBLE:
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);
3400 else
3402 value->un.di.low = CONST_DOUBLE_LOW (x);
3403 value->un.di.high = CONST_DOUBLE_HIGH (x);
3405 break;
3407 case CONST_INT:
3408 value->un.addr.offset = INTVAL (x);
3409 break;
3411 case SYMBOL_REF:
3412 case LABEL_REF:
3413 case PC:
3414 value->un.addr.base = x;
3415 break;
3417 case CONST:
3418 x = XEXP (x, 0);
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));
3429 else
3431 value->un.addr.base = x;
3432 value->un.addr.offset = 0;
3434 break;
3436 default:
3437 abort ();
3440 if (value->kind == RTX_INT && value->un.addr.base != 0)
3441 switch (GET_CODE (value->un.addr.base))
3443 case SYMBOL_REF:
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);
3447 break;
3449 case LABEL_REF:
3450 /* For a LABEL_REF, compare labels. */
3451 value->un.addr.base = XEXP (value->un.addr.base, 0);
3453 default:
3454 break;
3458 /* Given a MINUS expression, simplify it if both sides
3459 include the same symbol. */
3462 simplify_subtraction (x)
3463 rtx 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);
3472 return x;
3475 /* Compute a hash code for a constant RTL expression. */
3477 static int
3478 const_hash_rtx (mode, x)
3479 enum machine_mode mode;
3480 rtx x;
3482 register int hi;
3483 register size_t i;
3485 struct rtx_const value;
3486 decode_rtx_const (mode, x, &value);
3488 /* Compute hashing function */
3489 hi = 0;
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;
3495 return hi;
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. */
3501 static int
3502 compare_constant_rtx (mode, x, desc)
3503 enum machine_mode mode;
3504 rtx x;
3505 struct constant_descriptor *desc;
3507 register int *p = (int *) desc->u.contents;
3508 register int *strp;
3509 register int len;
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. */
3517 while (--len >= 0)
3518 if (*p++ != *strp++)
3519 return 0;
3521 return 1;
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;
3530 rtx x;
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);
3539 return ptr;
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;
3548 rtx x;
3550 register int hash;
3551 register struct constant_descriptor *desc;
3552 char label[256];
3553 const char *found = 0;
3554 rtx def;
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;
3579 break;
3582 if (found == 0)
3584 register struct pool_constant *pool;
3585 int align;
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;
3603 #endif
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));
3611 pool->desc = desc;
3612 pool->constant = x;
3613 pool->mode = mode;
3614 pool->labelno = const_labelno;
3615 pool->align = align;
3616 pool->offset = pool_offset;
3617 pool->mark = 1;
3618 pool->next = 0;
3620 if (last_pool == 0)
3621 first_pool = pool;
3622 else
3623 last_pool->next = pool;
3625 last_pool = 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);
3631 ++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;
3662 return 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)
3670 struct function *f;
3671 rtx 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)
3679 return pool;
3681 abort ();
3684 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3687 get_pool_constant (addr)
3688 rtx 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)
3697 struct function *f;
3698 rtx addr;
3700 return (find_pool_constant (f, addr))->constant;
3703 /* Similar, return the mode. */
3705 enum machine_mode
3706 get_pool_mode (addr)
3707 rtx addr;
3709 return (find_pool_constant (cfun, addr))->mode;
3712 enum machine_mode
3713 get_pool_mode_for_function (f, addr)
3714 struct function *f;
3715 rtx addr;
3717 return (find_pool_constant (f, addr))->mode;
3720 /* Similar, return the offset in the constant pool. */
3723 get_pool_offset (addr)
3724 rtx addr;
3726 return (find_pool_constant (cfun, addr))->offset;
3729 /* Return the size of the constant pool. */
3732 get_pool_size ()
3734 return pool_offset;
3737 /* Write all the constants in the constant pool. */
3739 void
3740 output_constant_pool (fnname, fndecl)
3741 const char *fnname ATTRIBUTE_UNUSED;
3742 tree fndecl ATTRIBUTE_UNUSED;
3744 struct pool_constant *pool;
3745 rtx x;
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);
3755 #endif
3757 for (pool = first_pool; pool; pool = pool->next)
3759 rtx tmp;
3761 x = pool->constant;
3763 if (! pool->mark)
3764 continue;
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. */
3775 tmp = x;
3776 switch (GET_CODE (x))
3778 case CONST:
3779 if (GET_CODE (XEXP (x, 0)) != PLUS
3780 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3781 break;
3782 tmp = XEXP (XEXP (x, 0), 0);
3783 /* FALLTHRU */
3785 case LABEL_REF:
3786 tmp = XEXP (x, 0);
3787 if (INSN_DELETED_P (tmp)
3788 || (GET_CODE (tmp) == NOTE
3789 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3791 abort ();
3792 x = const0_rtx;
3794 break;
3796 default:
3797 break;
3800 /* First switch to correct section. */
3801 #ifdef SELECT_RTX_SECTION
3802 SELECT_RTX_SECTION (pool->mode, x);
3803 #else
3804 readonly_data_section ();
3805 #endif
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);
3810 #endif
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))
3821 case MODE_FLOAT:
3822 if (GET_CODE (x) != CONST_DOUBLE)
3823 abort ();
3825 memcpy ((char *) &u, (char *) &CONST_DOUBLE_LOW (x), sizeof u);
3826 assemble_real (u.d, pool->mode);
3827 break;
3829 case MODE_INT:
3830 case MODE_PARTIAL_INT:
3831 assemble_integer (x, GET_MODE_SIZE (pool->mode), 1);
3832 break;
3834 default:
3835 abort ();
3838 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3839 done: ;
3840 #endif
3844 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3845 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3846 #endif
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. */
3856 static void
3857 mark_constant_pool ()
3859 register rtx insn;
3860 struct pool_constant *pool;
3862 if (first_pool == 0 && htab_elements (const_str_htab) == 0)
3863 return;
3865 for (pool = first_pool; pool; pool = pool->next)
3866 pool->mark = 0;
3868 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3869 if (INSN_P (insn))
3870 mark_constants (PATTERN (insn));
3872 for (insn = current_function_epilogue_delay_list;
3873 insn;
3874 insn = XEXP (insn, 1))
3875 if (INSN_P (insn))
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. */
3884 static void
3885 mark_constants (x)
3886 rtx x;
3888 register int i;
3889 register const char *format_ptr;
3891 if (x == 0)
3892 return;
3894 if (GET_CODE (x) == SYMBOL_REF)
3896 mark_constant (&x, NULL);
3897 return;
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)
3902 return;
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. */
3907 if (INSN_P (x))
3909 mark_constants (PATTERN (x));
3910 return;
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++)
3919 case 'e':
3920 mark_constants (XEXP (x, i));
3921 break;
3923 case 'E':
3924 if (XVEC (x, i) != 0)
3926 register int j;
3928 for (j = 0; j < XVECLEN (x, i); j++)
3929 mark_constants (XVECEXP (x, i, j));
3931 break;
3933 case 'S':
3934 case 's':
3935 case '0':
3936 case 'i':
3937 case 'w':
3938 case 'n':
3939 case 'u':
3940 break;
3942 default:
3943 abort ();
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. */
3952 static int
3953 mark_constant (current_rtx, data)
3954 rtx *current_rtx;
3955 void *data ATTRIBUTE_UNUSED;
3957 rtx x = *current_rtx;
3959 if (x == NULL_RTX)
3960 return 0;
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. */
3964 return -1;
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) {
3971 pool->mark = 1;
3972 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3974 else
3975 return -1;
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);
3984 if (defstr)
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);
3994 return 0;
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. */
4001 static int
4002 output_addressed_constants (exp)
4003 tree exp;
4005 int reloc = 0;
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))
4014 case ADDR_EXPR:
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);
4029 reloc = 1;
4030 break;
4032 case PLUS_EXPR:
4033 case MINUS_EXPR:
4034 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
4035 reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
4036 break;
4038 case NOP_EXPR:
4039 case CONVERT_EXPR:
4040 case NON_LVALUE_EXPR:
4041 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
4042 break;
4044 case CONSTRUCTOR:
4046 register tree link;
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));
4051 break;
4053 default:
4054 break;
4056 return reloc;
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. */
4069 tree
4070 initializer_constant_valid_p (value, endtype)
4071 tree value;
4072 tree 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))
4081 case CONSTRUCTOR:
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))
4086 return
4087 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
4088 endtype);
4090 return TREE_STATIC (value) ? null_pointer_node : 0;
4092 case INTEGER_CST:
4093 case REAL_CST:
4094 case STRING_CST:
4095 case COMPLEX_CST:
4096 return null_pointer_node;
4098 case ADDR_EXPR:
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);
4104 case CONVERT_EXPR:
4105 case NOP_EXPR:
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
4124 explicit value. */
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),
4129 endtype);
4130 if (inner == null_pointer_node)
4131 return null_pointer_node;
4132 break;
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),
4141 endtype);
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),
4153 endtype);
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),
4159 endtype);
4160 break;
4162 case PLUS_EXPR:
4163 if (! INTEGRAL_TYPE_P (endtype)
4164 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4166 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4167 endtype);
4168 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4169 endtype);
4170 /* If either term is absolute, use the other terms relocation. */
4171 if (valid0 == null_pointer_node)
4172 return valid1;
4173 if (valid1 == null_pointer_node)
4174 return valid0;
4176 break;
4178 case MINUS_EXPR:
4179 if (! INTEGRAL_TYPE_P (endtype)
4180 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4182 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4183 endtype);
4184 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4185 endtype);
4186 /* Win if second argument is absolute. */
4187 if (valid1 == null_pointer_node)
4188 return valid0;
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))
4206 tree op0, op1;
4207 op0 = TREE_OPERAND (value, 0);
4208 op1 = TREE_OPERAND (value, 1);
4209 STRIP_NOPS (op0);
4210 STRIP_NOPS (op1);
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;
4218 break;
4220 default:
4221 break;
4224 return 0;
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. */
4245 void
4246 output_constant (exp, size)
4247 register tree exp;
4248 register int 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)
4260 return;
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);
4282 return;
4285 switch (code)
4287 case CHAR_TYPE:
4288 case BOOLEAN_TYPE:
4289 case INTEGER_TYPE:
4290 case ENUMERAL_TYPE:
4291 case POINTER_TYPE:
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),
4300 size, 0))
4301 error ("initializer for integer value is too complicated");
4302 size = 0;
4303 break;
4305 case REAL_TYPE:
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));
4311 size = 0;
4312 break;
4314 case COMPLEX_TYPE:
4315 output_constant (TREE_REALPART (exp), size / 2);
4316 output_constant (TREE_IMAGPART (exp), size / 2);
4317 size -= (size / 2) * 2;
4318 break;
4320 case ARRAY_TYPE:
4321 if (TREE_CODE (exp) == CONSTRUCTOR)
4323 output_constructor (exp, size);
4324 return;
4326 else if (TREE_CODE (exp) == STRING_CST)
4328 int excess = 0;
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);
4337 size = excess;
4339 else
4340 abort ();
4341 break;
4343 case RECORD_TYPE:
4344 case UNION_TYPE:
4345 if (TREE_CODE (exp) == CONSTRUCTOR)
4346 output_constructor (exp, size);
4347 else
4348 abort ();
4349 return;
4351 case SET_TYPE:
4352 if (TREE_CODE (exp) == INTEGER_CST)
4353 assemble_integer (expand_expr (exp, NULL_RTX,
4354 VOIDmode, EXPAND_INITIALIZER),
4355 size, 1);
4356 else if (TREE_CODE (exp) == CONSTRUCTOR)
4358 unsigned char *buffer = (unsigned char *) alloca (size);
4359 if (get_set_constructor_bytes (exp, buffer, size))
4360 abort ();
4361 assemble_string ((char *) buffer, size);
4363 else
4364 error ("unknown set constructor type");
4365 return;
4367 default:
4368 break; /* ??? */
4371 if (size > 0)
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)
4382 tree val;
4384 tree max_index, i;
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))
4394 max_index = index;
4397 if (max_index == NULL_TREE)
4398 return 0;
4400 /* Compute the total number of array elements. */
4401 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
4402 convert (sizetype,
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. */
4415 static void
4416 output_constructor (exp, size)
4417 tree exp;
4418 int size;
4420 tree type = TREE_TYPE (exp);
4421 register tree link, field = 0;
4422 tree min_index = 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)
4431 abort ();
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
4448 more one). */
4449 for (link = CONSTRUCTOR_ELTS (exp);
4450 link;
4451 link = TREE_CHAIN (link),
4452 field = field ? TREE_CHAIN (field) : 0)
4454 tree val = TREE_VALUE (link);
4455 tree index = 0;
4457 /* The element in a union constructor specifies the proper field
4458 or index. */
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. */
4468 if (val != 0)
4469 STRIP_NOPS (val);
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. */
4482 if (val == 0)
4483 assemble_zeros (fieldsize);
4484 else
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;
4500 if (index != 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);
4508 total_bytes++;
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);
4518 total_bytes = pos;
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
4525 such a feature. */
4526 ASM_OUTPUT_ALIGN (asm_out_file, 0);
4528 /* Determine size this element should occupy. */
4529 if (field)
4531 fieldsize = 0;
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
4544 better be last. */
4545 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4546 abort ();
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);
4556 else
4557 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4559 /* Output the element's initial value. */
4560 if (val == 0)
4561 assemble_zeros (fieldsize);
4562 else
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)));
4571 else
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));
4579 if (val == 0)
4580 val = integer_zero_node;
4582 /* If this field does not start in this (or, next) byte,
4583 skip some bytes. */
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);
4590 total_bytes++;
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)
4603 byte = 0;
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
4612 this element. */
4613 while (next_offset < end_offset)
4615 int this_time;
4616 int shift;
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);
4626 total_bytes++;
4627 byte = 0;
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
4644 not from both. */
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;
4660 else
4661 abort ();
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));
4669 else
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
4680 not from both. */
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;
4693 else
4694 abort ();
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))
4700 << next_bit);
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);
4712 total_bytes++;
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)
4725 const char *name;
4726 const char *value;
4728 struct weak_syms *weak;
4730 weak = (struct weak_syms *) permalloc (sizeof (struct weak_syms));
4732 if (weak == NULL)
4733 return 0;
4735 weak->next = weak_decls;
4736 weak->name = name;
4737 weak->value = value;
4738 weak_decls = weak;
4740 return 1;
4742 #endif /* HANDLE_PRAGMA_WEAK */
4744 /* Declare DECL to be a weak symbol. */
4746 void
4747 declare_weak (decl)
4748 tree decl;
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);
4758 #endif
4761 /* Emit any pending weak declarations. */
4763 #ifdef HANDLE_PRAGMA_WEAK
4764 struct weak_syms * weak_decls;
4765 #endif
4767 void
4768 weak_finish ()
4770 #ifdef HANDLE_PRAGMA_WEAK
4771 if (HANDLE_PRAGMA_WEAK)
4773 struct weak_syms *t;
4774 for (t = weak_decls; t; t = t->next)
4776 if (t->name)
4778 ASM_WEAKEN_LABEL (asm_out_file, t->name);
4779 if (t->value)
4780 ASM_OUTPUT_DEF (asm_out_file, t->name, t->value);
4784 #endif
4787 /* Remove NAME from the pending list of weak symbols. This prevents
4788 the compiler from emitting multiple .weak directives which confuses
4789 some assemblers. */
4790 #ifdef ASM_WEAKEN_LABEL
4791 static void
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)
4802 t->name = NULL;
4805 #endif
4807 #endif
4809 void
4810 assemble_alias (decl, target)
4811 tree decl, target ATTRIBUTE_UNUSED;
4813 const char *name;
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)));
4832 else
4833 #endif
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);
4839 #else
4840 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4841 #endif
4842 TREE_ASM_WRITTEN (decl) = 1;
4843 #else
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;
4850 #else
4851 warning ("alias definitions not supported in this configuration; ignored");
4852 #endif
4853 #endif
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
4860 #else
4861 #define SUPPORTS_ONE_ONLY 0
4862 #endif
4863 #endif
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)
4874 return 1;
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. */
4881 void
4882 make_decl_one_only (decl)
4883 tree decl;
4885 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4886 abort ();
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);
4897 #endif
4898 DECL_ONE_ONLY (decl) = 1;
4900 else if (SUPPORTS_WEAK)
4901 DECL_WEAK (decl) = 1;
4902 else
4903 abort ();
4906 void
4907 init_varasm_once ()
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. */
4918 void
4919 assemble_eh_label (name)
4920 const char *name;
4922 #ifdef ASM_OUTPUT_EH_LABEL
4923 ASM_OUTPUT_EH_LABEL (asm_out_file, name);
4924 #else
4925 assemble_label (name);
4926 #endif
4929 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
4931 void
4932 assemble_eh_align (align)
4933 int 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));
4938 #else
4939 assemble_align (align);
4940 #endif
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)
4948 rtx x;
4949 int size;
4950 int force;
4953 switch (size)
4955 #ifdef ASM_OUTPUT_EH_CHAR
4956 case 1:
4957 ASM_OUTPUT_EH_CHAR (asm_out_file, x);
4958 return 1;
4959 #endif
4961 #ifdef ASM_OUTPUT_EH_SHORT
4962 case 2:
4963 ASM_OUTPUT_EH_SHORT (asm_out_file, x);
4964 return 1;
4965 #endif
4967 #ifdef ASM_OUTPUT_EH_INT
4968 case 4:
4969 ASM_OUTPUT_EH_INT (asm_out_file, x);
4970 return 1;
4971 #endif
4973 #ifdef ASM_OUTPUT_EH_DOUBLE_INT
4974 case 8:
4975 ASM_OUTPUT_EH_DOUBLE_INT (asm_out_file, x);
4976 return 1;
4977 #endif
4979 default:
4980 break;
4982 return (assemble_integer (x, size, force));