* loop.h (struct movables): Remove `num'.
[official-gcc.git] / gcc / varasm.c
blob862946a5f2c6d3705f823ba9922f38e6e1bd809b
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 "output.h"
41 #include "real.h"
42 #include "toplev.h"
43 #include "dbxout.h"
44 #include "sdbout.h"
45 #include "obstack.h"
46 #include "hashtab.h"
47 #include "c-pragma.h"
48 #include "ggc.h"
49 #include "tm_p.h"
51 #ifdef XCOFF_DEBUGGING_INFO
52 #include "xcoffout.h"
53 #endif
55 #ifndef TRAMPOLINE_ALIGNMENT
56 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
57 #endif
59 #ifndef ASM_STABS_OP
60 #define ASM_STABS_OP "\t.stabs\t"
61 #endif
63 /* Define the prefix to use when check_memory_usage_flag is enable. */
64 #define CHKR_PREFIX "_CHKR_"
65 #define CHKR_PREFIX_SIZE (sizeof (CHKR_PREFIX) - 1)
67 /* File in which assembler code is being written. */
69 extern FILE *asm_out_file;
71 /* The (assembler) name of the first globally-visible object output. */
72 const char *first_global_object_name;
73 const char *weak_global_object_name;
75 extern struct obstack permanent_obstack;
76 #define obstack_chunk_alloc xmalloc
78 struct addr_const;
79 struct constant_descriptor;
80 struct rtx_const;
81 struct pool_constant;
83 #define MAX_RTX_HASH_TABLE 61
85 struct varasm_status
87 /* Hash facility for making memory-constants
88 from constant rtl-expressions. It is used on RISC machines
89 where immediate integer arguments and constant addresses are restricted
90 so that such constants must be stored in memory.
92 This pool of constants is reinitialized for each function
93 so each function gets its own constants-pool that comes right before
94 it. */
95 struct constant_descriptor **x_const_rtx_hash_table;
96 struct pool_constant **x_const_rtx_sym_hash_table;
98 /* Pointers to first and last constant in pool. */
99 struct pool_constant *x_first_pool, *x_last_pool;
101 /* Current offset in constant pool (does not include any machine-specific
102 header). */
103 int x_pool_offset;
105 /* Chain of all CONST_DOUBLE rtx's constructed for the current function.
106 They are chained through the CONST_DOUBLE_CHAIN.
107 A CONST_DOUBLE rtx has CONST_DOUBLE_MEM != cc0_rtx iff it is on this chain.
108 In that case, CONST_DOUBLE_MEM is either a MEM,
109 or const0_rtx if no MEM has been made for this CONST_DOUBLE yet. */
110 rtx x_const_double_chain;
113 #define const_rtx_hash_table (cfun->varasm->x_const_rtx_hash_table)
114 #define const_rtx_sym_hash_table (cfun->varasm->x_const_rtx_sym_hash_table)
115 #define first_pool (cfun->varasm->x_first_pool)
116 #define last_pool (cfun->varasm->x_last_pool)
117 #define pool_offset (cfun->varasm->x_pool_offset)
118 #define const_double_chain (cfun->varasm->x_const_double_chain)
120 /* Number for making the label on the next
121 constant that is stored in memory. */
123 int const_labelno;
125 /* Number for making the label on the next
126 static variable internal to a function. */
128 int var_labelno;
130 /* Carry information from ASM_DECLARE_OBJECT_NAME
131 to ASM_FINISH_DECLARE_OBJECT. */
133 int size_directive_output;
135 /* The last decl for which assemble_variable was called,
136 if it did ASM_DECLARE_OBJECT_NAME.
137 If the last call to assemble_variable didn't do that,
138 this holds 0. */
140 tree last_assemble_variable_decl;
142 static const char *strip_reg_name PARAMS ((const char *));
143 static int contains_pointers_p PARAMS ((tree));
144 static void decode_addr_const PARAMS ((tree, struct addr_const *));
145 static int const_hash PARAMS ((tree));
146 static int compare_constant PARAMS ((tree,
147 struct constant_descriptor *));
148 static const unsigned char *compare_constant_1 PARAMS ((tree, const unsigned char *));
149 static struct constant_descriptor *record_constant PARAMS ((tree));
150 static void record_constant_1 PARAMS ((tree));
151 static tree copy_constant PARAMS ((tree));
152 static void output_constant_def_contents PARAMS ((tree, int, int));
153 static void decode_rtx_const PARAMS ((enum machine_mode, rtx,
154 struct rtx_const *));
155 static int const_hash_rtx PARAMS ((enum machine_mode, rtx));
156 static int compare_constant_rtx PARAMS ((enum machine_mode, rtx,
157 struct constant_descriptor *));
158 static struct constant_descriptor *record_constant_rtx PARAMS ((enum machine_mode,
159 rtx));
160 static struct pool_constant *find_pool_constant PARAMS ((struct function *, rtx));
161 static void mark_constant_pool PARAMS ((void));
162 static void mark_constants PARAMS ((rtx));
163 static int mark_constant PARAMS ((rtx *current_rtx, void *data));
164 static int output_addressed_constants PARAMS ((tree));
165 static void output_after_function_constants PARAMS ((void));
166 static unsigned HOST_WIDE_INT array_size_for_constructor PARAMS ((tree));
167 static void output_constructor PARAMS ((tree, int));
168 #ifdef ASM_WEAKEN_LABEL
169 static void remove_from_pending_weak_list PARAMS ((const char *));
170 #endif
171 #ifdef ASM_OUTPUT_BSS
172 static void asm_output_bss PARAMS ((FILE *, tree, const char *, int, int));
173 #endif
174 #ifdef BSS_SECTION_ASM_OP
175 #ifdef ASM_OUTPUT_ALIGNED_BSS
176 static void asm_output_aligned_bss PARAMS ((FILE *, tree, const char *,
177 int, int));
178 #endif
179 #endif /* BSS_SECTION_ASM_OP */
180 static void mark_pool_constant PARAMS ((struct pool_constant *));
181 static void mark_const_hash_entry PARAMS ((void *));
182 static int mark_const_str_htab_1 PARAMS ((void **, void *));
183 static void mark_const_str_htab PARAMS ((void *));
184 static hashval_t const_str_htab_hash PARAMS ((const void *x));
185 static int const_str_htab_eq PARAMS ((const void *x, const void *y));
186 static void const_str_htab_del PARAMS ((void *));
187 static void asm_emit_uninitialised PARAMS ((tree, const char*, int, int));
189 static enum in_section { no_section, in_text, in_data, in_named
190 #ifdef BSS_SECTION_ASM_OP
191 , in_bss
192 #endif
193 #ifdef EH_FRAME_SECTION_ASM_OP
194 , in_eh_frame
195 #endif
196 #ifdef EXTRA_SECTIONS
197 , EXTRA_SECTIONS
198 #endif
199 } in_section = no_section;
201 /* Return a non-zero value if DECL has a section attribute. */
202 #ifndef IN_NAMED_SECTION
203 #define IN_NAMED_SECTION(DECL) \
204 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
205 && DECL_SECTION_NAME (DECL) != NULL_TREE)
206 #endif
208 /* Text of section name when in_section == in_named. */
209 static const char *in_named_name;
211 /* Define functions like text_section for any extra sections. */
212 #ifdef EXTRA_SECTION_FUNCTIONS
213 EXTRA_SECTION_FUNCTIONS
214 #endif
216 /* Tell assembler to switch to text section. */
218 void
219 text_section ()
221 if (in_section != in_text)
223 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
224 in_section = in_text;
228 /* Tell assembler to switch to data section. */
230 void
231 data_section ()
233 if (in_section != in_data)
235 if (flag_shared_data)
237 #ifdef SHARED_SECTION_ASM_OP
238 fprintf (asm_out_file, "%s\n", SHARED_SECTION_ASM_OP);
239 #else
240 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
241 #endif
243 else
244 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
246 in_section = in_data;
249 /* Tell assembler to ALWAYS switch to data section, in case
250 it's not sure where it it. */
252 void
253 force_data_section ()
255 in_section = no_section;
256 data_section ();
259 /* Tell assembler to switch to read-only data section. This is normally
260 the text section. */
262 void
263 readonly_data_section ()
265 #ifdef READONLY_DATA_SECTION
266 READONLY_DATA_SECTION (); /* Note this can call data_section. */
267 #else
268 text_section ();
269 #endif
272 /* Determine if we're in the text section. */
275 in_text_section ()
277 return in_section == in_text;
280 /* Determine if we're in the data section. */
283 in_data_section ()
285 return in_section == in_data;
288 /* Tell assembler to change to section NAME for DECL.
289 If DECL is NULL, just switch to section NAME.
290 If NAME is NULL, get the name from DECL.
291 If RELOC is 1, the initializer for DECL contains relocs. */
293 void
294 named_section (decl, name, reloc)
295 tree decl;
296 const char *name;
297 int reloc ATTRIBUTE_UNUSED;
299 if (decl != NULL_TREE && !DECL_P (decl))
300 abort ();
301 if (name == NULL)
302 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
304 if (in_section != in_named || strcmp (name, in_named_name))
306 #ifdef ASM_OUTPUT_SECTION_NAME
307 ASM_OUTPUT_SECTION_NAME (asm_out_file, decl, name, reloc);
308 #else
309 /* Section attributes are not supported if this macro isn't provided -
310 some host formats don't support them at all. The front-end should
311 already have flagged this as an error. */
312 abort ();
313 #endif
315 in_named_name = ggc_strdup (name);
316 in_section = in_named;
320 #ifdef BSS_SECTION_ASM_OP
322 /* Tell the assembler to switch to the bss section. */
324 void
325 bss_section ()
327 if (in_section != in_bss)
329 #ifdef SHARED_BSS_SECTION_ASM_OP
330 if (flag_shared_data)
331 fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
332 else
333 #endif
334 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
336 in_section = in_bss;
340 #ifdef ASM_OUTPUT_BSS
342 /* Utility function for ASM_OUTPUT_BSS for targets to use if
343 they don't support alignments in .bss.
344 ??? It is believed that this function will work in most cases so such
345 support is localized here. */
347 static void
348 asm_output_bss (file, decl, name, size, rounded)
349 FILE *file;
350 tree decl ATTRIBUTE_UNUSED;
351 const char *name;
352 int size ATTRIBUTE_UNUSED, rounded;
354 ASM_GLOBALIZE_LABEL (file, name);
355 bss_section ();
356 #ifdef ASM_DECLARE_OBJECT_NAME
357 last_assemble_variable_decl = decl;
358 ASM_DECLARE_OBJECT_NAME (file, name, decl);
359 #else
360 /* Standard thing is just output label for the object. */
361 ASM_OUTPUT_LABEL (file, name);
362 #endif /* ASM_DECLARE_OBJECT_NAME */
363 ASM_OUTPUT_SKIP (file, rounded);
366 #endif
368 #ifdef ASM_OUTPUT_ALIGNED_BSS
370 /* Utility function for targets to use in implementing
371 ASM_OUTPUT_ALIGNED_BSS.
372 ??? It is believed that this function will work in most cases so such
373 support is localized here. */
375 static void
376 asm_output_aligned_bss (file, decl, name, size, align)
377 FILE *file;
378 tree decl;
379 const char *name;
380 int size, align;
382 ASM_GLOBALIZE_LABEL (file, name);
383 bss_section ();
384 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
385 #ifdef ASM_DECLARE_OBJECT_NAME
386 last_assemble_variable_decl = decl;
387 ASM_DECLARE_OBJECT_NAME (file, name, decl);
388 #else
389 /* Standard thing is just output label for the object. */
390 ASM_OUTPUT_LABEL (file, name);
391 #endif /* ASM_DECLARE_OBJECT_NAME */
392 ASM_OUTPUT_SKIP (file, size ? size : 1);
395 #endif
397 #endif /* BSS_SECTION_ASM_OP */
399 #ifdef EH_FRAME_SECTION_ASM_OP
400 void
401 eh_frame_section ()
403 if (in_section != in_eh_frame)
405 fprintf (asm_out_file, "%s\n", EH_FRAME_SECTION_ASM_OP);
406 in_section = in_eh_frame;
409 #endif
411 /* Switch to the section for function DECL.
413 If DECL is NULL_TREE, switch to the text section.
414 ??? It's not clear that we will ever be passed NULL_TREE, but it's
415 safer to handle it. */
417 void
418 function_section (decl)
419 tree decl;
421 if (decl != NULL_TREE
422 && DECL_SECTION_NAME (decl) != NULL_TREE)
423 named_section (decl, (char *) 0, 0);
424 else
425 text_section ();
428 /* Switch to section for variable DECL.
430 RELOC is the `reloc' argument to SELECT_SECTION. */
432 void
433 variable_section (decl, reloc)
434 tree decl;
435 int reloc;
437 if (IN_NAMED_SECTION (decl))
438 named_section (decl, NULL, reloc);
439 else
441 /* C++ can have const variables that get initialized from constructors,
442 and thus can not be in a readonly section. We prevent this by
443 verifying that the initial value is constant for objects put in a
444 readonly section.
446 error_mark_node is used by the C front end to indicate that the
447 initializer has not been seen yet. In this case, we assume that
448 the initializer must be constant.
450 C++ uses error_mark_node for variables that have complicated
451 initializers, but these variables go in BSS so we won't be called
452 for them. */
454 #ifdef SELECT_SECTION
455 SELECT_SECTION (decl, reloc);
456 #else
457 if (DECL_READONLY_SECTION (decl, reloc))
458 readonly_data_section ();
459 else
460 data_section ();
461 #endif
465 /* Tell assembler to switch to the section for the exception handling
466 table. */
468 void
469 exception_section ()
471 #if defined (EXCEPTION_SECTION)
472 EXCEPTION_SECTION ();
473 #else
474 #ifdef ASM_OUTPUT_SECTION_NAME
475 named_section (NULL_TREE, ".gcc_except_table", 0);
476 #else
477 if (flag_pic)
478 data_section ();
479 else
480 readonly_data_section ();
481 #endif
482 #endif
485 /* Given NAME, a putative register name, discard any customary prefixes. */
487 static const char *
488 strip_reg_name (name)
489 const char *name;
491 #ifdef REGISTER_PREFIX
492 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
493 name += strlen (REGISTER_PREFIX);
494 #endif
495 if (name[0] == '%' || name[0] == '#')
496 name++;
497 return name;
500 /* Decode an `asm' spec for a declaration as a register name.
501 Return the register number, or -1 if nothing specified,
502 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
503 or -3 if ASMSPEC is `cc' and is not recognized,
504 or -4 if ASMSPEC is `memory' and is not recognized.
505 Accept an exact spelling or a decimal number.
506 Prefixes such as % are optional. */
509 decode_reg_name (asmspec)
510 const char *asmspec;
512 if (asmspec != 0)
514 int i;
516 /* Get rid of confusing prefixes. */
517 asmspec = strip_reg_name (asmspec);
519 /* Allow a decimal number as a "register name". */
520 for (i = strlen (asmspec) - 1; i >= 0; i--)
521 if (! (asmspec[i] >= '0' && asmspec[i] <= '9'))
522 break;
523 if (asmspec[0] != 0 && i < 0)
525 i = atoi (asmspec);
526 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
527 return i;
528 else
529 return -2;
532 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
533 if (reg_names[i][0]
534 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
535 return i;
537 #ifdef ADDITIONAL_REGISTER_NAMES
539 static struct { const char *name; int number; } table[]
540 = ADDITIONAL_REGISTER_NAMES;
542 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
543 if (! strcmp (asmspec, table[i].name))
544 return table[i].number;
546 #endif /* ADDITIONAL_REGISTER_NAMES */
548 if (!strcmp (asmspec, "memory"))
549 return -4;
551 if (!strcmp (asmspec, "cc"))
552 return -3;
554 return -2;
557 return -1;
560 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
561 have static storage duration. In other words, it should not be an
562 automatic variable, including PARM_DECLs.
564 There is, however, one exception: this function handles variables
565 explicitly placed in a particular register by the user.
567 ASMSPEC, if not 0, is the string which the user specified as the
568 assembler symbol name.
570 This is never called for PARM_DECL nodes. */
572 void
573 make_decl_rtl (decl, asmspec)
574 tree decl;
575 const char *asmspec;
577 int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
578 const char *name = 0;
579 const char *new_name = 0;
580 int reg_number;
582 /* Check that we are not being given an automatic variable. */
583 /* A weak alias has TREE_PUBLIC set but not the other bits. */
584 if (TREE_CODE (decl) == PARM_DECL
585 || TREE_CODE (decl) == RESULT_DECL
586 || (TREE_CODE (decl) == VAR_DECL
587 && !TREE_STATIC (decl)
588 && !TREE_PUBLIC (decl)
589 && !DECL_EXTERNAL (decl)
590 && !DECL_REGISTER (decl)))
591 abort ();
592 /* And that we were not given a type or a label. */
593 else if (TREE_CODE (decl) == TYPE_DECL
594 || TREE_CODE (decl) == LABEL_DECL)
595 abort ();
597 /* For a duplicate declaration, we can be called twice on the
598 same DECL node. Don't discard the RTL already made. */
599 if (DECL_RTL_SET_P (decl))
601 /* If the old RTL had the wrong mode, fix the mode. */
602 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
604 rtx rtl = DECL_RTL (decl);
605 PUT_MODE (rtl, DECL_MODE (decl));
608 /* ??? Another way to do this would be to do what halfpic.c does
609 and maintain a hashed table of such critters. */
610 /* ??? Another way to do this would be to pass a flag bit to
611 ENCODE_SECTION_INFO saying whether this is a new decl or not. */
612 /* Let the target reassign the RTL if it wants.
613 This is necessary, for example, when one machine specific
614 decl attribute overrides another. */
615 #ifdef REDO_SECTION_INFO_P
616 if (REDO_SECTION_INFO_P (decl))
617 ENCODE_SECTION_INFO (decl);
618 #endif
619 return;
622 new_name = name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
624 reg_number = decode_reg_name (asmspec);
625 if (reg_number == -2)
627 /* ASMSPEC is given, and not the name of a register. Mark the
628 name with a star so assemble_name won't munge it. */
629 char *starred = alloca (strlen (asmspec) + 2);
630 starred[0] = '*';
631 strcpy (starred + 1, asmspec);
632 new_name = starred;
635 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
637 /* First detect errors in declaring global registers. */
638 if (reg_number == -1)
639 error_with_decl (decl, "register name not specified for `%s'");
640 else if (reg_number < 0)
641 error_with_decl (decl, "invalid register name for `%s'");
642 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
643 error_with_decl (decl,
644 "data type of `%s' isn't suitable for a register");
645 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
646 error_with_decl (decl,
647 "register specified for `%s' isn't suitable for data type");
648 /* Now handle properly declared static register variables. */
649 else
651 int nregs;
653 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
655 DECL_INITIAL (decl) = 0;
656 error ("global register variable has initial value");
658 if (TREE_THIS_VOLATILE (decl))
659 warning ("volatile register variables don't work as you might wish");
661 /* If the user specified one of the eliminables registers here,
662 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
663 confused with that register and be eliminated. Although this
664 usage is somewhat suspect, we nevertheless use the following
665 kludge to avoid setting DECL_RTL to frame_pointer_rtx. */
667 SET_DECL_RTL (decl,
668 gen_rtx_REG (DECL_MODE (decl),
669 FIRST_PSEUDO_REGISTER));
670 REGNO (DECL_RTL (decl)) = reg_number;
671 REG_USERVAR_P (DECL_RTL (decl)) = 1;
673 if (TREE_STATIC (decl))
675 /* Make this register global, so not usable for anything
676 else. */
677 #ifdef ASM_DECLARE_REGISTER_GLOBAL
678 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
679 #endif
680 nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
681 while (nregs > 0)
682 globalize_reg (reg_number + --nregs);
685 /* As a register variable, it has no section. */
686 return;
690 /* Now handle ordinary static variables and functions (in memory).
691 Also handle vars declared register invalidly. */
693 if (reg_number >= 0 || reg_number == -3)
694 error_with_decl (decl,
695 "register name given for non-register variable `%s'");
697 /* Specifying a section attribute on a variable forces it into a
698 non-.bss section, and thus it cannot be common. */
699 if (TREE_CODE (decl) == VAR_DECL
700 && DECL_SECTION_NAME (decl) != NULL_TREE
701 && DECL_INITIAL (decl) == NULL_TREE
702 && DECL_COMMON (decl))
703 DECL_COMMON (decl) = 0;
705 /* Can't use just the variable's own name for a variable
706 whose scope is less than the whole file, unless it's a member
707 of a local class (which will already be unambiguous).
708 Concatenate a distinguishing number. */
709 if (!top_level && !TREE_PUBLIC (decl)
710 && ! (DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl)))
711 && asmspec == 0
712 && name == IDENTIFIER_POINTER (DECL_NAME (decl)))
714 char *label;
715 ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno);
716 var_labelno++;
717 new_name = label;
720 /* When -fprefix-function-name is used, the functions
721 names are prefixed. Only nested function names are not
722 prefixed. */
723 else if (flag_prefix_function_name && TREE_CODE (decl) == FUNCTION_DECL)
725 size_t name_len = IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (decl));
726 char *pname;
728 pname = alloca (name_len + CHKR_PREFIX_SIZE + 1);
729 memcpy (pname, CHKR_PREFIX, CHKR_PREFIX_SIZE);
730 memcpy (pname + CHKR_PREFIX_SIZE, name, name_len + 1);
731 new_name = pname;
734 if (name != new_name)
736 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (new_name));
737 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
740 /* If this variable is to be treated as volatile, show its
741 tree node has side effects. */
742 if ((flag_volatile_global && TREE_CODE (decl) == VAR_DECL
743 && TREE_PUBLIC (decl))
744 || ((flag_volatile_static && TREE_CODE (decl) == VAR_DECL
745 && (TREE_PUBLIC (decl) || TREE_STATIC (decl)))))
746 TREE_SIDE_EFFECTS (decl) = 1;
748 SET_DECL_RTL (decl, gen_rtx_MEM (DECL_MODE (decl),
749 gen_rtx_SYMBOL_REF (Pmode, name)));
750 if (TREE_CODE (decl) != FUNCTION_DECL)
751 set_mem_attributes (DECL_RTL (decl), decl, 1);
753 /* Optionally set flags or add text to the name to record information
754 such as that it is a function name.
755 If the name is changed, the macro ASM_OUTPUT_LABELREF
756 will have to know how to strip this information. */
757 #ifdef ENCODE_SECTION_INFO
758 ENCODE_SECTION_INFO (decl);
759 #endif
762 /* Make the rtl for variable VAR be volatile.
763 Use this only for static variables. */
765 void
766 make_var_volatile (var)
767 tree var;
769 if (GET_CODE (DECL_RTL (var)) != MEM)
770 abort ();
772 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
775 /* Output alignment directive to align for constant expression EXP. */
777 void
778 assemble_constant_align (exp)
779 tree exp;
781 int align;
783 /* Align the location counter as required by EXP's data type. */
784 align = TYPE_ALIGN (TREE_TYPE (exp));
785 #ifdef CONSTANT_ALIGNMENT
786 align = CONSTANT_ALIGNMENT (exp, align);
787 #endif
789 if (align > BITS_PER_UNIT)
790 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
793 /* Output a string of literal assembler code
794 for an `asm' keyword used between functions. */
796 void
797 assemble_asm (string)
798 tree string;
800 app_enable ();
802 if (TREE_CODE (string) == ADDR_EXPR)
803 string = TREE_OPERAND (string, 0);
805 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
808 #if 0 /* This should no longer be needed, because
809 flag_gnu_linker should be 0 on these systems,
810 which should prevent any output
811 if ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are absent. */
812 #if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER))
813 #ifndef ASM_OUTPUT_CONSTRUCTOR
814 #define ASM_OUTPUT_CONSTRUCTOR(file, name)
815 #endif
816 #ifndef ASM_OUTPUT_DESTRUCTOR
817 #define ASM_OUTPUT_DESTRUCTOR(file, name)
818 #endif
819 #endif
820 #endif /* 0 */
822 /* Record an element in the table of global destructors.
823 How this is done depends on what sort of assembler and linker
824 are in use.
826 NAME should be the name of a global function to be called
827 at exit time. This name is output using assemble_name. */
829 void
830 assemble_destructor (name)
831 const char *name;
833 #ifdef ASM_OUTPUT_DESTRUCTOR
834 ASM_OUTPUT_DESTRUCTOR (asm_out_file, name);
835 #else
836 if (flag_gnu_linker)
838 /* Now tell GNU LD that this is part of the static destructor set. */
839 /* This code works for any machine provided you use GNU as/ld. */
840 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
841 assemble_name (asm_out_file, name);
842 fputc ('\n', asm_out_file);
844 #endif
847 /* Likewise for global constructors. */
849 void
850 assemble_constructor (name)
851 const char *name;
853 #ifdef ASM_OUTPUT_CONSTRUCTOR
854 ASM_OUTPUT_CONSTRUCTOR (asm_out_file, name);
855 #else
856 if (flag_gnu_linker)
858 /* Now tell GNU LD that this is part of the static constructor set. */
859 /* This code works for any machine provided you use GNU as/ld. */
860 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
861 assemble_name (asm_out_file, name);
862 fputc ('\n', asm_out_file);
864 #endif
867 /* Likewise for entries we want to record for garbage collection.
868 Garbage collection is still under development. */
870 void
871 assemble_gc_entry (name)
872 const char *name;
874 #ifdef ASM_OUTPUT_GC_ENTRY
875 ASM_OUTPUT_GC_ENTRY (asm_out_file, name);
876 #else
877 if (flag_gnu_linker)
879 /* Now tell GNU LD that this is part of the static constructor set. */
880 fprintf (asm_out_file, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP);
881 assemble_name (asm_out_file, name);
882 fputc ('\n', asm_out_file);
884 #endif
887 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
888 a non-zero value if the constant pool should be output before the
889 start of the function, or a zero value if the pool should output
890 after the end of the function. The default is to put it before the
891 start. */
893 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
894 #define CONSTANT_POOL_BEFORE_FUNCTION 1
895 #endif
897 /* Output assembler code for the constant pool of a function and associated
898 with defining the name of the function. DECL describes the function.
899 NAME is the function's name. For the constant pool, we use the current
900 constant pool data. */
902 void
903 assemble_start_function (decl, fnname)
904 tree decl;
905 const char *fnname;
907 int align;
909 /* The following code does not need preprocessing in the assembler. */
911 app_disable ();
913 if (CONSTANT_POOL_BEFORE_FUNCTION)
914 output_constant_pool (fnname, decl);
916 #ifdef ASM_OUTPUT_SECTION_NAME
917 /* If the function is to be put in its own section and it's not in a section
918 already, indicate so. */
919 if ((flag_function_sections
920 && DECL_SECTION_NAME (decl) == NULL_TREE)
921 || UNIQUE_SECTION_P (decl))
922 UNIQUE_SECTION (decl, 0);
923 #endif
925 function_section (decl);
927 /* Tell assembler to move to target machine's alignment for functions. */
928 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
929 if (align > 0)
930 ASM_OUTPUT_ALIGN (asm_out_file, align);
932 /* Handle a user-specified function alignment.
933 Note that we still need to align to FUNCTION_BOUNDARY, as above,
934 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
935 if (align_functions_log > align)
937 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
938 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
939 align_functions_log, align_functions-1);
940 #else
941 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
942 #endif
945 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
946 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
947 #endif
949 #ifdef SDB_DEBUGGING_INFO
950 /* Output SDB definition of the function. */
951 if (write_symbols == SDB_DEBUG)
952 sdbout_mark_begin_function ();
953 #endif
955 #ifdef DBX_DEBUGGING_INFO
956 /* Output DBX definition of the function. */
957 if (write_symbols == DBX_DEBUG)
958 dbxout_begin_function (decl);
959 #endif
961 /* Make function name accessible from other files, if appropriate. */
963 if (TREE_PUBLIC (decl))
965 if (! first_global_object_name)
967 const char *p;
968 char *name;
970 STRIP_NAME_ENCODING (p, fnname);
971 name = permalloc (strlen (p) + 1);
972 strcpy (name, p);
974 if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
975 first_global_object_name = name;
976 else
977 weak_global_object_name = name;
980 #ifdef ASM_WEAKEN_LABEL
981 if (DECL_WEAK (decl))
983 ASM_WEAKEN_LABEL (asm_out_file, fnname);
984 /* Remove this function from the pending weak list so that
985 we do not emit multiple .weak directives for it. */
986 remove_from_pending_weak_list
987 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
989 else
990 #endif
991 ASM_GLOBALIZE_LABEL (asm_out_file, fnname);
994 /* Do any machine/system dependent processing of the function name */
995 #ifdef ASM_DECLARE_FUNCTION_NAME
996 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
997 #else
998 /* Standard thing is just output label for the function. */
999 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1000 #endif /* ASM_DECLARE_FUNCTION_NAME */
1003 /* Output assembler code associated with defining the size of the
1004 function. DECL describes the function. NAME is the function's name. */
1006 void
1007 assemble_end_function (decl, fnname)
1008 tree decl;
1009 const char *fnname;
1011 #ifdef ASM_DECLARE_FUNCTION_SIZE
1012 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1013 #endif
1014 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1016 output_constant_pool (fnname, decl);
1017 function_section (decl); /* need to switch back */
1020 /* Output any constants which should appear after the function. */
1021 output_after_function_constants ();
1024 /* Assemble code to leave SIZE bytes of zeros. */
1026 void
1027 assemble_zeros (size)
1028 int size;
1030 /* Do no output if -fsyntax-only. */
1031 if (flag_syntax_only)
1032 return;
1034 #ifdef ASM_NO_SKIP_IN_TEXT
1035 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1036 so we must output 0s explicitly in the text section. */
1037 if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1039 int i;
1041 for (i = 0; i < size - 20; i += 20)
1043 #ifdef ASM_BYTE_OP
1044 fprintf (asm_out_file,
1045 "%s0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP);
1046 #else
1047 fprintf (asm_out_file,
1048 "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n");
1049 #endif
1051 if (i < size)
1053 #ifdef ASM_BYTE_OP
1054 fprintf (asm_out_file, "%s0", ASM_BYTE_OP);
1055 #else
1056 fprintf (asm_out_file, "\tbyte 0");
1057 #endif
1058 i++;
1059 for (; i < size; i++)
1060 fprintf (asm_out_file, ",0");
1061 fprintf (asm_out_file, "\n");
1064 else
1065 #endif
1066 if (size > 0)
1067 ASM_OUTPUT_SKIP (asm_out_file, size);
1070 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1072 void
1073 assemble_align (align)
1074 int align;
1076 if (align > BITS_PER_UNIT)
1077 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1080 /* Assemble a string constant with the specified C string as contents. */
1082 void
1083 assemble_string (p, size)
1084 const char *p;
1085 int size;
1087 int pos = 0;
1088 int maximum = 2000;
1090 /* If the string is very long, split it up. */
1092 while (pos < size)
1094 int thissize = size - pos;
1095 if (thissize > maximum)
1096 thissize = maximum;
1098 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1100 pos += thissize;
1101 p += thissize;
1106 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1107 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1108 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1109 #else
1110 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1111 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1112 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1113 #else
1114 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1115 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1116 #endif
1117 #endif
1119 #if defined ASM_OUTPUT_ALIGNED_BSS
1120 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1121 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1122 #else
1123 #if defined ASM_OUTPUT_BSS
1124 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1125 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1126 #else
1127 #undef ASM_EMIT_BSS
1128 #endif
1129 #endif
1131 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1132 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1133 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1134 #else
1135 #if defined ASM_OUTPUT_ALIGNED_COMMON
1136 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1137 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1138 #else
1139 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1140 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1141 #endif
1142 #endif
1144 static void
1145 asm_emit_uninitialised (decl, name, size, rounded)
1146 tree decl;
1147 const char * name;
1148 int size ATTRIBUTE_UNUSED;
1149 int rounded ATTRIBUTE_UNUSED;
1151 enum
1153 asm_dest_common,
1154 asm_dest_bss,
1155 asm_dest_local
1157 destination = asm_dest_local;
1159 if (TREE_PUBLIC (decl))
1161 #if defined ASM_EMIT_BSS
1162 if (! DECL_COMMON (decl))
1163 destination = asm_dest_bss;
1164 else
1165 #endif
1166 destination = asm_dest_common;
1169 if (flag_shared_data)
1171 switch (destination)
1173 #ifdef ASM_OUTPUT_SHARED_BSS
1174 case asm_dest_bss:
1175 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1176 return;
1177 #endif
1178 #ifdef ASM_OUTPUT_SHARED_COMMON
1179 case asm_dest_common:
1180 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1181 return;
1182 #endif
1183 #ifdef ASM_OUTPUT_SHARED_LOCAL
1184 case asm_dest_local:
1185 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1186 return;
1187 #endif
1188 default:
1189 break;
1193 #ifdef ASM_OUTPUT_SECTION_NAME
1194 /* We already know that DECL_SECTION_NAME() == NULL. */
1195 if (flag_data_sections != 0 || UNIQUE_SECTION_P (decl))
1196 UNIQUE_SECTION (decl, 0);
1197 #endif
1199 switch (destination)
1201 #ifdef ASM_EMIT_BSS
1202 case asm_dest_bss:
1203 ASM_EMIT_BSS (decl, name, size, rounded);
1204 break;
1205 #endif
1206 case asm_dest_common:
1207 ASM_EMIT_COMMON (decl, name, size, rounded);
1208 break;
1209 case asm_dest_local:
1210 ASM_EMIT_LOCAL (decl, name, size, rounded);
1211 break;
1212 default:
1213 abort ();
1216 return;
1219 /* Assemble everything that is needed for a variable or function declaration.
1220 Not used for automatic variables, and not used for function definitions.
1221 Should not be called for variables of incomplete structure type.
1223 TOP_LEVEL is nonzero if this variable has file scope.
1224 AT_END is nonzero if this is the special handling, at end of compilation,
1225 to define things that have had only tentative definitions.
1226 DONT_OUTPUT_DATA if nonzero means don't actually output the
1227 initial value (that will be done by the caller). */
1229 void
1230 assemble_variable (decl, top_level, at_end, dont_output_data)
1231 tree decl;
1232 int top_level ATTRIBUTE_UNUSED;
1233 int at_end ATTRIBUTE_UNUSED;
1234 int dont_output_data;
1236 register const char *name;
1237 unsigned int align;
1238 int reloc = 0;
1239 enum in_section saved_in_section;
1241 last_assemble_variable_decl = 0;
1243 if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1245 /* Do output symbol info for global register variables, but do nothing
1246 else for them. */
1248 if (TREE_ASM_WRITTEN (decl))
1249 return;
1250 TREE_ASM_WRITTEN (decl) = 1;
1252 /* Do no output if -fsyntax-only. */
1253 if (flag_syntax_only)
1254 return;
1256 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1257 /* File-scope global variables are output here. */
1258 if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
1259 && top_level)
1260 dbxout_symbol (decl, 0);
1261 #endif
1262 #ifdef SDB_DEBUGGING_INFO
1263 if (write_symbols == SDB_DEBUG && top_level
1264 /* Leave initialized global vars for end of compilation;
1265 see comment in compile_file. */
1266 && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0))
1267 sdbout_symbol (decl, 0);
1268 #endif
1270 /* Don't output any DWARF debugging information for variables here.
1271 In the case of local variables, the information for them is output
1272 when we do our recursive traversal of the tree representation for
1273 the entire containing function. In the case of file-scope variables,
1274 we output information for all of them at the very end of compilation
1275 while we are doing our final traversal of the chain of file-scope
1276 declarations. */
1278 return;
1281 /* Normally no need to say anything here for external references,
1282 since assemble_external is called by the language-specific code
1283 when a declaration is first seen. */
1285 if (DECL_EXTERNAL (decl))
1286 return;
1288 /* Output no assembler code for a function declaration.
1289 Only definitions of functions output anything. */
1291 if (TREE_CODE (decl) == FUNCTION_DECL)
1292 return;
1294 /* If type was incomplete when the variable was declared,
1295 see if it is complete now. */
1297 if (DECL_SIZE (decl) == 0)
1298 layout_decl (decl, 0);
1300 /* Still incomplete => don't allocate it; treat the tentative defn
1301 (which is what it must have been) as an `extern' reference. */
1303 if (!dont_output_data && DECL_SIZE (decl) == 0)
1305 error_with_file_and_line (DECL_SOURCE_FILE (decl),
1306 DECL_SOURCE_LINE (decl),
1307 "storage size of `%s' isn't known",
1308 IDENTIFIER_POINTER (DECL_NAME (decl)));
1309 TREE_ASM_WRITTEN (decl) = 1;
1310 return;
1313 /* The first declaration of a variable that comes through this function
1314 decides whether it is global (in C, has external linkage)
1315 or local (in C, has internal linkage). So do nothing more
1316 if this function has already run. */
1318 if (TREE_ASM_WRITTEN (decl))
1319 return;
1321 TREE_ASM_WRITTEN (decl) = 1;
1323 /* Do no output if -fsyntax-only. */
1324 if (flag_syntax_only)
1325 return;
1327 app_disable ();
1329 if (! dont_output_data
1330 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1332 error_with_decl (decl, "size of variable `%s' is too large");
1333 goto finish;
1336 name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
1337 if (TREE_PUBLIC (decl) && DECL_NAME (decl)
1338 && ! first_global_object_name
1339 && ! (DECL_COMMON (decl) && (DECL_INITIAL (decl) == 0
1340 || DECL_INITIAL (decl) == error_mark_node))
1341 && ! DECL_WEAK (decl)
1342 && ! DECL_ONE_ONLY (decl))
1344 const char *p;
1345 char *xname;
1347 STRIP_NAME_ENCODING (p, name);
1348 xname = permalloc (strlen (p) + 1);
1349 strcpy (xname, p);
1350 first_global_object_name = xname;
1353 /* Compute the alignment of this data. */
1355 align = DECL_ALIGN (decl);
1357 /* In the case for initialing an array whose length isn't specified,
1358 where we have not yet been able to do the layout,
1359 figure out the proper alignment now. */
1360 if (dont_output_data && DECL_SIZE (decl) == 0
1361 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1362 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1364 /* Some object file formats have a maximum alignment which they support.
1365 In particular, a.out format supports a maximum alignment of 4. */
1366 #ifndef MAX_OFILE_ALIGNMENT
1367 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1368 #endif
1369 if (align > MAX_OFILE_ALIGNMENT)
1371 warning_with_decl (decl,
1372 "alignment of `%s' is greater than maximum object file alignment. Using %d.",
1373 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1374 align = MAX_OFILE_ALIGNMENT;
1377 /* On some machines, it is good to increase alignment sometimes. */
1378 #ifdef DATA_ALIGNMENT
1379 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1380 #endif
1381 #ifdef CONSTANT_ALIGNMENT
1382 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1383 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1384 #endif
1386 /* Reset the alignment in case we have made it tighter, so we can benefit
1387 from it in get_pointer_alignment. */
1388 DECL_ALIGN (decl) = align;
1390 /* Handle uninitialized definitions. */
1392 if ((DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node)
1393 /* If the target can't output uninitialized but not common global data
1394 in .bss, then we have to use .data. */
1395 #if ! defined ASM_EMIT_BSS
1396 && DECL_COMMON (decl)
1397 #endif
1398 && DECL_SECTION_NAME (decl) == NULL_TREE
1399 && ! dont_output_data)
1401 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1402 unsigned HOST_WIDE_INT rounded = size;
1404 /* Don't allocate zero bytes of common,
1405 since that means "undefined external" in the linker. */
1406 if (size == 0)
1407 rounded = 1;
1409 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1410 so that each uninitialized object starts on such a boundary. */
1411 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1412 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1413 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1415 /* Don't continue this line--convex cc version 4.1 would lose. */
1416 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1417 if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1418 warning_with_decl
1419 (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded);
1420 #endif
1422 #ifdef DBX_DEBUGGING_INFO
1423 /* File-scope global variables are output here. */
1424 if (write_symbols == DBX_DEBUG && top_level)
1425 dbxout_symbol (decl, 0);
1426 #endif
1427 #ifdef SDB_DEBUGGING_INFO
1428 if (write_symbols == SDB_DEBUG && top_level
1429 /* Leave initialized global vars for end of compilation;
1430 see comment in compile_file. */
1431 && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0))
1432 sdbout_symbol (decl, 0);
1433 #endif
1435 /* Don't output any DWARF debugging information for variables here.
1436 In the case of local variables, the information for them is output
1437 when we do our recursive traversal of the tree representation for
1438 the entire containing function. In the case of file-scope variables,
1439 we output information for all of them at the very end of compilation
1440 while we are doing our final traversal of the chain of file-scope
1441 declarations. */
1443 #if 0 /* ??? We should either delete this or add a comment describing what
1444 it was intended to do and why we shouldn't delete it. */
1445 if (flag_shared_data)
1446 data_section ();
1447 #endif
1448 asm_emit_uninitialised (decl, name, size, rounded);
1450 goto finish;
1453 /* Handle initialized definitions.
1454 Also handle uninitialized global definitions if -fno-common and the
1455 target doesn't support ASM_OUTPUT_BSS. */
1457 /* First make the assembler name(s) global if appropriate. */
1458 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1460 #ifdef ASM_WEAKEN_LABEL
1461 if (DECL_WEAK (decl))
1463 ASM_WEAKEN_LABEL (asm_out_file, name);
1464 /* Remove this variable from the pending weak list so that
1465 we do not emit multiple .weak directives for it. */
1466 remove_from_pending_weak_list
1467 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
1469 else
1470 #endif
1471 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1473 #if 0
1474 for (d = equivalents; d; d = TREE_CHAIN (d))
1476 tree e = TREE_VALUE (d);
1477 if (TREE_PUBLIC (e) && DECL_NAME (e))
1478 ASM_GLOBALIZE_LABEL (asm_out_file,
1479 XSTR (XEXP (DECL_RTL (e), 0), 0));
1481 #endif
1483 /* Output any data that we will need to use the address of. */
1484 if (DECL_INITIAL (decl) == error_mark_node)
1485 reloc = contains_pointers_p (TREE_TYPE (decl));
1486 else if (DECL_INITIAL (decl))
1487 reloc = output_addressed_constants (DECL_INITIAL (decl));
1489 #ifdef ASM_OUTPUT_SECTION_NAME
1490 if ((flag_data_sections != 0 && DECL_SECTION_NAME (decl) == NULL_TREE)
1491 || UNIQUE_SECTION_P (decl))
1492 UNIQUE_SECTION (decl, reloc);
1493 #endif
1495 /* Switch to the appropriate section. */
1496 variable_section (decl, reloc);
1498 /* dbxout.c needs to know this. */
1499 if (in_text_section ())
1500 DECL_IN_TEXT_SECTION (decl) = 1;
1502 /* Record current section so we can restore it if dbxout.c clobbers it. */
1503 saved_in_section = in_section;
1505 /* Output the dbx info now that we have chosen the section. */
1507 #ifdef DBX_DEBUGGING_INFO
1508 /* File-scope global variables are output here. */
1509 if (write_symbols == DBX_DEBUG && top_level)
1510 dbxout_symbol (decl, 0);
1511 #endif
1512 #ifdef SDB_DEBUGGING_INFO
1513 if (write_symbols == SDB_DEBUG && top_level
1514 /* Leave initialized global vars for end of compilation;
1515 see comment in compile_file. */
1516 && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0))
1517 sdbout_symbol (decl, 0);
1518 #endif
1520 /* Don't output any DWARF debugging information for variables here.
1521 In the case of local variables, the information for them is output
1522 when we do our recursive traversal of the tree representation for
1523 the entire containing function. In the case of file-scope variables,
1524 we output information for all of them at the very end of compilation
1525 while we are doing our final traversal of the chain of file-scope
1526 declarations. */
1528 /* If the debugging output changed sections, reselect the section
1529 that's supposed to be selected. */
1530 if (in_section != saved_in_section)
1531 variable_section (decl, reloc);
1533 /* Output the alignment of this data. */
1534 if (align > BITS_PER_UNIT)
1535 ASM_OUTPUT_ALIGN (asm_out_file,
1536 floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1538 /* Do any machine/system dependent processing of the object. */
1539 #ifdef ASM_DECLARE_OBJECT_NAME
1540 last_assemble_variable_decl = decl;
1541 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1542 #else
1543 /* Standard thing is just output label for the object. */
1544 ASM_OUTPUT_LABEL (asm_out_file, name);
1545 #endif /* ASM_DECLARE_OBJECT_NAME */
1547 if (!dont_output_data)
1549 if (DECL_INITIAL (decl))
1550 /* Output the actual data. */
1551 output_constant (DECL_INITIAL (decl),
1552 tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1553 else
1554 /* Leave space for it. */
1555 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1558 finish:
1559 #ifdef XCOFF_DEBUGGING_INFO
1560 /* Unfortunately, the IBM assembler cannot handle stabx before the actual
1561 declaration. When something like ".stabx "aa:S-2",aa,133,0" is emitted
1562 and `aa' hasn't been output yet, the assembler generates a stab entry with
1563 a value of zero, in addition to creating an unnecessary external entry
1564 for `aa'. Hence, we must postpone dbxout_symbol to here at the end. */
1566 /* File-scope global variables are output here. */
1567 if (write_symbols == XCOFF_DEBUG && top_level)
1569 saved_in_section = in_section;
1571 dbxout_symbol (decl, 0);
1573 if (in_section != saved_in_section)
1574 variable_section (decl, reloc);
1576 #else
1577 /* There must be a statement after a label. */
1579 #endif
1582 /* Return 1 if type TYPE contains any pointers. */
1584 static int
1585 contains_pointers_p (type)
1586 tree type;
1588 switch (TREE_CODE (type))
1590 case POINTER_TYPE:
1591 case REFERENCE_TYPE:
1592 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1593 so I'll play safe and return 1. */
1594 case OFFSET_TYPE:
1595 return 1;
1597 case RECORD_TYPE:
1598 case UNION_TYPE:
1599 case QUAL_UNION_TYPE:
1601 tree fields;
1602 /* For a type that has fields, see if the fields have pointers. */
1603 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1604 if (TREE_CODE (fields) == FIELD_DECL
1605 && contains_pointers_p (TREE_TYPE (fields)))
1606 return 1;
1607 return 0;
1610 case ARRAY_TYPE:
1611 /* An array type contains pointers if its element type does. */
1612 return contains_pointers_p (TREE_TYPE (type));
1614 default:
1615 return 0;
1619 /* Output something to declare an external symbol to the assembler.
1620 (Most assemblers don't need this, so we normally output nothing.)
1621 Do nothing if DECL is not external. */
1623 void
1624 assemble_external (decl)
1625 tree decl ATTRIBUTE_UNUSED;
1627 #ifdef ASM_OUTPUT_EXTERNAL
1628 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1630 rtx rtl = DECL_RTL (decl);
1632 if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1633 && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1635 /* Some systems do require some output. */
1636 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1637 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1640 #endif
1643 /* Similar, for calling a library function FUN. */
1645 void
1646 assemble_external_libcall (fun)
1647 rtx fun ATTRIBUTE_UNUSED;
1649 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1650 /* Declare library function name external when first used, if nec. */
1651 if (! SYMBOL_REF_USED (fun))
1653 SYMBOL_REF_USED (fun) = 1;
1654 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
1656 #endif
1659 /* Declare the label NAME global. */
1661 void
1662 assemble_global (name)
1663 const char *name;
1665 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1668 /* Assemble a label named NAME. */
1670 void
1671 assemble_label (name)
1672 const char *name;
1674 ASM_OUTPUT_LABEL (asm_out_file, name);
1677 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1678 If NAME starts with a *, the rest of NAME is output verbatim.
1679 Otherwise NAME is transformed in an implementation-defined way
1680 (usually by the addition of an underscore).
1681 Many macros in the tm file are defined to call this function. */
1683 void
1684 assemble_name (file, name)
1685 FILE *file;
1686 const char *name;
1688 const char *real_name;
1689 tree id;
1691 STRIP_NAME_ENCODING (real_name, name);
1692 if (flag_prefix_function_name
1693 && ! memcmp (real_name, CHKR_PREFIX, CHKR_PREFIX_SIZE))
1694 real_name = real_name + CHKR_PREFIX_SIZE;
1696 id = maybe_get_identifier (real_name);
1697 if (id)
1698 TREE_SYMBOL_REFERENCED (id) = 1;
1700 if (name[0] == '*')
1701 fputs (&name[1], file);
1702 else
1703 ASM_OUTPUT_LABELREF (file, name);
1706 /* Allocate SIZE bytes writable static space with a gensym name
1707 and return an RTX to refer to its address. */
1710 assemble_static_space (size)
1711 int size;
1713 char name[12];
1714 const char *namestring;
1715 rtx x;
1717 #if 0
1718 if (flag_shared_data)
1719 data_section ();
1720 #endif
1722 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1723 ++const_labelno;
1724 namestring = ggc_strdup (name);
1726 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1728 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1729 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1730 BIGGEST_ALIGNMENT);
1731 #else
1732 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1733 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1734 #else
1736 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1737 so that each uninitialized object starts on such a boundary. */
1738 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1739 int rounded ATTRIBUTE_UNUSED
1740 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1741 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1742 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1743 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1745 #endif
1746 #endif
1747 return x;
1750 /* Assemble the static constant template for function entry trampolines.
1751 This is done at most once per compilation.
1752 Returns an RTX for the address of the template. */
1754 #ifdef TRAMPOLINE_TEMPLATE
1756 assemble_trampoline_template ()
1758 char label[256];
1759 const char *name;
1760 int align;
1762 /* By default, put trampoline templates in read-only data section. */
1764 #ifdef TRAMPOLINE_SECTION
1765 TRAMPOLINE_SECTION ();
1766 #else
1767 readonly_data_section ();
1768 #endif
1770 /* Write the assembler code to define one. */
1771 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1772 if (align > 0)
1773 ASM_OUTPUT_ALIGN (asm_out_file, align);
1775 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LTRAMP", 0);
1776 TRAMPOLINE_TEMPLATE (asm_out_file);
1778 /* Record the rtl to refer to it. */
1779 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1780 name = ggc_strdup (label);
1781 return gen_rtx_SYMBOL_REF (Pmode, name);
1783 #endif
1785 /* Assemble the integer constant X into an object of SIZE bytes.
1786 X must be either a CONST_INT or CONST_DOUBLE.
1788 Return 1 if we were able to output the constant, otherwise 0. If FORCE is
1789 non-zero, abort if we can't output the constant. */
1792 assemble_integer (x, size, force)
1793 rtx x;
1794 int size;
1795 int force;
1797 /* First try to use the standard 1, 2, 4, 8, and 16 byte
1798 ASM_OUTPUT... macros. */
1800 switch (size)
1802 #ifdef ASM_OUTPUT_CHAR
1803 case 1:
1804 ASM_OUTPUT_CHAR (asm_out_file, x);
1805 return 1;
1806 #endif
1808 #ifdef ASM_OUTPUT_SHORT
1809 case 2:
1810 ASM_OUTPUT_SHORT (asm_out_file, x);
1811 return 1;
1812 #endif
1814 #ifdef ASM_OUTPUT_INT
1815 case 4:
1816 ASM_OUTPUT_INT (asm_out_file, x);
1817 return 1;
1818 #endif
1820 #ifdef ASM_OUTPUT_DOUBLE_INT
1821 case 8:
1822 ASM_OUTPUT_DOUBLE_INT (asm_out_file, x);
1823 return 1;
1824 #endif
1826 #ifdef ASM_OUTPUT_QUADRUPLE_INT
1827 case 16:
1828 ASM_OUTPUT_QUADRUPLE_INT (asm_out_file, x);
1829 return 1;
1830 #endif
1833 /* If we couldn't do it that way, there are two other possibilities: First,
1834 if the machine can output an explicit byte and this is a 1 byte constant,
1835 we can use ASM_OUTPUT_BYTE. */
1837 #ifdef ASM_OUTPUT_BYTE
1838 if (size == 1 && GET_CODE (x) == CONST_INT)
1840 ASM_OUTPUT_BYTE (asm_out_file, INTVAL (x));
1841 return 1;
1843 #endif
1845 /* Finally, if SIZE is larger than a single word, try to output the constant
1846 one word at a time. */
1848 if (size > UNITS_PER_WORD)
1850 int i;
1851 enum machine_mode mode
1852 = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1853 rtx word;
1855 for (i = 0; i < size / UNITS_PER_WORD; i++)
1857 word = operand_subword (x, i, 0, mode);
1859 if (word == 0)
1860 break;
1862 if (! assemble_integer (word, UNITS_PER_WORD, 0))
1863 break;
1866 if (i == size / UNITS_PER_WORD)
1867 return 1;
1868 /* If we output at least one word and then could not finish,
1869 there is no valid way to continue. */
1870 if (i > 0)
1871 abort ();
1874 if (force)
1875 abort ();
1877 return 0;
1880 /* Assemble the floating-point constant D into an object of size MODE. */
1882 void
1883 assemble_real (d, mode)
1884 REAL_VALUE_TYPE d;
1885 enum machine_mode mode;
1887 jmp_buf output_constant_handler;
1889 if (setjmp (output_constant_handler))
1891 error ("floating point trap outputting a constant");
1892 #ifdef REAL_IS_NOT_DOUBLE
1893 memset ((char *) &d, 0, sizeof d);
1894 d = dconst0;
1895 #else
1896 d = 0;
1897 #endif
1900 set_float_handler (output_constant_handler);
1902 switch (mode)
1904 #ifdef ASM_OUTPUT_BYTE_FLOAT
1905 case QFmode:
1906 ASM_OUTPUT_BYTE_FLOAT (asm_out_file, d);
1907 break;
1908 #endif
1909 #ifdef ASM_OUTPUT_SHORT_FLOAT
1910 case HFmode:
1911 ASM_OUTPUT_SHORT_FLOAT (asm_out_file, d);
1912 break;
1913 #endif
1914 #ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
1915 case TQFmode:
1916 ASM_OUTPUT_THREE_QUARTER_FLOAT (asm_out_file, d);
1917 break;
1918 #endif
1919 #ifdef ASM_OUTPUT_FLOAT
1920 case SFmode:
1921 ASM_OUTPUT_FLOAT (asm_out_file, d);
1922 break;
1923 #endif
1925 #ifdef ASM_OUTPUT_DOUBLE
1926 case DFmode:
1927 ASM_OUTPUT_DOUBLE (asm_out_file, d);
1928 break;
1929 #endif
1931 #ifdef ASM_OUTPUT_LONG_DOUBLE
1932 case XFmode:
1933 case TFmode:
1934 ASM_OUTPUT_LONG_DOUBLE (asm_out_file, d);
1935 break;
1936 #endif
1938 default:
1939 abort ();
1942 set_float_handler (NULL_PTR);
1945 /* Here we combine duplicate floating constants to make
1946 CONST_DOUBLE rtx's, and force those out to memory when necessary. */
1948 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair of ints.
1949 For an integer, I0 is the low-order word and I1 is the high-order word.
1950 For a real number, I0 is the word with the low address
1951 and I1 is the word with the high address. */
1954 immed_double_const (i0, i1, mode)
1955 HOST_WIDE_INT i0, i1;
1956 enum machine_mode mode;
1958 register rtx r;
1960 if (GET_MODE_CLASS (mode) == MODE_INT
1961 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
1963 /* We clear out all bits that don't belong in MODE, unless they and our
1964 sign bit are all one. So we get either a reasonable negative value
1965 or a reasonable unsigned value for this mode. */
1966 int width = GET_MODE_BITSIZE (mode);
1967 if (width < HOST_BITS_PER_WIDE_INT
1968 && ((i0 & ((HOST_WIDE_INT) (-1) << (width - 1)))
1969 != ((HOST_WIDE_INT) (-1) << (width - 1))))
1970 i0 &= ((HOST_WIDE_INT) 1 << width) - 1, i1 = 0;
1971 else if (width == HOST_BITS_PER_WIDE_INT
1972 && ! (i1 == ~0 && i0 < 0))
1973 i1 = 0;
1974 else if (width > 2 * HOST_BITS_PER_WIDE_INT)
1975 /* We cannot represent this value as a constant. */
1976 abort ();
1978 /* If this would be an entire word for the target, but is not for
1979 the host, then sign-extend on the host so that the number will look
1980 the same way on the host that it would on the target.
1982 For example, when building a 64 bit alpha hosted 32 bit sparc
1983 targeted compiler, then we want the 32 bit unsigned value -1 to be
1984 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
1985 The later confuses the sparc backend. */
1987 if (BITS_PER_WORD < HOST_BITS_PER_WIDE_INT && BITS_PER_WORD == width
1988 && (i0 & ((HOST_WIDE_INT) 1 << (width - 1))))
1989 i0 |= ((HOST_WIDE_INT) (-1) << width);
1991 /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a CONST_INT.
1993 ??? Strictly speaking, this is wrong if we create a CONST_INT
1994 for a large unsigned constant with the size of MODE being
1995 HOST_BITS_PER_WIDE_INT and later try to interpret that constant in a
1996 wider mode. In that case we will mis-interpret it as a negative
1997 number.
1999 Unfortunately, the only alternative is to make a CONST_DOUBLE
2000 for any constant in any mode if it is an unsigned constant larger
2001 than the maximum signed integer in an int on the host. However,
2002 doing this will break everyone that always expects to see a CONST_INT
2003 for SImode and smaller.
2005 We have always been making CONST_INTs in this case, so nothing new
2006 is being broken. */
2008 if (width <= HOST_BITS_PER_WIDE_INT)
2009 i1 = (i0 < 0) ? ~(HOST_WIDE_INT) 0 : 0;
2011 /* If this integer fits in one word, return a CONST_INT. */
2012 if ((i1 == 0 && i0 >= 0)
2013 || (i1 == ~0 && i0 < 0))
2014 return GEN_INT (i0);
2016 /* We use VOIDmode for integers. */
2017 mode = VOIDmode;
2020 /* Search the chain for an existing CONST_DOUBLE with the right value.
2021 If one is found, return it. */
2022 if (cfun != 0)
2023 for (r = const_double_chain; r; r = CONST_DOUBLE_CHAIN (r))
2024 if (CONST_DOUBLE_LOW (r) == i0 && CONST_DOUBLE_HIGH (r) == i1
2025 && GET_MODE (r) == mode)
2026 return r;
2028 /* No; make a new one and add it to the chain. */
2029 r = gen_rtx_CONST_DOUBLE (mode, const0_rtx, i0, i1);
2031 /* Don't touch const_double_chain if not inside any function. */
2032 if (current_function_decl != 0)
2034 CONST_DOUBLE_CHAIN (r) = const_double_chain;
2035 const_double_chain = r;
2038 return r;
2041 /* Return a CONST_DOUBLE for a specified `double' value
2042 and machine mode. */
2045 immed_real_const_1 (d, mode)
2046 REAL_VALUE_TYPE d;
2047 enum machine_mode mode;
2049 union real_extract u;
2050 register rtx r;
2052 /* Get the desired `double' value as a sequence of ints
2053 since that is how they are stored in a CONST_DOUBLE. */
2055 u.d = d;
2057 /* Detect special cases. But be careful we don't use a CONST_DOUBLE
2058 that's from a parent function since it may be in its constant pool. */
2059 if (REAL_VALUES_IDENTICAL (dconst0, d)
2060 && (cfun == 0 || decl_function_context (current_function_decl) == 0))
2061 return CONST0_RTX (mode);
2063 /* Check for NaN first, because some ports (specifically the i386) do not
2064 emit correct ieee-fp code by default, and thus will generate a core
2065 dump here if we pass a NaN to REAL_VALUES_EQUAL and if REAL_VALUES_EQUAL
2066 does a floating point comparison. */
2067 else if ((! REAL_VALUE_ISNAN (d) && REAL_VALUES_EQUAL (dconst1, d))
2068 && (cfun == 0
2069 || decl_function_context (current_function_decl) == 0))
2070 return CONST1_RTX (mode);
2072 if (sizeof u == sizeof (HOST_WIDE_INT))
2073 return immed_double_const (u.i[0], 0, mode);
2074 if (sizeof u == 2 * sizeof (HOST_WIDE_INT))
2075 return immed_double_const (u.i[0], u.i[1], mode);
2077 /* The rest of this function handles the case where
2078 a float value requires more than 2 ints of space.
2079 It will be deleted as dead code on machines that don't need it. */
2081 /* Search the chain for an existing CONST_DOUBLE with the right value.
2082 If one is found, return it. */
2083 if (cfun != 0)
2084 for (r = const_double_chain; r; r = CONST_DOUBLE_CHAIN (r))
2085 if (! memcmp ((char *) &CONST_DOUBLE_LOW (r), (char *) &u, sizeof u)
2086 && GET_MODE (r) == mode)
2087 return r;
2089 /* No; make a new one and add it to the chain.
2091 We may be called by an optimizer which may be discarding any memory
2092 allocated during its processing (such as combine and loop). However,
2093 we will be leaving this constant on the chain, so we cannot tolerate
2094 freed memory. */
2095 r = rtx_alloc (CONST_DOUBLE);
2096 PUT_MODE (r, mode);
2097 memcpy ((char *) &CONST_DOUBLE_LOW (r), (char *) &u, sizeof u);
2099 /* If we aren't inside a function, don't put r on the
2100 const_double_chain. */
2101 if (current_function_decl != 0)
2103 CONST_DOUBLE_CHAIN (r) = const_double_chain;
2104 const_double_chain = r;
2106 else
2107 CONST_DOUBLE_CHAIN (r) = NULL_RTX;
2109 /* Store const0_rtx in CONST_DOUBLE_MEM since this CONST_DOUBLE is on the
2110 chain, but has not been allocated memory. Actual use of CONST_DOUBLE_MEM
2111 is only through force_const_mem. */
2113 CONST_DOUBLE_MEM (r) = const0_rtx;
2115 return r;
2118 /* Return a CONST_DOUBLE rtx for a value specified by EXP,
2119 which must be a REAL_CST tree node. */
2122 immed_real_const (exp)
2123 tree exp;
2125 return immed_real_const_1 (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)));
2128 /* At the end of a function, forget the memory-constants
2129 previously made for CONST_DOUBLEs. Mark them as not on real_constant_chain.
2130 Also clear out real_constant_chain and clear out all the chain-pointers. */
2132 void
2133 clear_const_double_mem ()
2135 register rtx r, next;
2137 for (r = const_double_chain; r; r = next)
2139 next = CONST_DOUBLE_CHAIN (r);
2140 CONST_DOUBLE_CHAIN (r) = 0;
2141 CONST_DOUBLE_MEM (r) = cc0_rtx;
2143 const_double_chain = 0;
2146 /* Given an expression EXP with a constant value,
2147 reduce it to the sum of an assembler symbol and an integer.
2148 Store them both in the structure *VALUE.
2149 Abort if EXP does not reduce. */
2151 struct addr_const
2153 rtx base;
2154 HOST_WIDE_INT offset;
2157 static void
2158 decode_addr_const (exp, value)
2159 tree exp;
2160 struct addr_const *value;
2162 register tree target = TREE_OPERAND (exp, 0);
2163 register int offset = 0;
2164 register rtx x;
2166 while (1)
2168 if (TREE_CODE (target) == COMPONENT_REF
2169 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2172 offset += int_byte_position (TREE_OPERAND (target, 1));
2173 target = TREE_OPERAND (target, 0);
2175 else if (TREE_CODE (target) == ARRAY_REF)
2177 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2178 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2179 target = TREE_OPERAND (target, 0);
2181 else
2182 break;
2185 switch (TREE_CODE (target))
2187 case VAR_DECL:
2188 case FUNCTION_DECL:
2189 x = DECL_RTL (target);
2190 break;
2192 case LABEL_DECL:
2193 x = gen_rtx_MEM (FUNCTION_MODE,
2194 gen_rtx_LABEL_REF (VOIDmode,
2195 label_rtx (TREE_OPERAND (exp, 0))));
2196 break;
2198 case REAL_CST:
2199 case STRING_CST:
2200 case COMPLEX_CST:
2201 case CONSTRUCTOR:
2202 case INTEGER_CST:
2203 x = TREE_CST_RTL (target);
2204 break;
2206 default:
2207 abort ();
2210 if (GET_CODE (x) != MEM)
2211 abort ();
2212 x = XEXP (x, 0);
2214 value->base = x;
2215 value->offset = offset;
2218 struct rtx_const
2220 #ifdef ONLY_INT_FIELDS
2221 unsigned int kind : 16;
2222 unsigned int mode : 16;
2223 #else
2224 enum kind kind : 16;
2225 enum machine_mode mode : 16;
2226 #endif
2227 union {
2228 union real_extract du;
2229 struct addr_const addr;
2230 struct {HOST_WIDE_INT high, low;} di;
2231 } un;
2234 /* Uniquize all constants that appear in memory.
2235 Each constant in memory thus far output is recorded
2236 in `const_hash_table' with a `struct constant_descriptor'
2237 that contains a polish representation of the value of
2238 the constant.
2240 We cannot store the trees in the hash table
2241 because the trees may be temporary. */
2243 struct constant_descriptor
2245 struct constant_descriptor *next;
2246 const char *label;
2247 rtx rtl;
2248 /* Make sure the data is reasonably aligned. */
2249 union
2251 unsigned char contents[1];
2252 #ifdef HAVE_LONG_DOUBLE
2253 long double d;
2254 #else
2255 double d;
2256 #endif
2257 } u;
2260 #define HASHBITS 30
2261 #define MAX_HASH_TABLE 1009
2262 static struct constant_descriptor *const_hash_table[MAX_HASH_TABLE];
2264 #define STRHASH(x) ((hashval_t)((long)(x) >> 3))
2266 struct deferred_string
2268 const char *label;
2269 tree exp;
2270 int labelno;
2273 static htab_t const_str_htab;
2275 /* Mark a const_hash_table descriptor for GC. */
2277 static void
2278 mark_const_hash_entry (ptr)
2279 void *ptr;
2281 struct constant_descriptor *desc = * (struct constant_descriptor **) ptr;
2283 while (desc)
2285 ggc_mark_rtx (desc->rtl);
2286 desc = desc->next;
2290 /* Mark the hash-table element X (which is really a pointer to an
2291 struct deferred_string *). */
2293 static int
2294 mark_const_str_htab_1 (x, data)
2295 void **x;
2296 void *data ATTRIBUTE_UNUSED;
2298 ggc_mark_tree (((struct deferred_string *) *x)->exp);
2299 return 1;
2302 /* Mark a const_str_htab for GC. */
2304 static void
2305 mark_const_str_htab (htab)
2306 void *htab;
2308 htab_traverse (*((htab_t *) htab), mark_const_str_htab_1, NULL);
2311 /* Returns a hash code for X (which is a really a
2312 struct deferred_string *). */
2314 static hashval_t
2315 const_str_htab_hash (x)
2316 const void *x;
2318 return STRHASH (((const struct deferred_string *) x)->label);
2321 /* Returns non-zero if the value represented by X (which is really a
2322 struct deferred_string *) is the same as that given by Y
2323 (which is really a char *). */
2325 static int
2326 const_str_htab_eq (x, y)
2327 const void *x;
2328 const void *y;
2330 return (((const struct deferred_string *) x)->label == (const char *) y);
2333 /* Delete the hash table entry dfsp. */
2335 static void
2336 const_str_htab_del (dfsp)
2337 void *dfsp;
2339 free (dfsp);
2342 /* Compute a hash code for a constant expression. */
2344 static int
2345 const_hash (exp)
2346 tree exp;
2348 register const char *p;
2349 register int len, hi, i;
2350 register enum tree_code code = TREE_CODE (exp);
2352 /* Either set P and LEN to the address and len of something to hash and
2353 exit the switch or return a value. */
2355 switch (code)
2357 case INTEGER_CST:
2358 p = (char *) &TREE_INT_CST (exp);
2359 len = sizeof TREE_INT_CST (exp);
2360 break;
2362 case REAL_CST:
2363 p = (char *) &TREE_REAL_CST (exp);
2364 len = sizeof TREE_REAL_CST (exp);
2365 break;
2367 case STRING_CST:
2368 p = TREE_STRING_POINTER (exp);
2369 len = TREE_STRING_LENGTH (exp);
2370 break;
2372 case COMPLEX_CST:
2373 return (const_hash (TREE_REALPART (exp)) * 5
2374 + const_hash (TREE_IMAGPART (exp)));
2376 case CONSTRUCTOR:
2377 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2379 char *tmp;
2381 len = int_size_in_bytes (TREE_TYPE (exp));
2382 tmp = (char *) alloca (len);
2383 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2384 p = tmp;
2385 break;
2387 else
2389 register tree link;
2391 /* For record type, include the type in the hashing.
2392 We do not do so for array types
2393 because (1) the sizes of the elements are sufficient
2394 and (2) distinct array types can have the same constructor.
2395 Instead, we include the array size because the constructor could
2396 be shorter. */
2397 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2398 hi = ((unsigned long) TREE_TYPE (exp) & ((1 << HASHBITS) - 1))
2399 % MAX_HASH_TABLE;
2400 else
2401 hi = ((5 + int_size_in_bytes (TREE_TYPE (exp)))
2402 & ((1 << HASHBITS) - 1)) % MAX_HASH_TABLE;
2404 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2405 if (TREE_VALUE (link))
2407 = (hi * 603 + const_hash (TREE_VALUE (link))) % MAX_HASH_TABLE;
2409 return hi;
2412 case ADDR_EXPR:
2414 struct addr_const value;
2416 decode_addr_const (exp, &value);
2417 if (GET_CODE (value.base) == SYMBOL_REF)
2419 /* Don't hash the address of the SYMBOL_REF;
2420 only use the offset and the symbol name. */
2421 hi = value.offset;
2422 p = XSTR (value.base, 0);
2423 for (i = 0; p[i] != 0; i++)
2424 hi = ((hi * 613) + (unsigned) (p[i]));
2426 else if (GET_CODE (value.base) == LABEL_REF)
2427 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2428 else
2429 abort();
2431 hi &= (1 << HASHBITS) - 1;
2432 hi %= MAX_HASH_TABLE;
2434 return hi;
2436 case PLUS_EXPR:
2437 case MINUS_EXPR:
2438 return (const_hash (TREE_OPERAND (exp, 0)) * 9
2439 + const_hash (TREE_OPERAND (exp, 1)));
2441 case NOP_EXPR:
2442 case CONVERT_EXPR:
2443 case NON_LVALUE_EXPR:
2444 return const_hash (TREE_OPERAND (exp, 0)) * 7 + 2;
2446 default:
2447 /* A language specific constant. Just hash the code. */
2448 return (int) code % MAX_HASH_TABLE;
2451 /* Compute hashing function */
2452 hi = len;
2453 for (i = 0; i < len; i++)
2454 hi = ((hi * 613) + (unsigned) (p[i]));
2456 hi &= (1 << HASHBITS) - 1;
2457 hi %= MAX_HASH_TABLE;
2458 return hi;
2461 /* Compare a constant expression EXP with a constant-descriptor DESC.
2462 Return 1 if DESC describes a constant with the same value as EXP. */
2464 static int
2465 compare_constant (exp, desc)
2466 tree exp;
2467 struct constant_descriptor *desc;
2469 return 0 != compare_constant_1 (exp, desc->u.contents);
2472 /* Compare constant expression EXP with a substring P of a constant descriptor.
2473 If they match, return a pointer to the end of the substring matched.
2474 If they do not match, return 0.
2476 Since descriptors are written in polish prefix notation,
2477 this function can be used recursively to test one operand of EXP
2478 against a subdescriptor, and if it succeeds it returns the
2479 address of the subdescriptor for the next operand. */
2481 static const unsigned char *
2482 compare_constant_1 (exp, p)
2483 tree exp;
2484 const unsigned char *p;
2486 register const unsigned char *strp;
2487 register int len;
2488 register enum tree_code code = TREE_CODE (exp);
2490 if (code != (enum tree_code) *p++)
2491 return 0;
2493 /* Either set STRP, P and LEN to pointers and length to compare and exit the
2494 switch, or return the result of the comparison. */
2496 switch (code)
2498 case INTEGER_CST:
2499 /* Integer constants are the same only if the same width of type. */
2500 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2501 return 0;
2503 strp = (unsigned char *) &TREE_INT_CST (exp);
2504 len = sizeof TREE_INT_CST (exp);
2505 break;
2507 case REAL_CST:
2508 /* Real constants are the same only if the same width of type. */
2509 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2510 return 0;
2512 strp = (unsigned char *) &TREE_REAL_CST (exp);
2513 len = sizeof TREE_REAL_CST (exp);
2514 break;
2516 case STRING_CST:
2517 if (flag_writable_strings)
2518 return 0;
2520 if ((enum machine_mode) *p++ != TYPE_MODE (TREE_TYPE (exp)))
2521 return 0;
2523 strp = (const unsigned char *)TREE_STRING_POINTER (exp);
2524 len = TREE_STRING_LENGTH (exp);
2525 if (memcmp ((char *) &TREE_STRING_LENGTH (exp), p,
2526 sizeof TREE_STRING_LENGTH (exp)))
2527 return 0;
2529 p += sizeof TREE_STRING_LENGTH (exp);
2530 break;
2532 case COMPLEX_CST:
2533 p = compare_constant_1 (TREE_REALPART (exp), p);
2534 if (p == 0)
2535 return 0;
2537 return compare_constant_1 (TREE_IMAGPART (exp), p);
2539 case CONSTRUCTOR:
2540 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2542 int xlen = len = int_size_in_bytes (TREE_TYPE (exp));
2543 unsigned char *tmp = (unsigned char *) alloca (len);
2545 get_set_constructor_bytes (exp, tmp, len);
2546 strp = (unsigned char *) tmp;
2547 if (memcmp ((char *) &xlen, p, sizeof xlen))
2548 return 0;
2550 p += sizeof xlen;
2551 break;
2553 else
2555 register tree link;
2556 int length = list_length (CONSTRUCTOR_ELTS (exp));
2557 tree type;
2558 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2559 int have_purpose = 0;
2561 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2562 if (TREE_PURPOSE (link))
2563 have_purpose = 1;
2565 if (memcmp ((char *) &length, p, sizeof length))
2566 return 0;
2568 p += sizeof length;
2570 /* For record constructors, insist that the types match.
2571 For arrays, just verify both constructors are for arrays.
2572 Then insist that either both or none have any TREE_PURPOSE
2573 values. */
2574 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2575 type = TREE_TYPE (exp);
2576 else
2577 type = 0;
2579 if (memcmp ((char *) &type, p, sizeof type))
2580 return 0;
2582 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2584 if (memcmp ((char *) &mode, p, sizeof mode))
2585 return 0;
2587 p += sizeof mode;
2590 p += sizeof type;
2592 if (memcmp ((char *) &have_purpose, p, sizeof have_purpose))
2593 return 0;
2595 p += sizeof have_purpose;
2597 /* For arrays, insist that the size in bytes match. */
2598 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2600 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
2602 if (memcmp ((char *) &size, p, sizeof size))
2603 return 0;
2605 p += sizeof size;
2608 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2610 if (TREE_VALUE (link))
2612 if ((p = compare_constant_1 (TREE_VALUE (link), p)) == 0)
2613 return 0;
2615 else
2617 tree zero = 0;
2619 if (memcmp ((char *) &zero, p, sizeof zero))
2620 return 0;
2622 p += sizeof zero;
2625 if (TREE_PURPOSE (link)
2626 && TREE_CODE (TREE_PURPOSE (link)) == FIELD_DECL)
2628 if (memcmp ((char *) &TREE_PURPOSE (link), p,
2629 sizeof TREE_PURPOSE (link)))
2630 return 0;
2632 p += sizeof TREE_PURPOSE (link);
2634 else if (TREE_PURPOSE (link))
2636 if ((p = compare_constant_1 (TREE_PURPOSE (link), p)) == 0)
2637 return 0;
2639 else if (have_purpose)
2641 int zero = 0;
2643 if (memcmp ((char *) &zero, p, sizeof zero))
2644 return 0;
2646 p += sizeof zero;
2650 return p;
2653 case ADDR_EXPR:
2655 struct addr_const value;
2657 decode_addr_const (exp, &value);
2658 strp = (unsigned char *) &value.offset;
2659 len = sizeof value.offset;
2660 /* Compare the offset. */
2661 while (--len >= 0)
2662 if (*p++ != *strp++)
2663 return 0;
2665 /* Compare symbol name. */
2666 strp = (const unsigned char *) XSTR (value.base, 0);
2667 len = strlen ((const char *) strp) + 1;
2669 break;
2671 case PLUS_EXPR:
2672 case MINUS_EXPR:
2673 case RANGE_EXPR:
2674 p = compare_constant_1 (TREE_OPERAND (exp, 0), p);
2675 if (p == 0)
2676 return 0;
2678 return compare_constant_1 (TREE_OPERAND (exp, 1), p);
2680 case NOP_EXPR:
2681 case CONVERT_EXPR:
2682 case NON_LVALUE_EXPR:
2683 return compare_constant_1 (TREE_OPERAND (exp, 0), p);
2685 default:
2686 if (lang_expand_constant)
2688 exp = (*lang_expand_constant) (exp);
2689 return compare_constant_1 (exp, p);
2691 return 0;
2694 /* Compare constant contents. */
2695 while (--len >= 0)
2696 if (*p++ != *strp++)
2697 return 0;
2699 return p;
2702 /* Construct a constant descriptor for the expression EXP.
2703 It is up to the caller to enter the descriptor in the hash table. */
2705 static struct constant_descriptor *
2706 record_constant (exp)
2707 tree exp;
2709 struct constant_descriptor *next = 0;
2710 char *label = 0;
2711 rtx rtl = 0;
2712 int pad;
2714 /* Make a struct constant_descriptor. The first three pointers will
2715 be filled in later. Here we just leave space for them. */
2717 obstack_grow (&permanent_obstack, (char *) &next, sizeof next);
2718 obstack_grow (&permanent_obstack, (char *) &label, sizeof label);
2719 obstack_grow (&permanent_obstack, (char *) &rtl, sizeof rtl);
2721 /* Align the descriptor for the data payload. */
2722 pad = (offsetof (struct constant_descriptor, u)
2723 - offsetof(struct constant_descriptor, rtl)
2724 - sizeof(next->rtl));
2725 if (pad > 0)
2726 obstack_blank (&permanent_obstack, pad);
2728 record_constant_1 (exp);
2729 return (struct constant_descriptor *) obstack_finish (&permanent_obstack);
2732 /* Add a description of constant expression EXP
2733 to the object growing in `permanent_obstack'.
2734 No need to return its address; the caller will get that
2735 from the obstack when the object is complete. */
2737 static void
2738 record_constant_1 (exp)
2739 tree exp;
2741 register const unsigned char *strp;
2742 register int len;
2743 register enum tree_code code = TREE_CODE (exp);
2745 obstack_1grow (&permanent_obstack, (unsigned int) code);
2747 switch (code)
2749 case INTEGER_CST:
2750 obstack_1grow (&permanent_obstack, TYPE_PRECISION (TREE_TYPE (exp)));
2751 strp = (unsigned char *) &TREE_INT_CST (exp);
2752 len = sizeof TREE_INT_CST (exp);
2753 break;
2755 case REAL_CST:
2756 obstack_1grow (&permanent_obstack, TYPE_PRECISION (TREE_TYPE (exp)));
2757 strp = (unsigned char *) &TREE_REAL_CST (exp);
2758 len = sizeof TREE_REAL_CST (exp);
2759 break;
2761 case STRING_CST:
2762 if (flag_writable_strings)
2763 return;
2765 obstack_1grow (&permanent_obstack, TYPE_MODE (TREE_TYPE (exp)));
2766 strp = (const unsigned char *) TREE_STRING_POINTER (exp);
2767 len = TREE_STRING_LENGTH (exp);
2768 obstack_grow (&permanent_obstack, (char *) &TREE_STRING_LENGTH (exp),
2769 sizeof TREE_STRING_LENGTH (exp));
2770 break;
2772 case COMPLEX_CST:
2773 record_constant_1 (TREE_REALPART (exp));
2774 record_constant_1 (TREE_IMAGPART (exp));
2775 return;
2777 case CONSTRUCTOR:
2778 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2780 int nbytes = int_size_in_bytes (TREE_TYPE (exp));
2781 obstack_grow (&permanent_obstack, &nbytes, sizeof (nbytes));
2782 obstack_blank (&permanent_obstack, nbytes);
2783 get_set_constructor_bytes
2784 (exp, (unsigned char *) permanent_obstack.next_free-nbytes,
2785 nbytes);
2786 return;
2788 else
2790 register tree link;
2791 int length = list_length (CONSTRUCTOR_ELTS (exp));
2792 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2793 tree type;
2794 int have_purpose = 0;
2796 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2797 if (TREE_PURPOSE (link))
2798 have_purpose = 1;
2800 obstack_grow (&permanent_obstack, (char *) &length, sizeof length);
2802 /* For record constructors, insist that the types match.
2803 For arrays, just verify both constructors are for arrays
2804 of the same mode. Then insist that either both or none
2805 have any TREE_PURPOSE values. */
2806 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2807 type = TREE_TYPE (exp);
2808 else
2809 type = 0;
2811 obstack_grow (&permanent_obstack, (char *) &type, sizeof type);
2812 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2813 obstack_grow (&permanent_obstack, &mode, sizeof mode);
2815 obstack_grow (&permanent_obstack, (char *) &have_purpose,
2816 sizeof have_purpose);
2818 /* For arrays, insist that the size in bytes match. */
2819 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2821 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
2822 obstack_grow (&permanent_obstack, (char *) &size, sizeof size);
2825 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2827 if (TREE_VALUE (link))
2828 record_constant_1 (TREE_VALUE (link));
2829 else
2831 tree zero = 0;
2833 obstack_grow (&permanent_obstack,
2834 (char *) &zero, sizeof zero);
2837 if (TREE_PURPOSE (link)
2838 && TREE_CODE (TREE_PURPOSE (link)) == FIELD_DECL)
2839 obstack_grow (&permanent_obstack,
2840 (char *) &TREE_PURPOSE (link),
2841 sizeof TREE_PURPOSE (link));
2842 else if (TREE_PURPOSE (link))
2843 record_constant_1 (TREE_PURPOSE (link));
2844 else if (have_purpose)
2846 int zero = 0;
2848 obstack_grow (&permanent_obstack,
2849 (char *) &zero, sizeof zero);
2853 return;
2855 case ADDR_EXPR:
2857 struct addr_const value;
2859 decode_addr_const (exp, &value);
2860 /* Record the offset. */
2861 obstack_grow (&permanent_obstack,
2862 (char *) &value.offset, sizeof value.offset);
2864 switch (GET_CODE (value.base))
2866 case SYMBOL_REF:
2867 /* Record the symbol name. */
2868 obstack_grow (&permanent_obstack, XSTR (value.base, 0),
2869 strlen (XSTR (value.base, 0)) + 1);
2870 break;
2871 case LABEL_REF:
2872 /* Record the address of the CODE_LABEL. It may not have
2873 been emitted yet, so it's UID may be zero. But pointer
2874 identity is good enough. */
2875 obstack_grow (&permanent_obstack, &XEXP (value.base, 0),
2876 sizeof (rtx));
2877 break;
2878 default:
2879 abort ();
2882 return;
2884 case PLUS_EXPR:
2885 case MINUS_EXPR:
2886 case RANGE_EXPR:
2887 record_constant_1 (TREE_OPERAND (exp, 0));
2888 record_constant_1 (TREE_OPERAND (exp, 1));
2889 return;
2891 case NOP_EXPR:
2892 case CONVERT_EXPR:
2893 case NON_LVALUE_EXPR:
2894 record_constant_1 (TREE_OPERAND (exp, 0));
2895 return;
2897 default:
2898 if (lang_expand_constant)
2900 exp = (*lang_expand_constant) (exp);
2901 record_constant_1 (exp);
2903 return;
2906 /* Record constant contents. */
2907 obstack_grow (&permanent_obstack, strp, len);
2910 /* Record a list of constant expressions that were passed to
2911 output_constant_def but that could not be output right away. */
2913 struct deferred_constant
2915 struct deferred_constant *next;
2916 tree exp;
2917 int reloc;
2918 int labelno;
2921 static struct deferred_constant *deferred_constants;
2923 /* Another list of constants which should be output after the
2924 function. */
2925 static struct deferred_constant *after_function_constants;
2927 /* Nonzero means defer output of addressed subconstants
2928 (i.e., those for which output_constant_def is called.) */
2929 static int defer_addressed_constants_flag;
2931 /* Start deferring output of subconstants. */
2933 void
2934 defer_addressed_constants ()
2936 defer_addressed_constants_flag++;
2939 /* Stop deferring output of subconstants,
2940 and output now all those that have been deferred. */
2942 void
2943 output_deferred_addressed_constants ()
2945 struct deferred_constant *p, *next;
2947 defer_addressed_constants_flag--;
2949 if (defer_addressed_constants_flag > 0)
2950 return;
2952 for (p = deferred_constants; p; p = next)
2954 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2955 next = p->next;
2956 free (p);
2959 deferred_constants = 0;
2962 /* Output any constants which should appear after a function. */
2964 static void
2965 output_after_function_constants ()
2967 struct deferred_constant *p, *next;
2969 for (p = after_function_constants; p; p = next)
2971 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2972 next = p->next;
2973 free (p);
2976 after_function_constants = 0;
2979 /* Make a copy of the whole tree structure for a constant.
2980 This handles the same types of nodes that compare_constant
2981 and record_constant handle. */
2983 static tree
2984 copy_constant (exp)
2985 tree exp;
2987 switch (TREE_CODE (exp))
2989 case ADDR_EXPR:
2990 /* For ADDR_EXPR, we do not want to copy the decl whose address
2991 is requested. We do want to copy constants though. */
2992 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2993 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2994 copy_constant (TREE_OPERAND (exp, 0)));
2995 else
2996 return copy_node (exp);
2998 case INTEGER_CST:
2999 case REAL_CST:
3000 case STRING_CST:
3001 return copy_node (exp);
3003 case COMPLEX_CST:
3004 return build_complex (TREE_TYPE (exp),
3005 copy_constant (TREE_REALPART (exp)),
3006 copy_constant (TREE_IMAGPART (exp)));
3008 case PLUS_EXPR:
3009 case MINUS_EXPR:
3010 return build (TREE_CODE (exp), TREE_TYPE (exp),
3011 copy_constant (TREE_OPERAND (exp, 0)),
3012 copy_constant (TREE_OPERAND (exp, 1)));
3014 case NOP_EXPR:
3015 case CONVERT_EXPR:
3016 case NON_LVALUE_EXPR:
3017 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3018 copy_constant (TREE_OPERAND (exp, 0)));
3020 case CONSTRUCTOR:
3022 tree copy = copy_node (exp);
3023 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
3024 tree tail;
3026 CONSTRUCTOR_ELTS (copy) = list;
3027 for (tail = list; tail; tail = TREE_CHAIN (tail))
3028 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
3029 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
3030 for (tail = list; tail; tail = TREE_CHAIN (tail))
3031 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
3033 return copy;
3036 default:
3037 abort ();
3041 /* Return an rtx representing a reference to constant data in memory
3042 for the constant expression EXP.
3044 If assembler code for such a constant has already been output,
3045 return an rtx to refer to it.
3046 Otherwise, output such a constant in memory (or defer it for later)
3047 and generate an rtx for it.
3049 If DEFER is non-zero, the output of string constants can be deferred
3050 and output only if referenced in the function after all optimizations.
3052 The TREE_CST_RTL of EXP is set up to point to that rtx.
3053 The const_hash_table records which constants already have label strings. */
3056 output_constant_def (exp, defer)
3057 tree exp;
3058 int defer;
3060 register int hash;
3061 register struct constant_descriptor *desc;
3062 struct deferred_string **defstr;
3063 char label[256];
3064 int reloc;
3065 int found = 1;
3066 int after_function = 0;
3067 int labelno = -1;
3069 if (TREE_CST_RTL (exp))
3070 return TREE_CST_RTL (exp);
3072 /* Make sure any other constants whose addresses appear in EXP
3073 are assigned label numbers. */
3075 reloc = output_addressed_constants (exp);
3077 /* Compute hash code of EXP. Search the descriptors for that hash code
3078 to see if any of them describes EXP. If yes, the descriptor records
3079 the label number already assigned. */
3081 hash = const_hash (exp) % MAX_HASH_TABLE;
3083 for (desc = const_hash_table[hash]; desc; desc = desc->next)
3084 if (compare_constant (exp, desc))
3085 break;
3087 if (desc == 0)
3089 /* No constant equal to EXP is known to have been output.
3090 Make a constant descriptor to enter EXP in the hash table.
3091 Assign the label number and record it in the descriptor for
3092 future calls to this function to find. */
3094 /* Create a string containing the label name, in LABEL. */
3095 labelno = const_labelno++;
3096 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3098 desc = record_constant (exp);
3099 desc->next = const_hash_table[hash];
3100 desc->label = ggc_strdup (label);
3101 const_hash_table[hash] = desc;
3103 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3104 desc->rtl
3105 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
3106 gen_rtx_SYMBOL_REF (Pmode, desc->label));
3108 set_mem_attributes (desc->rtl, exp, 1);
3110 found = 0;
3113 TREE_CST_RTL (exp) = desc->rtl;
3115 /* Optionally set flags or add text to the name to record information
3116 such as that it is a function name. If the name is changed, the macro
3117 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
3118 #ifdef ENCODE_SECTION_INFO
3119 /* A previously-processed constant would already have section info
3120 encoded in it. */
3121 if (! found)
3123 ENCODE_SECTION_INFO (exp);
3124 desc->rtl = TREE_CST_RTL (exp);
3125 desc->label = XSTR (XEXP (desc->rtl, 0), 0);
3127 #endif
3129 #ifdef CONSTANT_AFTER_FUNCTION_P
3130 if (current_function_decl != 0
3131 && CONSTANT_AFTER_FUNCTION_P (exp))
3132 after_function = 1;
3133 #endif
3135 if (found
3136 && STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0))
3137 && (!defer || defer_addressed_constants_flag || after_function))
3139 defstr = (struct deferred_string **)
3140 htab_find_slot_with_hash (const_str_htab, desc->label,
3141 STRHASH (desc->label), NO_INSERT);
3142 if (defstr)
3144 /* If the string is currently deferred but we need to output it now,
3145 remove it from deferred string hash table. */
3146 found = 0;
3147 labelno = (*defstr)->labelno;
3148 STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0)) = 0;
3149 htab_clear_slot (const_str_htab, (void **) defstr);
3153 /* If this is the first time we've seen this particular constant,
3154 output it (or defer its output for later). */
3155 if (! found)
3157 if (defer_addressed_constants_flag || after_function)
3159 struct deferred_constant *p;
3160 p = (struct deferred_constant *) xmalloc (sizeof (struct deferred_constant));
3162 p->exp = copy_constant (exp);
3163 p->reloc = reloc;
3164 p->labelno = labelno;
3165 if (after_function)
3167 p->next = after_function_constants;
3168 after_function_constants = p;
3170 else
3172 p->next = deferred_constants;
3173 deferred_constants = p;
3176 else
3178 /* Do no output if -fsyntax-only. */
3179 if (! flag_syntax_only)
3181 if (TREE_CODE (exp) != STRING_CST
3182 || !defer
3183 || flag_writable_strings
3184 || (defstr = (struct deferred_string **)
3185 htab_find_slot_with_hash (const_str_htab,
3186 desc->label,
3187 STRHASH (desc->label),
3188 INSERT)) == NULL)
3189 output_constant_def_contents (exp, reloc, labelno);
3190 else
3192 struct deferred_string *p;
3194 p = (struct deferred_string *)
3195 xmalloc (sizeof (struct deferred_string));
3197 p->exp = copy_constant (exp);
3198 p->label = desc->label;
3199 p->labelno = labelno;
3200 *defstr = p;
3201 STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0)) = 1;
3207 return TREE_CST_RTL (exp);
3210 /* Now output assembler code to define the label for EXP,
3211 and follow it with the data of EXP. */
3213 static void
3214 output_constant_def_contents (exp, reloc, labelno)
3215 tree exp;
3216 int reloc;
3217 int labelno;
3219 int align;
3221 if (IN_NAMED_SECTION (exp))
3222 named_section (exp, NULL, reloc);
3223 else
3225 /* First switch to text section, except for writable strings. */
3226 #ifdef SELECT_SECTION
3227 SELECT_SECTION (exp, reloc);
3228 #else
3229 if (((TREE_CODE (exp) == STRING_CST) && flag_writable_strings)
3230 || (flag_pic && reloc))
3231 data_section ();
3232 else
3233 readonly_data_section ();
3234 #endif
3237 /* Align the location counter as required by EXP's data type. */
3238 align = TYPE_ALIGN (TREE_TYPE (exp));
3239 #ifdef CONSTANT_ALIGNMENT
3240 align = CONSTANT_ALIGNMENT (exp, align);
3241 #endif
3243 if (align > BITS_PER_UNIT)
3244 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3246 /* Output the label itself. */
3247 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", labelno);
3249 /* Output the value of EXP. */
3250 output_constant (exp,
3251 (TREE_CODE (exp) == STRING_CST
3252 ? TREE_STRING_LENGTH (exp)
3253 : int_size_in_bytes (TREE_TYPE (exp))));
3257 /* Structure to represent sufficient information about a constant so that
3258 it can be output when the constant pool is output, so that function
3259 integration can be done, and to simplify handling on machines that reference
3260 constant pool as base+displacement. */
3262 struct pool_constant
3264 struct constant_descriptor *desc;
3265 struct pool_constant *next, *next_sym;
3266 const char *label;
3267 rtx constant;
3268 enum machine_mode mode;
3269 int labelno;
3270 int align;
3271 int offset;
3272 int mark;
3275 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
3276 The argument is XSTR (... , 0) */
3278 #define SYMHASH(LABEL) \
3279 ((((unsigned long) (LABEL)) & ((1 << HASHBITS) - 1)) % MAX_RTX_HASH_TABLE)
3281 /* Initialize constant pool hashing for a new function. */
3283 void
3284 init_varasm_status (f)
3285 struct function *f;
3287 struct varasm_status *p;
3288 p = (struct varasm_status *) xmalloc (sizeof (struct varasm_status));
3289 f->varasm = p;
3290 p->x_const_rtx_hash_table
3291 = ((struct constant_descriptor **)
3292 xcalloc (MAX_RTX_HASH_TABLE, sizeof (struct constant_descriptor *)));
3293 p->x_const_rtx_sym_hash_table
3294 = ((struct pool_constant **)
3295 xcalloc (MAX_RTX_HASH_TABLE, sizeof (struct pool_constant *)));
3297 p->x_first_pool = p->x_last_pool = 0;
3298 p->x_pool_offset = 0;
3299 p->x_const_double_chain = 0;
3302 /* Mark PC for GC. */
3304 static void
3305 mark_pool_constant (pc)
3306 struct pool_constant *pc;
3308 while (pc)
3310 ggc_mark (pc);
3311 ggc_mark_rtx (pc->constant);
3312 pc = pc->next;
3316 /* Mark P for GC. */
3318 void
3319 mark_varasm_status (p)
3320 struct varasm_status *p;
3322 if (p == NULL)
3323 return;
3325 mark_pool_constant (p->x_first_pool);
3326 ggc_mark_rtx (p->x_const_double_chain);
3329 /* Clear out all parts of the state in F that can safely be discarded
3330 after the function has been compiled, to let garbage collection
3331 reclaim the memory. */
3333 void
3334 free_varasm_status (f)
3335 struct function *f;
3337 struct varasm_status *p;
3338 int i;
3340 p = f->varasm;
3342 /* Clear out the hash tables. */
3343 for (i = 0; i < MAX_RTX_HASH_TABLE; ++i)
3345 struct constant_descriptor* cd;
3347 cd = p->x_const_rtx_hash_table[i];
3348 while (cd) {
3349 struct constant_descriptor* next = cd->next;
3350 free (cd);
3351 cd = next;
3355 free (p->x_const_rtx_hash_table);
3356 free (p->x_const_rtx_sym_hash_table);
3357 free (p);
3358 f->varasm = NULL;
3361 enum kind { RTX_DOUBLE, RTX_INT };
3363 /* Express an rtx for a constant integer (perhaps symbolic)
3364 as the sum of a symbol or label plus an explicit integer.
3365 They are stored into VALUE. */
3367 static void
3368 decode_rtx_const (mode, x, value)
3369 enum machine_mode mode;
3370 rtx x;
3371 struct rtx_const *value;
3373 /* Clear the whole structure, including any gaps. */
3374 memset (value, 0, sizeof (struct rtx_const));
3376 value->kind = RTX_INT; /* Most usual kind. */
3377 value->mode = mode;
3379 switch (GET_CODE (x))
3381 case CONST_DOUBLE:
3382 value->kind = RTX_DOUBLE;
3383 if (GET_MODE (x) != VOIDmode)
3385 value->mode = GET_MODE (x);
3386 memcpy ((char *) &value->un.du,
3387 (char *) &CONST_DOUBLE_LOW (x), sizeof value->un.du);
3389 else
3391 value->un.di.low = CONST_DOUBLE_LOW (x);
3392 value->un.di.high = CONST_DOUBLE_HIGH (x);
3394 break;
3396 case CONST_INT:
3397 value->un.addr.offset = INTVAL (x);
3398 break;
3400 case SYMBOL_REF:
3401 case LABEL_REF:
3402 case PC:
3403 value->un.addr.base = x;
3404 break;
3406 case CONST:
3407 x = XEXP (x, 0);
3408 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3410 value->un.addr.base = XEXP (x, 0);
3411 value->un.addr.offset = INTVAL (XEXP (x, 1));
3413 else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3415 value->un.addr.base = XEXP (x, 0);
3416 value->un.addr.offset = - INTVAL (XEXP (x, 1));
3418 else
3420 value->un.addr.base = x;
3421 value->un.addr.offset = 0;
3423 break;
3425 default:
3426 abort ();
3429 if (value->kind == RTX_INT && value->un.addr.base != 0)
3430 switch (GET_CODE (value->un.addr.base))
3432 case SYMBOL_REF:
3433 /* Use the string's address, not the SYMBOL_REF's address,
3434 for the sake of addresses of library routines. */
3435 value->un.addr.base = (rtx) XSTR (value->un.addr.base, 0);
3436 break;
3438 case LABEL_REF:
3439 /* For a LABEL_REF, compare labels. */
3440 value->un.addr.base = XEXP (value->un.addr.base, 0);
3442 default:
3443 break;
3447 /* Given a MINUS expression, simplify it if both sides
3448 include the same symbol. */
3451 simplify_subtraction (x)
3452 rtx x;
3454 struct rtx_const val0, val1;
3456 decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
3457 decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
3459 if (val0.un.addr.base == val1.un.addr.base)
3460 return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
3461 return x;
3464 /* Compute a hash code for a constant RTL expression. */
3466 static int
3467 const_hash_rtx (mode, x)
3468 enum machine_mode mode;
3469 rtx x;
3471 register int hi;
3472 register size_t i;
3474 struct rtx_const value;
3475 decode_rtx_const (mode, x, &value);
3477 /* Compute hashing function */
3478 hi = 0;
3479 for (i = 0; i < sizeof value / sizeof (int); i++)
3480 hi += ((int *) &value)[i];
3482 hi &= (1 << HASHBITS) - 1;
3483 hi %= MAX_RTX_HASH_TABLE;
3484 return hi;
3487 /* Compare a constant rtl object X with a constant-descriptor DESC.
3488 Return 1 if DESC describes a constant with the same value as X. */
3490 static int
3491 compare_constant_rtx (mode, x, desc)
3492 enum machine_mode mode;
3493 rtx x;
3494 struct constant_descriptor *desc;
3496 register int *p = (int *) desc->u.contents;
3497 register int *strp;
3498 register int len;
3499 struct rtx_const value;
3501 decode_rtx_const (mode, x, &value);
3502 strp = (int *) &value;
3503 len = sizeof value / sizeof (int);
3505 /* Compare constant contents. */
3506 while (--len >= 0)
3507 if (*p++ != *strp++)
3508 return 0;
3510 return 1;
3513 /* Construct a constant descriptor for the rtl-expression X.
3514 It is up to the caller to enter the descriptor in the hash table. */
3516 static struct constant_descriptor *
3517 record_constant_rtx (mode, x)
3518 enum machine_mode mode;
3519 rtx x;
3521 struct constant_descriptor *ptr;
3523 ptr = ((struct constant_descriptor *)
3524 xcalloc (1, (offsetof (struct constant_descriptor, u)
3525 + sizeof (struct rtx_const))));
3526 decode_rtx_const (mode, x, (struct rtx_const *) ptr->u.contents);
3528 return ptr;
3531 /* Given a constant rtx X, make (or find) a memory constant for its value
3532 and return a MEM rtx to refer to it in memory. */
3535 force_const_mem (mode, x)
3536 enum machine_mode mode;
3537 rtx x;
3539 register int hash;
3540 register struct constant_descriptor *desc;
3541 char label[256];
3542 const char *found = 0;
3543 rtx def;
3545 /* If we want this CONST_DOUBLE in the same mode as it is in memory
3546 (this will always be true for floating CONST_DOUBLEs that have been
3547 placed in memory, but not for VOIDmode (integer) CONST_DOUBLEs),
3548 use the previous copy. Otherwise, make a new one. Note that in
3549 the unlikely event that this same CONST_DOUBLE is used in two different
3550 modes in an alternating fashion, we will allocate a lot of different
3551 memory locations, but this should be extremely rare. */
3553 if (GET_CODE (x) == CONST_DOUBLE
3554 && GET_CODE (CONST_DOUBLE_MEM (x)) == MEM
3555 && GET_MODE (CONST_DOUBLE_MEM (x)) == mode)
3556 return CONST_DOUBLE_MEM (x);
3558 /* Compute hash code of X. Search the descriptors for that hash code
3559 to see if any of them describes X. If yes, the descriptor records
3560 the label number already assigned. */
3562 hash = const_hash_rtx (mode, x);
3564 for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
3565 if (compare_constant_rtx (mode, x, desc))
3567 found = desc->label;
3568 break;
3571 if (found == 0)
3573 register struct pool_constant *pool;
3574 int align;
3576 /* No constant equal to X is known to have been output.
3577 Make a constant descriptor to enter X in the hash table.
3578 Assign the label number and record it in the descriptor for
3579 future calls to this function to find. */
3581 desc = record_constant_rtx (mode, x);
3582 desc->next = const_rtx_hash_table[hash];
3583 const_rtx_hash_table[hash] = desc;
3585 /* Align the location counter as required by EXP's data type. */
3586 align = (mode == VOIDmode) ? UNITS_PER_WORD : GET_MODE_SIZE (mode);
3587 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
3588 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
3589 #ifdef CONSTANT_ALIGNMENT
3590 align = CONSTANT_ALIGNMENT (make_tree (type_for_mode (mode, 0), x),
3591 align * BITS_PER_UNIT) / BITS_PER_UNIT;
3592 #endif
3594 pool_offset += align - 1;
3595 pool_offset &= ~ (align - 1);
3597 if (GET_CODE (x) == LABEL_REF)
3598 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3600 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3602 pool = (struct pool_constant *) ggc_alloc (sizeof (struct pool_constant));
3603 pool->desc = desc;
3604 pool->constant = x;
3605 pool->mode = mode;
3606 pool->labelno = const_labelno;
3607 pool->align = align;
3608 pool->offset = pool_offset;
3609 pool->mark = 1;
3610 pool->next = 0;
3612 if (last_pool == 0)
3613 first_pool = pool;
3614 else
3615 last_pool->next = pool;
3617 last_pool = pool;
3618 pool_offset += GET_MODE_SIZE (mode);
3620 /* Create a string containing the label name, in LABEL. */
3621 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3623 ++const_labelno;
3625 desc->label = found = ggc_strdup (label);
3627 /* Add label to symbol hash table. */
3628 hash = SYMHASH (found);
3629 pool->label = found;
3630 pool->next_sym = const_rtx_sym_hash_table[hash];
3631 const_rtx_sym_hash_table[hash] = pool;
3634 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3636 def = gen_rtx_MEM (mode, gen_rtx_SYMBOL_REF (Pmode, found));
3637 set_mem_attributes (def, type_for_mode (mode, 0), 1);
3638 RTX_UNCHANGING_P (def) = 1;
3640 /* Mark the symbol_ref as belonging to this constants pool. */
3641 CONSTANT_POOL_ADDRESS_P (XEXP (def, 0)) = 1;
3642 current_function_uses_const_pool = 1;
3644 if (GET_CODE (x) == CONST_DOUBLE)
3646 if (CONST_DOUBLE_MEM (x) == cc0_rtx)
3648 CONST_DOUBLE_CHAIN (x) = const_double_chain;
3649 const_double_chain = x;
3651 CONST_DOUBLE_MEM (x) = def;
3654 return def;
3657 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3658 the corresponding pool_constant structure. */
3660 static struct pool_constant *
3661 find_pool_constant (f, addr)
3662 struct function *f;
3663 rtx addr;
3665 struct pool_constant *pool;
3666 const char *label = XSTR (addr, 0);
3668 for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
3669 pool = pool->next_sym)
3670 if (pool->label == label)
3671 return pool;
3673 abort ();
3676 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3679 get_pool_constant (addr)
3680 rtx addr;
3682 return (find_pool_constant (cfun, addr))->constant;
3685 /* Likewise, but for the constant pool of a specific function. */
3688 get_pool_constant_for_function (f, addr)
3689 struct function *f;
3690 rtx addr;
3692 return (find_pool_constant (f, addr))->constant;
3695 /* Similar, return the mode. */
3697 enum machine_mode
3698 get_pool_mode (addr)
3699 rtx addr;
3701 return (find_pool_constant (cfun, addr))->mode;
3704 enum machine_mode
3705 get_pool_mode_for_function (f, addr)
3706 struct function *f;
3707 rtx addr;
3709 return (find_pool_constant (f, addr))->mode;
3712 /* Similar, return the offset in the constant pool. */
3715 get_pool_offset (addr)
3716 rtx addr;
3718 return (find_pool_constant (cfun, addr))->offset;
3721 /* Return the size of the constant pool. */
3724 get_pool_size ()
3726 return pool_offset;
3729 /* Write all the constants in the constant pool. */
3731 void
3732 output_constant_pool (fnname, fndecl)
3733 const char *fnname ATTRIBUTE_UNUSED;
3734 tree fndecl ATTRIBUTE_UNUSED;
3736 struct pool_constant *pool;
3737 rtx x;
3738 union real_extract u;
3740 /* It is possible for gcc to call force_const_mem and then to later
3741 discard the instructions which refer to the constant. In such a
3742 case we do not need to output the constant. */
3743 mark_constant_pool ();
3745 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3746 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3747 #endif
3749 for (pool = first_pool; pool; pool = pool->next)
3751 rtx tmp;
3753 x = pool->constant;
3755 if (! pool->mark)
3756 continue;
3758 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3759 whose CODE_LABEL has been deleted. This can occur if a jump table
3760 is eliminated by optimization. If so, write a constant of zero
3761 instead. Note that this can also happen by turning the
3762 CODE_LABEL into a NOTE. */
3763 /* ??? This seems completely and utterly wrong. Certainly it's
3764 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3765 functioning even with INSN_DELETED_P and friends. */
3767 tmp = x;
3768 switch (GET_CODE (x))
3770 case CONST:
3771 if (GET_CODE (XEXP (x, 0)) != PLUS
3772 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3773 break;
3774 tmp = XEXP (XEXP (x, 0), 0);
3775 /* FALLTHRU */
3777 case LABEL_REF:
3778 tmp = XEXP (x, 0);
3779 if (INSN_DELETED_P (tmp)
3780 || (GET_CODE (tmp) == NOTE
3781 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3783 abort ();
3784 x = const0_rtx;
3786 break;
3788 default:
3789 break;
3792 /* First switch to correct section. */
3793 #ifdef SELECT_RTX_SECTION
3794 SELECT_RTX_SECTION (pool->mode, x);
3795 #else
3796 readonly_data_section ();
3797 #endif
3799 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3800 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3801 pool->align, pool->labelno, done);
3802 #endif
3804 if (pool->align > 1)
3805 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (pool->align));
3807 /* Output the label. */
3808 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", pool->labelno);
3810 /* Output the value of the constant itself. */
3811 switch (GET_MODE_CLASS (pool->mode))
3813 case MODE_FLOAT:
3814 if (GET_CODE (x) != CONST_DOUBLE)
3815 abort ();
3817 memcpy ((char *) &u, (char *) &CONST_DOUBLE_LOW (x), sizeof u);
3818 assemble_real (u.d, pool->mode);
3819 break;
3821 case MODE_INT:
3822 case MODE_PARTIAL_INT:
3823 assemble_integer (x, GET_MODE_SIZE (pool->mode), 1);
3824 break;
3826 default:
3827 abort ();
3830 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3831 done: ;
3832 #endif
3836 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3837 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3838 #endif
3840 /* Done with this pool. */
3841 first_pool = last_pool = 0;
3844 /* Look through the instructions for this function, and mark all the
3845 entries in the constant pool which are actually being used.
3846 Emit used deferred strings. */
3848 static void
3849 mark_constant_pool ()
3851 register rtx insn;
3852 struct pool_constant *pool;
3854 if (first_pool == 0 && htab_elements (const_str_htab) == 0)
3855 return;
3857 for (pool = first_pool; pool; pool = pool->next)
3858 pool->mark = 0;
3860 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3861 if (INSN_P (insn))
3862 mark_constants (PATTERN (insn));
3864 for (insn = current_function_epilogue_delay_list;
3865 insn;
3866 insn = XEXP (insn, 1))
3867 if (INSN_P (insn))
3868 mark_constants (PATTERN (insn));
3871 /* Look through appropriate parts of X, marking all entries in the
3872 constant pool which are actually being used. Entries that are only
3873 referenced by other constants are also marked as used. Emit
3874 deferred strings that are used. */
3876 static void
3877 mark_constants (x)
3878 rtx x;
3880 register int i;
3881 register const char *format_ptr;
3883 if (x == 0)
3884 return;
3886 if (GET_CODE (x) == SYMBOL_REF)
3888 mark_constant (&x, NULL);
3889 return;
3891 /* Never search inside a CONST_DOUBLE, because CONST_DOUBLE_MEM may be
3892 a MEM, but does not constitute a use of that MEM. */
3893 else if (GET_CODE (x) == CONST_DOUBLE)
3894 return;
3896 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3897 insns, not any notes that may be attached. We don't want to mark
3898 a constant just because it happens to appear in a REG_EQUIV note. */
3899 if (INSN_P (x))
3901 mark_constants (PATTERN (x));
3902 return;
3905 format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3907 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3909 switch (*format_ptr++)
3911 case 'e':
3912 mark_constants (XEXP (x, i));
3913 break;
3915 case 'E':
3916 if (XVEC (x, i) != 0)
3918 register int j;
3920 for (j = 0; j < XVECLEN (x, i); j++)
3921 mark_constants (XVECEXP (x, i, j));
3923 break;
3925 case 'S':
3926 case 's':
3927 case '0':
3928 case 'i':
3929 case 'w':
3930 case 'n':
3931 case 'u':
3932 break;
3934 default:
3935 abort ();
3940 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3941 to as used. Emit referenced deferred strings. This function can
3942 be used with for_each_rtx () to mark all SYMBOL_REFs in an rtx. */
3944 static int
3945 mark_constant (current_rtx, data)
3946 rtx *current_rtx;
3947 void *data ATTRIBUTE_UNUSED;
3949 rtx x = *current_rtx;
3951 if (x == NULL_RTX)
3952 return 0;
3953 else if (GET_CODE(x) == CONST_DOUBLE)
3954 /* Never search inside a CONST_DOUBLE because CONST_DOUBLE_MEM may
3955 be a MEM but does not constitute a use of that MEM. */
3956 return -1;
3957 else if (GET_CODE (x) == SYMBOL_REF)
3959 if (CONSTANT_POOL_ADDRESS_P (x))
3961 struct pool_constant *pool = find_pool_constant (cfun, x);
3962 if (pool->mark == 0) {
3963 pool->mark = 1;
3964 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3966 else
3967 return -1;
3969 else if (STRING_POOL_ADDRESS_P (x))
3971 struct deferred_string **defstr;
3973 defstr = (struct deferred_string **)
3974 htab_find_slot_with_hash (const_str_htab, XSTR (x, 0),
3975 STRHASH (XSTR (x, 0)), NO_INSERT);
3976 if (defstr)
3978 struct deferred_string *p = *defstr;
3980 STRING_POOL_ADDRESS_P (x) = 0;
3981 output_constant_def_contents (p->exp, 0, p->labelno);
3982 htab_clear_slot (const_str_htab, (void **) defstr);
3986 return 0;
3989 /* Find all the constants whose addresses are referenced inside of EXP,
3990 and make sure assembler code with a label has been output for each one.
3991 Indicate whether an ADDR_EXPR has been encountered. */
3993 static int
3994 output_addressed_constants (exp)
3995 tree exp;
3997 int reloc = 0;
3999 /* Give the front-end a chance to convert VALUE to something that
4000 looks more like a constant to the back-end. */
4001 if (lang_expand_constant)
4002 exp = (*lang_expand_constant) (exp);
4004 switch (TREE_CODE (exp))
4006 case ADDR_EXPR:
4008 register tree constant = TREE_OPERAND (exp, 0);
4010 while (TREE_CODE (constant) == COMPONENT_REF)
4012 constant = TREE_OPERAND (constant, 0);
4015 if (TREE_CODE_CLASS (TREE_CODE (constant)) == 'c'
4016 || TREE_CODE (constant) == CONSTRUCTOR)
4017 /* No need to do anything here
4018 for addresses of variables or functions. */
4019 output_constant_def (constant, 0);
4021 reloc = 1;
4022 break;
4024 case PLUS_EXPR:
4025 case MINUS_EXPR:
4026 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
4027 reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
4028 break;
4030 case NOP_EXPR:
4031 case CONVERT_EXPR:
4032 case NON_LVALUE_EXPR:
4033 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
4034 break;
4036 case CONSTRUCTOR:
4038 register tree link;
4039 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
4040 if (TREE_VALUE (link) != 0)
4041 reloc |= output_addressed_constants (TREE_VALUE (link));
4043 break;
4045 default:
4046 break;
4048 return reloc;
4051 /* Return nonzero if VALUE is a valid constant-valued expression
4052 for use in initializing a static variable; one that can be an
4053 element of a "constant" initializer.
4055 Return null_pointer_node if the value is absolute;
4056 if it is relocatable, return the variable that determines the relocation.
4057 We assume that VALUE has been folded as much as possible;
4058 therefore, we do not need to check for such things as
4059 arithmetic-combinations of integers. */
4061 tree
4062 initializer_constant_valid_p (value, endtype)
4063 tree value;
4064 tree endtype;
4066 /* Give the front-end a chance to convert VALUE to something that
4067 looks more like a constant to the back-end. */
4068 if (lang_expand_constant)
4069 value = (*lang_expand_constant) (value);
4071 switch (TREE_CODE (value))
4073 case CONSTRUCTOR:
4074 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
4075 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
4076 && TREE_CONSTANT (value)
4077 && CONSTRUCTOR_ELTS (value))
4078 return
4079 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
4080 endtype);
4082 return TREE_STATIC (value) ? null_pointer_node : 0;
4084 case INTEGER_CST:
4085 case REAL_CST:
4086 case STRING_CST:
4087 case COMPLEX_CST:
4088 return null_pointer_node;
4090 case ADDR_EXPR:
4091 return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
4093 case NON_LVALUE_EXPR:
4094 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4096 case CONVERT_EXPR:
4097 case NOP_EXPR:
4098 /* Allow conversions between pointer types. */
4099 if (POINTER_TYPE_P (TREE_TYPE (value))
4100 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4101 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4103 /* Allow conversions between real types. */
4104 if (FLOAT_TYPE_P (TREE_TYPE (value))
4105 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4106 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4108 /* Allow length-preserving conversions between integer types. */
4109 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
4110 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
4111 && (TYPE_PRECISION (TREE_TYPE (value))
4112 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4113 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4115 /* Allow conversions between other integer types only if
4116 explicit value. */
4117 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
4118 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4120 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4121 endtype);
4122 if (inner == null_pointer_node)
4123 return null_pointer_node;
4124 break;
4127 /* Allow (int) &foo provided int is as wide as a pointer. */
4128 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
4129 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
4130 && (TYPE_PRECISION (TREE_TYPE (value))
4131 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4132 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4133 endtype);
4135 /* Likewise conversions from int to pointers, but also allow
4136 conversions from 0. */
4137 if (POINTER_TYPE_P (TREE_TYPE (value))
4138 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4140 if (integer_zerop (TREE_OPERAND (value, 0)))
4141 return null_pointer_node;
4142 else if (TYPE_PRECISION (TREE_TYPE (value))
4143 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
4144 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4145 endtype);
4148 /* Allow conversions to union types if the value inside is okay. */
4149 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
4150 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4151 endtype);
4152 break;
4154 case PLUS_EXPR:
4155 if (! INTEGRAL_TYPE_P (endtype)
4156 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4158 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4159 endtype);
4160 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4161 endtype);
4162 /* If either term is absolute, use the other terms relocation. */
4163 if (valid0 == null_pointer_node)
4164 return valid1;
4165 if (valid1 == null_pointer_node)
4166 return valid0;
4168 break;
4170 case MINUS_EXPR:
4171 if (! INTEGRAL_TYPE_P (endtype)
4172 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4174 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4175 endtype);
4176 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4177 endtype);
4178 /* Win if second argument is absolute. */
4179 if (valid1 == null_pointer_node)
4180 return valid0;
4181 /* Win if both arguments have the same relocation.
4182 Then the value is absolute. */
4183 if (valid0 == valid1 && valid0 != 0)
4184 return null_pointer_node;
4186 /* Since GCC guarantees that string constants are unique in the
4187 generated code, a subtraction between two copies of the same
4188 constant string is absolute. */
4189 if (valid0 && TREE_CODE (valid0) == STRING_CST &&
4190 valid1 && TREE_CODE (valid1) == STRING_CST &&
4191 TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
4192 return null_pointer_node;
4195 /* Support differences between labels. */
4196 if (INTEGRAL_TYPE_P (endtype))
4198 tree op0, op1;
4199 op0 = TREE_OPERAND (value, 0);
4200 op1 = TREE_OPERAND (value, 1);
4201 STRIP_NOPS (op0);
4202 STRIP_NOPS (op1);
4204 if (TREE_CODE (op0) == ADDR_EXPR
4205 && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
4206 && TREE_CODE (op1) == ADDR_EXPR
4207 && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
4208 return null_pointer_node;
4210 break;
4212 default:
4213 break;
4216 return 0;
4219 /* Output assembler code for constant EXP to FILE, with no label.
4220 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4221 Assumes output_addressed_constants has been done on EXP already.
4223 Generate exactly SIZE bytes of assembler data, padding at the end
4224 with zeros if necessary. SIZE must always be specified.
4226 SIZE is important for structure constructors,
4227 since trailing members may have been omitted from the constructor.
4228 It is also important for initialization of arrays from string constants
4229 since the full length of the string constant might not be wanted.
4230 It is also needed for initialization of unions, where the initializer's
4231 type is just one member, and that may not be as long as the union.
4233 There a case in which we would fail to output exactly SIZE bytes:
4234 for a structure constructor that wants to produce more than SIZE bytes.
4235 But such constructors will never be generated for any possible input. */
4237 void
4238 output_constant (exp, size)
4239 register tree exp;
4240 register int size;
4242 register enum tree_code code = TREE_CODE (TREE_TYPE (exp));
4244 /* Some front-ends use constants other than the standard
4245 language-indepdent varieties, but which may still be output
4246 directly. Give the front-end a chance to convert EXP to a
4247 language-independent representation. */
4248 if (lang_expand_constant)
4250 exp = (*lang_expand_constant) (exp);
4251 code = TREE_CODE (TREE_TYPE (exp));
4254 if (size == 0 || flag_syntax_only)
4255 return;
4257 /* Eliminate the NON_LVALUE_EXPR_EXPR that makes a cast not be an lvalue.
4258 That way we get the constant (we hope) inside it. Also, strip off any
4259 NOP_EXPR that converts between two record, union, array, or set types
4260 or a CONVERT_EXPR that converts to a union TYPE. */
4261 while ((TREE_CODE (exp) == NOP_EXPR
4262 && (TREE_TYPE (exp) == TREE_TYPE (TREE_OPERAND (exp, 0))
4263 || AGGREGATE_TYPE_P (TREE_TYPE (exp))))
4264 || (TREE_CODE (exp) == CONVERT_EXPR
4265 && code == UNION_TYPE)
4266 || TREE_CODE (exp) == NON_LVALUE_EXPR)
4268 exp = TREE_OPERAND (exp, 0);
4269 code = TREE_CODE (TREE_TYPE (exp));
4272 /* Allow a constructor with no elements for any data type.
4273 This means to fill the space with zeros. */
4274 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
4276 assemble_zeros (size);
4277 return;
4280 switch (code)
4282 case CHAR_TYPE:
4283 case BOOLEAN_TYPE:
4284 case INTEGER_TYPE:
4285 case ENUMERAL_TYPE:
4286 case POINTER_TYPE:
4287 case REFERENCE_TYPE:
4288 /* ??? What about (int)((float)(int)&foo + 4) */
4289 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
4290 || TREE_CODE (exp) == NON_LVALUE_EXPR)
4291 exp = TREE_OPERAND (exp, 0);
4293 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4294 EXPAND_INITIALIZER),
4295 size, 0))
4296 error ("initializer for integer value is too complicated");
4297 size = 0;
4298 break;
4300 case REAL_TYPE:
4301 if (TREE_CODE (exp) != REAL_CST)
4302 error ("initializer for floating value is not a floating constant");
4304 assemble_real (TREE_REAL_CST (exp),
4305 mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0));
4306 size = 0;
4307 break;
4309 case COMPLEX_TYPE:
4310 output_constant (TREE_REALPART (exp), size / 2);
4311 output_constant (TREE_IMAGPART (exp), size / 2);
4312 size -= (size / 2) * 2;
4313 break;
4315 case ARRAY_TYPE:
4316 if (TREE_CODE (exp) == CONSTRUCTOR)
4318 output_constructor (exp, size);
4319 return;
4321 else if (TREE_CODE (exp) == STRING_CST)
4323 int excess = 0;
4325 if (size > TREE_STRING_LENGTH (exp))
4327 excess = size - TREE_STRING_LENGTH (exp);
4328 size = TREE_STRING_LENGTH (exp);
4331 assemble_string (TREE_STRING_POINTER (exp), size);
4332 size = excess;
4334 else
4335 abort ();
4336 break;
4338 case RECORD_TYPE:
4339 case UNION_TYPE:
4340 if (TREE_CODE (exp) == CONSTRUCTOR)
4341 output_constructor (exp, size);
4342 else
4343 abort ();
4344 return;
4346 case SET_TYPE:
4347 if (TREE_CODE (exp) == INTEGER_CST)
4348 assemble_integer (expand_expr (exp, NULL_RTX,
4349 VOIDmode, EXPAND_INITIALIZER),
4350 size, 1);
4351 else if (TREE_CODE (exp) == CONSTRUCTOR)
4353 unsigned char *buffer = (unsigned char *) alloca (size);
4354 if (get_set_constructor_bytes (exp, buffer, size))
4355 abort ();
4356 assemble_string ((char *) buffer, size);
4358 else
4359 error ("unknown set constructor type");
4360 return;
4362 default:
4363 break; /* ??? */
4366 if (size > 0)
4367 assemble_zeros (size);
4371 /* Subroutine of output_constructor, used for computing the size of
4372 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4373 type with an unspecified upper bound. */
4375 static unsigned HOST_WIDE_INT
4376 array_size_for_constructor (val)
4377 tree val;
4379 tree max_index, i;
4381 max_index = NULL_TREE;
4382 for (i = CONSTRUCTOR_ELTS (val); i ; i = TREE_CHAIN (i))
4384 tree index = TREE_PURPOSE (i);
4386 if (TREE_CODE (index) == RANGE_EXPR)
4387 index = TREE_OPERAND (index, 1);
4388 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4389 max_index = index;
4392 if (max_index == NULL_TREE)
4393 return 0;
4395 /* Compute the total number of array elements. */
4396 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
4397 convert (sizetype,
4398 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
4399 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
4401 /* Multiply by the array element unit size to find number of bytes. */
4402 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4404 return tree_low_cst (i, 1);
4407 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4408 Generate at least SIZE bytes, padding if necessary. */
4410 static void
4411 output_constructor (exp, size)
4412 tree exp;
4413 int size;
4415 tree type = TREE_TYPE (exp);
4416 register tree link, field = 0;
4417 tree min_index = 0;
4418 /* Number of bytes output or skipped so far.
4419 In other words, current position within the constructor. */
4420 HOST_WIDE_INT total_bytes = 0;
4421 /* Non-zero means BYTE contains part of a byte, to be output. */
4422 int byte_buffer_in_use = 0;
4423 register int byte = 0;
4425 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
4426 abort ();
4428 if (TREE_CODE (type) == RECORD_TYPE)
4429 field = TYPE_FIELDS (type);
4431 if (TREE_CODE (type) == ARRAY_TYPE
4432 && TYPE_DOMAIN (type) != 0)
4433 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4435 /* As LINK goes through the elements of the constant,
4436 FIELD goes through the structure fields, if the constant is a structure.
4437 if the constant is a union, then we override this,
4438 by getting the field from the TREE_LIST element.
4439 But the constant could also be an array. Then FIELD is zero.
4441 There is always a maximum of one element in the chain LINK for unions
4442 (even if the initializer in a source program incorrectly contains
4443 more one). */
4444 for (link = CONSTRUCTOR_ELTS (exp);
4445 link;
4446 link = TREE_CHAIN (link),
4447 field = field ? TREE_CHAIN (field) : 0)
4449 tree val = TREE_VALUE (link);
4450 tree index = 0;
4452 /* The element in a union constructor specifies the proper field
4453 or index. */
4454 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4455 || TREE_CODE (type) == QUAL_UNION_TYPE)
4456 && TREE_PURPOSE (link) != 0)
4457 field = TREE_PURPOSE (link);
4459 else if (TREE_CODE (type) == ARRAY_TYPE)
4460 index = TREE_PURPOSE (link);
4462 /* Eliminate the marker that makes a cast not be an lvalue. */
4463 if (val != 0)
4464 STRIP_NOPS (val);
4466 if (index && TREE_CODE (index) == RANGE_EXPR)
4468 unsigned HOST_WIDE_INT fieldsize
4469 = int_size_in_bytes (TREE_TYPE (type));
4470 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4471 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4472 HOST_WIDE_INT index;
4474 for (index = lo_index; index <= hi_index; index++)
4476 /* Output the element's initial value. */
4477 if (val == 0)
4478 assemble_zeros (fieldsize);
4479 else
4480 output_constant (val, fieldsize);
4482 /* Count its size. */
4483 total_bytes += fieldsize;
4486 else if (field == 0 || !DECL_BIT_FIELD (field))
4488 /* An element that is not a bit-field. */
4490 unsigned HOST_WIDE_INT fieldsize;
4491 /* Since this structure is static,
4492 we know the positions are constant. */
4493 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4495 if (index != 0)
4496 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4497 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4499 /* Output any buffered-up bit-fields preceding this element. */
4500 if (byte_buffer_in_use)
4502 ASM_OUTPUT_BYTE (asm_out_file, byte);
4503 total_bytes++;
4504 byte_buffer_in_use = 0;
4507 /* Advance to offset of this element.
4508 Note no alignment needed in an array, since that is guaranteed
4509 if each element has the proper size. */
4510 if ((field != 0 || index != 0) && pos != total_bytes)
4512 assemble_zeros (pos - total_bytes);
4513 total_bytes = pos;
4516 else if (field != 0 && DECL_PACKED (field))
4517 /* Some assemblers automaticallly align a datum according to its
4518 size if no align directive is specified. The datum, however,
4519 may be declared with 'packed' attribute, so we have to disable
4520 such a feature. */
4521 ASM_OUTPUT_ALIGN (asm_out_file, 0);
4523 /* Determine size this element should occupy. */
4524 if (field)
4526 fieldsize = 0;
4528 /* If this is an array with an unspecified upper bound,
4529 the initializer determines the size. */
4530 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4531 but we cannot do this until the deprecated support for
4532 initializing zero-length array members is removed. */
4533 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4534 && TYPE_DOMAIN (TREE_TYPE (field))
4535 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4537 fieldsize = array_size_for_constructor (val);
4538 /* Given a non-empty initialization, this field had
4539 better be last. */
4540 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4541 abort ();
4543 else if (DECL_SIZE_UNIT (field))
4545 /* ??? This can't be right. If the decl size overflows
4546 a host integer we will silently emit no data. */
4547 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4548 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4551 else
4552 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4554 /* Output the element's initial value. */
4555 if (val == 0)
4556 assemble_zeros (fieldsize);
4557 else
4558 output_constant (val, fieldsize);
4560 /* Count its size. */
4561 total_bytes += fieldsize;
4563 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4564 error ("invalid initial value for member `%s'",
4565 IDENTIFIER_POINTER (DECL_NAME (field)));
4566 else
4568 /* Element that is a bit-field. */
4570 HOST_WIDE_INT next_offset = int_bit_position (field);
4571 HOST_WIDE_INT end_offset
4572 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4574 if (val == 0)
4575 val = integer_zero_node;
4577 /* If this field does not start in this (or, next) byte,
4578 skip some bytes. */
4579 if (next_offset / BITS_PER_UNIT != total_bytes)
4581 /* Output remnant of any bit field in previous bytes. */
4582 if (byte_buffer_in_use)
4584 ASM_OUTPUT_BYTE (asm_out_file, byte);
4585 total_bytes++;
4586 byte_buffer_in_use = 0;
4589 /* If still not at proper byte, advance to there. */
4590 if (next_offset / BITS_PER_UNIT != total_bytes)
4592 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4593 total_bytes = next_offset / BITS_PER_UNIT;
4597 if (! byte_buffer_in_use)
4598 byte = 0;
4600 /* We must split the element into pieces that fall within
4601 separate bytes, and combine each byte with previous or
4602 following bit-fields. */
4604 /* next_offset is the offset n fbits from the beginning of
4605 the structure to the next bit of this element to be processed.
4606 end_offset is the offset of the first bit past the end of
4607 this element. */
4608 while (next_offset < end_offset)
4610 int this_time;
4611 int shift;
4612 HOST_WIDE_INT value;
4613 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4614 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4616 /* Advance from byte to byte
4617 within this element when necessary. */
4618 while (next_byte != total_bytes)
4620 ASM_OUTPUT_BYTE (asm_out_file, byte);
4621 total_bytes++;
4622 byte = 0;
4625 /* Number of bits we can process at once
4626 (all part of the same byte). */
4627 this_time = MIN (end_offset - next_offset,
4628 BITS_PER_UNIT - next_bit);
4629 if (BYTES_BIG_ENDIAN)
4631 /* On big-endian machine, take the most significant bits
4632 first (of the bits that are significant)
4633 and put them into bytes from the most significant end. */
4634 shift = end_offset - next_offset - this_time;
4636 /* Don't try to take a bunch of bits that cross
4637 the word boundary in the INTEGER_CST. We can
4638 only select bits from the LOW or HIGH part
4639 not from both. */
4640 if (shift < HOST_BITS_PER_WIDE_INT
4641 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4643 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4644 shift = HOST_BITS_PER_WIDE_INT;
4647 /* Now get the bits from the appropriate constant word. */
4648 if (shift < HOST_BITS_PER_WIDE_INT)
4649 value = TREE_INT_CST_LOW (val);
4650 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4652 value = TREE_INT_CST_HIGH (val);
4653 shift -= HOST_BITS_PER_WIDE_INT;
4655 else
4656 abort ();
4658 /* Get the result. This works only when:
4659 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4660 byte |= (((value >> shift)
4661 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4662 << (BITS_PER_UNIT - this_time - next_bit));
4664 else
4666 /* On little-endian machines,
4667 take first the least significant bits of the value
4668 and pack them starting at the least significant
4669 bits of the bytes. */
4670 shift = next_offset - int_bit_position (field);
4672 /* Don't try to take a bunch of bits that cross
4673 the word boundary in the INTEGER_CST. We can
4674 only select bits from the LOW or HIGH part
4675 not from both. */
4676 if (shift < HOST_BITS_PER_WIDE_INT
4677 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4678 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4680 /* Now get the bits from the appropriate constant word. */
4681 if (shift < HOST_BITS_PER_WIDE_INT)
4682 value = TREE_INT_CST_LOW (val);
4683 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4685 value = TREE_INT_CST_HIGH (val);
4686 shift -= HOST_BITS_PER_WIDE_INT;
4688 else
4689 abort ();
4691 /* Get the result. This works only when:
4692 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4693 byte |= (((value >> shift)
4694 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4695 << next_bit);
4698 next_offset += this_time;
4699 byte_buffer_in_use = 1;
4704 if (byte_buffer_in_use)
4706 ASM_OUTPUT_BYTE (asm_out_file, byte);
4707 total_bytes++;
4710 if (total_bytes < size)
4711 assemble_zeros (size - total_bytes);
4714 #ifdef HANDLE_PRAGMA_WEAK
4715 /* Add function NAME to the weak symbols list. VALUE is a weak alias
4716 associatd with NAME. */
4719 add_weak (name, value)
4720 const char *name;
4721 const char *value;
4723 struct weak_syms *weak;
4725 weak = (struct weak_syms *) permalloc (sizeof (struct weak_syms));
4727 if (weak == NULL)
4728 return 0;
4730 weak->next = weak_decls;
4731 weak->name = name;
4732 weak->value = value;
4733 weak_decls = weak;
4735 return 1;
4737 #endif /* HANDLE_PRAGMA_WEAK */
4739 /* Declare DECL to be a weak symbol. */
4741 void
4742 declare_weak (decl)
4743 tree decl;
4745 if (! TREE_PUBLIC (decl))
4746 error_with_decl (decl, "weak declaration of `%s' must be public");
4747 else if (TREE_ASM_WRITTEN (decl))
4748 error_with_decl (decl, "weak declaration of `%s' must precede definition");
4749 else if (SUPPORTS_WEAK)
4750 DECL_WEAK (decl) = 1;
4751 #ifdef HANDLE_PRAGMA_WEAK
4752 add_weak (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), NULL);
4753 #endif
4756 /* Emit any pending weak declarations. */
4758 #ifdef HANDLE_PRAGMA_WEAK
4759 struct weak_syms * weak_decls;
4760 #endif
4762 void
4763 weak_finish ()
4765 #ifdef HANDLE_PRAGMA_WEAK
4766 if (HANDLE_PRAGMA_WEAK)
4768 struct weak_syms *t;
4769 for (t = weak_decls; t; t = t->next)
4771 if (t->name)
4773 ASM_WEAKEN_LABEL (asm_out_file, t->name);
4774 if (t->value)
4775 ASM_OUTPUT_DEF (asm_out_file, t->name, t->value);
4779 #endif
4782 /* Remove NAME from the pending list of weak symbols. This prevents
4783 the compiler from emitting multiple .weak directives which confuses
4784 some assemblers. */
4785 #ifdef ASM_WEAKEN_LABEL
4786 static void
4787 remove_from_pending_weak_list (name)
4788 const char *name ATTRIBUTE_UNUSED;
4790 #ifdef HANDLE_PRAGMA_WEAK
4791 if (HANDLE_PRAGMA_WEAK)
4793 struct weak_syms *t;
4794 for (t = weak_decls; t; t = t->next)
4796 if (t->name && strcmp (name, t->name) == 0)
4797 t->name = NULL;
4800 #endif
4802 #endif
4804 void
4805 assemble_alias (decl, target)
4806 tree decl, target ATTRIBUTE_UNUSED;
4808 const char *name;
4810 /* We must force creation of DECL_RTL for debug info generation, even though
4811 we don't use it here. */
4812 make_decl_rtl (decl, NULL_PTR);
4814 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4816 #ifdef ASM_OUTPUT_DEF
4817 /* Make name accessible from other files, if appropriate. */
4819 if (TREE_PUBLIC (decl))
4821 #ifdef ASM_WEAKEN_LABEL
4822 if (DECL_WEAK (decl))
4824 ASM_WEAKEN_LABEL (asm_out_file, name);
4825 /* Remove this function from the pending weak list so that
4826 we do not emit multiple .weak directives for it. */
4827 remove_from_pending_weak_list
4828 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4830 else
4831 #endif
4832 ASM_GLOBALIZE_LABEL (asm_out_file, name);
4835 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4836 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4837 #else
4838 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4839 #endif
4840 TREE_ASM_WRITTEN (decl) = 1;
4841 #else
4842 #ifdef ASM_OUTPUT_WEAK_ALIAS
4843 if (! DECL_WEAK (decl))
4844 warning ("only weak aliases are supported in this configuration");
4846 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4847 TREE_ASM_WRITTEN (decl) = 1;
4848 #else
4849 warning ("alias definitions not supported in this configuration; ignored");
4850 #endif
4851 #endif
4854 /* Returns 1 if the target configuration supports defining public symbols
4855 so that one of them will be chosen at link time instead of generating a
4856 multiply-defined symbol error, whether through the use of weak symbols or
4857 a target-specific mechanism for having duplicates discarded. */
4860 supports_one_only ()
4862 if (SUPPORTS_ONE_ONLY)
4863 return 1;
4864 return SUPPORTS_WEAK;
4867 /* Set up DECL as a public symbol that can be defined in multiple
4868 translation units without generating a linker error. */
4870 void
4871 make_decl_one_only (decl)
4872 tree decl;
4874 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4875 abort ();
4877 TREE_PUBLIC (decl) = 1;
4879 if (TREE_CODE (decl) == VAR_DECL
4880 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4881 DECL_COMMON (decl) = 1;
4882 else if (SUPPORTS_ONE_ONLY)
4884 #ifdef MAKE_DECL_ONE_ONLY
4885 MAKE_DECL_ONE_ONLY (decl);
4886 #endif
4887 DECL_ONE_ONLY (decl) = 1;
4889 else if (SUPPORTS_WEAK)
4890 DECL_WEAK (decl) = 1;
4891 else
4892 abort ();
4895 void
4896 init_varasm_once ()
4898 const_str_htab = htab_create (128, const_str_htab_hash, const_str_htab_eq,
4899 const_str_htab_del);
4900 ggc_add_root (const_hash_table, MAX_HASH_TABLE, sizeof const_hash_table[0],
4901 mark_const_hash_entry);
4902 ggc_add_root (&const_str_htab, 1, sizeof const_str_htab,
4903 mark_const_str_htab);
4906 /* Extra support for EH values. */
4907 void
4908 assemble_eh_label (name)
4909 const char *name;
4911 #ifdef ASM_OUTPUT_EH_LABEL
4912 ASM_OUTPUT_EH_LABEL (asm_out_file, name);
4913 #else
4914 assemble_label (name);
4915 #endif
4918 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
4920 void
4921 assemble_eh_align (align)
4922 int align;
4924 #ifdef ASM_OUTPUT_EH_ALIGN
4925 if (align > BITS_PER_UNIT)
4926 ASM_OUTPUT_EH_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
4927 #else
4928 assemble_align (align);
4929 #endif
4933 /* On some platforms, we may want to specify a special mechansim to
4934 output EH data when generating with a function.. */
4936 assemble_eh_integer (x, size, force)
4937 rtx x;
4938 int size;
4939 int force;
4942 switch (size)
4944 #ifdef ASM_OUTPUT_EH_CHAR
4945 case 1:
4946 ASM_OUTPUT_EH_CHAR (asm_out_file, x);
4947 return 1;
4948 #endif
4950 #ifdef ASM_OUTPUT_EH_SHORT
4951 case 2:
4952 ASM_OUTPUT_EH_SHORT (asm_out_file, x);
4953 return 1;
4954 #endif
4956 #ifdef ASM_OUTPUT_EH_INT
4957 case 4:
4958 ASM_OUTPUT_EH_INT (asm_out_file, x);
4959 return 1;
4960 #endif
4962 #ifdef ASM_OUTPUT_EH_DOUBLE_INT
4963 case 8:
4964 ASM_OUTPUT_EH_DOUBLE_INT (asm_out_file, x);
4965 return 1;
4966 #endif
4968 default:
4969 break;
4971 return (assemble_integer (x, size, force));