2000-05-02 Jeff Sturm <jsturm@one-point.com>
[official-gcc.git] / gcc / varasm.c
blob9b2744a3fa5a28619e5e35154a88f6219e5c5c96
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 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = DECL_WEAK (decl);
751 if (TREE_CODE (decl) != FUNCTION_DECL)
752 set_mem_attributes (DECL_RTL (decl), decl, 1);
754 /* Optionally set flags or add text to the name to record information
755 such as that it is a function name.
756 If the name is changed, the macro ASM_OUTPUT_LABELREF
757 will have to know how to strip this information. */
758 #ifdef ENCODE_SECTION_INFO
759 ENCODE_SECTION_INFO (decl);
760 #endif
763 /* Make the rtl for variable VAR be volatile.
764 Use this only for static variables. */
766 void
767 make_var_volatile (var)
768 tree var;
770 if (GET_CODE (DECL_RTL (var)) != MEM)
771 abort ();
773 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
776 /* Output alignment directive to align for constant expression EXP. */
778 void
779 assemble_constant_align (exp)
780 tree exp;
782 int align;
784 /* Align the location counter as required by EXP's data type. */
785 align = TYPE_ALIGN (TREE_TYPE (exp));
786 #ifdef CONSTANT_ALIGNMENT
787 align = CONSTANT_ALIGNMENT (exp, align);
788 #endif
790 if (align > BITS_PER_UNIT)
791 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
794 /* Output a string of literal assembler code
795 for an `asm' keyword used between functions. */
797 void
798 assemble_asm (string)
799 tree string;
801 app_enable ();
803 if (TREE_CODE (string) == ADDR_EXPR)
804 string = TREE_OPERAND (string, 0);
806 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
809 #if 0 /* This should no longer be needed, because
810 flag_gnu_linker should be 0 on these systems,
811 which should prevent any output
812 if ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are absent. */
813 #if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER))
814 #ifndef ASM_OUTPUT_CONSTRUCTOR
815 #define ASM_OUTPUT_CONSTRUCTOR(file, name)
816 #endif
817 #ifndef ASM_OUTPUT_DESTRUCTOR
818 #define ASM_OUTPUT_DESTRUCTOR(file, name)
819 #endif
820 #endif
821 #endif /* 0 */
823 /* Record an element in the table of global destructors.
824 How this is done depends on what sort of assembler and linker
825 are in use.
827 NAME should be the name of a global function to be called
828 at exit time. This name is output using assemble_name. */
830 void
831 assemble_destructor (name)
832 const char *name;
834 #ifdef ASM_OUTPUT_DESTRUCTOR
835 ASM_OUTPUT_DESTRUCTOR (asm_out_file, name);
836 #else
837 if (flag_gnu_linker)
839 /* Now tell GNU LD that this is part of the static destructor set. */
840 /* This code works for any machine provided you use GNU as/ld. */
841 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
842 assemble_name (asm_out_file, name);
843 fputc ('\n', asm_out_file);
845 #endif
848 /* Likewise for global constructors. */
850 void
851 assemble_constructor (name)
852 const char *name;
854 #ifdef ASM_OUTPUT_CONSTRUCTOR
855 ASM_OUTPUT_CONSTRUCTOR (asm_out_file, name);
856 #else
857 if (flag_gnu_linker)
859 /* Now tell GNU LD that this is part of the static constructor set. */
860 /* This code works for any machine provided you use GNU as/ld. */
861 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
862 assemble_name (asm_out_file, name);
863 fputc ('\n', asm_out_file);
865 #endif
868 /* Likewise for entries we want to record for garbage collection.
869 Garbage collection is still under development. */
871 void
872 assemble_gc_entry (name)
873 const char *name;
875 #ifdef ASM_OUTPUT_GC_ENTRY
876 ASM_OUTPUT_GC_ENTRY (asm_out_file, name);
877 #else
878 if (flag_gnu_linker)
880 /* Now tell GNU LD that this is part of the static constructor set. */
881 fprintf (asm_out_file, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP);
882 assemble_name (asm_out_file, name);
883 fputc ('\n', asm_out_file);
885 #endif
888 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
889 a non-zero value if the constant pool should be output before the
890 start of the function, or a zero value if the pool should output
891 after the end of the function. The default is to put it before the
892 start. */
894 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
895 #define CONSTANT_POOL_BEFORE_FUNCTION 1
896 #endif
898 /* Output assembler code for the constant pool of a function and associated
899 with defining the name of the function. DECL describes the function.
900 NAME is the function's name. For the constant pool, we use the current
901 constant pool data. */
903 void
904 assemble_start_function (decl, fnname)
905 tree decl;
906 const char *fnname;
908 int align;
910 /* The following code does not need preprocessing in the assembler. */
912 app_disable ();
914 if (CONSTANT_POOL_BEFORE_FUNCTION)
915 output_constant_pool (fnname, decl);
917 #ifdef ASM_OUTPUT_SECTION_NAME
918 /* If the function is to be put in its own section and it's not in a section
919 already, indicate so. */
920 if ((flag_function_sections
921 && DECL_SECTION_NAME (decl) == NULL_TREE)
922 || UNIQUE_SECTION_P (decl))
923 UNIQUE_SECTION (decl, 0);
924 #endif
926 function_section (decl);
928 /* Tell assembler to move to target machine's alignment for functions. */
929 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
930 if (align > 0)
931 ASM_OUTPUT_ALIGN (asm_out_file, align);
933 /* Handle a user-specified function alignment.
934 Note that we still need to align to FUNCTION_BOUNDARY, as above,
935 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
936 if (align_functions_log > align)
938 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
939 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
940 align_functions_log, align_functions-1);
941 #else
942 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
943 #endif
946 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
947 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
948 #endif
950 #ifdef SDB_DEBUGGING_INFO
951 /* Output SDB definition of the function. */
952 if (write_symbols == SDB_DEBUG)
953 sdbout_mark_begin_function ();
954 #endif
956 #ifdef DBX_DEBUGGING_INFO
957 /* Output DBX definition of the function. */
958 if (write_symbols == DBX_DEBUG)
959 dbxout_begin_function (decl);
960 #endif
962 /* Make function name accessible from other files, if appropriate. */
964 if (TREE_PUBLIC (decl))
966 if (! first_global_object_name)
968 const char *p;
969 char *name;
971 STRIP_NAME_ENCODING (p, fnname);
972 name = permalloc (strlen (p) + 1);
973 strcpy (name, p);
975 if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
976 first_global_object_name = name;
977 else
978 weak_global_object_name = name;
981 #ifdef ASM_WEAKEN_LABEL
982 if (DECL_WEAK (decl))
984 ASM_WEAKEN_LABEL (asm_out_file, fnname);
985 /* Remove this function from the pending weak list so that
986 we do not emit multiple .weak directives for it. */
987 remove_from_pending_weak_list
988 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
990 else
991 #endif
992 ASM_GLOBALIZE_LABEL (asm_out_file, fnname);
995 /* Do any machine/system dependent processing of the function name */
996 #ifdef ASM_DECLARE_FUNCTION_NAME
997 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
998 #else
999 /* Standard thing is just output label for the function. */
1000 ASM_OUTPUT_LABEL (asm_out_file, fnname);
1001 #endif /* ASM_DECLARE_FUNCTION_NAME */
1004 /* Output assembler code associated with defining the size of the
1005 function. DECL describes the function. NAME is the function's name. */
1007 void
1008 assemble_end_function (decl, fnname)
1009 tree decl;
1010 const char *fnname;
1012 #ifdef ASM_DECLARE_FUNCTION_SIZE
1013 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
1014 #endif
1015 if (! CONSTANT_POOL_BEFORE_FUNCTION)
1017 output_constant_pool (fnname, decl);
1018 function_section (decl); /* need to switch back */
1021 /* Output any constants which should appear after the function. */
1022 output_after_function_constants ();
1025 /* Assemble code to leave SIZE bytes of zeros. */
1027 void
1028 assemble_zeros (size)
1029 int size;
1031 /* Do no output if -fsyntax-only. */
1032 if (flag_syntax_only)
1033 return;
1035 #ifdef ASM_NO_SKIP_IN_TEXT
1036 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1037 so we must output 0s explicitly in the text section. */
1038 if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1040 int i;
1042 for (i = 0; i < size - 20; i += 20)
1044 #ifdef ASM_BYTE_OP
1045 fprintf (asm_out_file,
1046 "%s0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP);
1047 #else
1048 fprintf (asm_out_file,
1049 "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n");
1050 #endif
1052 if (i < size)
1054 #ifdef ASM_BYTE_OP
1055 fprintf (asm_out_file, "%s0", ASM_BYTE_OP);
1056 #else
1057 fprintf (asm_out_file, "\tbyte 0");
1058 #endif
1059 i++;
1060 for (; i < size; i++)
1061 fprintf (asm_out_file, ",0");
1062 fprintf (asm_out_file, "\n");
1065 else
1066 #endif
1067 if (size > 0)
1068 ASM_OUTPUT_SKIP (asm_out_file, size);
1071 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1073 void
1074 assemble_align (align)
1075 int align;
1077 if (align > BITS_PER_UNIT)
1078 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1081 /* Assemble a string constant with the specified C string as contents. */
1083 void
1084 assemble_string (p, size)
1085 const char *p;
1086 int size;
1088 int pos = 0;
1089 int maximum = 2000;
1091 /* If the string is very long, split it up. */
1093 while (pos < size)
1095 int thissize = size - pos;
1096 if (thissize > maximum)
1097 thissize = maximum;
1099 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1101 pos += thissize;
1102 p += thissize;
1107 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1108 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1109 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1110 #else
1111 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1112 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1113 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1114 #else
1115 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1116 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1117 #endif
1118 #endif
1120 #if defined ASM_OUTPUT_ALIGNED_BSS
1121 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1122 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1123 #else
1124 #if defined ASM_OUTPUT_BSS
1125 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1126 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1127 #else
1128 #undef ASM_EMIT_BSS
1129 #endif
1130 #endif
1132 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1133 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1134 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1135 #else
1136 #if defined ASM_OUTPUT_ALIGNED_COMMON
1137 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1138 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1139 #else
1140 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1141 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1142 #endif
1143 #endif
1145 static void
1146 asm_emit_uninitialised (decl, name, size, rounded)
1147 tree decl;
1148 const char * name;
1149 int size ATTRIBUTE_UNUSED;
1150 int rounded ATTRIBUTE_UNUSED;
1152 enum
1154 asm_dest_common,
1155 asm_dest_bss,
1156 asm_dest_local
1158 destination = asm_dest_local;
1160 if (TREE_PUBLIC (decl))
1162 #if defined ASM_EMIT_BSS
1163 if (! DECL_COMMON (decl))
1164 destination = asm_dest_bss;
1165 else
1166 #endif
1167 destination = asm_dest_common;
1170 if (flag_shared_data)
1172 switch (destination)
1174 #ifdef ASM_OUTPUT_SHARED_BSS
1175 case asm_dest_bss:
1176 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1177 return;
1178 #endif
1179 #ifdef ASM_OUTPUT_SHARED_COMMON
1180 case asm_dest_common:
1181 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1182 return;
1183 #endif
1184 #ifdef ASM_OUTPUT_SHARED_LOCAL
1185 case asm_dest_local:
1186 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1187 return;
1188 #endif
1189 default:
1190 break;
1194 #ifdef ASM_OUTPUT_SECTION_NAME
1195 /* We already know that DECL_SECTION_NAME() == NULL. */
1196 if (flag_data_sections != 0 || UNIQUE_SECTION_P (decl))
1197 UNIQUE_SECTION (decl, 0);
1198 #endif
1200 switch (destination)
1202 #ifdef ASM_EMIT_BSS
1203 case asm_dest_bss:
1204 ASM_EMIT_BSS (decl, name, size, rounded);
1205 break;
1206 #endif
1207 case asm_dest_common:
1208 ASM_EMIT_COMMON (decl, name, size, rounded);
1209 break;
1210 case asm_dest_local:
1211 ASM_EMIT_LOCAL (decl, name, size, rounded);
1212 break;
1213 default:
1214 abort ();
1217 return;
1220 /* Assemble everything that is needed for a variable or function declaration.
1221 Not used for automatic variables, and not used for function definitions.
1222 Should not be called for variables of incomplete structure type.
1224 TOP_LEVEL is nonzero if this variable has file scope.
1225 AT_END is nonzero if this is the special handling, at end of compilation,
1226 to define things that have had only tentative definitions.
1227 DONT_OUTPUT_DATA if nonzero means don't actually output the
1228 initial value (that will be done by the caller). */
1230 void
1231 assemble_variable (decl, top_level, at_end, dont_output_data)
1232 tree decl;
1233 int top_level ATTRIBUTE_UNUSED;
1234 int at_end ATTRIBUTE_UNUSED;
1235 int dont_output_data;
1237 register const char *name;
1238 unsigned int align;
1239 int reloc = 0;
1240 enum in_section saved_in_section;
1242 last_assemble_variable_decl = 0;
1244 if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1246 /* Do output symbol info for global register variables, but do nothing
1247 else for them. */
1249 if (TREE_ASM_WRITTEN (decl))
1250 return;
1251 TREE_ASM_WRITTEN (decl) = 1;
1253 /* Do no output if -fsyntax-only. */
1254 if (flag_syntax_only)
1255 return;
1257 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1258 /* File-scope global variables are output here. */
1259 if ((write_symbols == DBX_DEBUG || write_symbols == XCOFF_DEBUG)
1260 && top_level)
1261 dbxout_symbol (decl, 0);
1262 #endif
1263 #ifdef SDB_DEBUGGING_INFO
1264 if (write_symbols == SDB_DEBUG && top_level
1265 /* Leave initialized global vars for end of compilation;
1266 see comment in compile_file. */
1267 && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0))
1268 sdbout_symbol (decl, 0);
1269 #endif
1271 /* Don't output any DWARF debugging information for variables here.
1272 In the case of local variables, the information for them is output
1273 when we do our recursive traversal of the tree representation for
1274 the entire containing function. In the case of file-scope variables,
1275 we output information for all of them at the very end of compilation
1276 while we are doing our final traversal of the chain of file-scope
1277 declarations. */
1279 return;
1282 /* Normally no need to say anything here for external references,
1283 since assemble_external is called by the language-specific code
1284 when a declaration is first seen. */
1286 if (DECL_EXTERNAL (decl))
1287 return;
1289 /* Output no assembler code for a function declaration.
1290 Only definitions of functions output anything. */
1292 if (TREE_CODE (decl) == FUNCTION_DECL)
1293 return;
1295 /* If type was incomplete when the variable was declared,
1296 see if it is complete now. */
1298 if (DECL_SIZE (decl) == 0)
1299 layout_decl (decl, 0);
1301 /* Still incomplete => don't allocate it; treat the tentative defn
1302 (which is what it must have been) as an `extern' reference. */
1304 if (!dont_output_data && DECL_SIZE (decl) == 0)
1306 error_with_file_and_line (DECL_SOURCE_FILE (decl),
1307 DECL_SOURCE_LINE (decl),
1308 "storage size of `%s' isn't known",
1309 IDENTIFIER_POINTER (DECL_NAME (decl)));
1310 TREE_ASM_WRITTEN (decl) = 1;
1311 return;
1314 /* The first declaration of a variable that comes through this function
1315 decides whether it is global (in C, has external linkage)
1316 or local (in C, has internal linkage). So do nothing more
1317 if this function has already run. */
1319 if (TREE_ASM_WRITTEN (decl))
1320 return;
1322 TREE_ASM_WRITTEN (decl) = 1;
1324 /* Do no output if -fsyntax-only. */
1325 if (flag_syntax_only)
1326 return;
1328 app_disable ();
1330 if (! dont_output_data
1331 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1333 error_with_decl (decl, "size of variable `%s' is too large");
1334 goto finish;
1337 name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
1338 if (TREE_PUBLIC (decl) && DECL_NAME (decl)
1339 && ! first_global_object_name
1340 && ! (DECL_COMMON (decl) && (DECL_INITIAL (decl) == 0
1341 || DECL_INITIAL (decl) == error_mark_node))
1342 && ! DECL_WEAK (decl)
1343 && ! DECL_ONE_ONLY (decl))
1345 const char *p;
1346 char *xname;
1348 STRIP_NAME_ENCODING (p, name);
1349 xname = permalloc (strlen (p) + 1);
1350 strcpy (xname, p);
1351 first_global_object_name = xname;
1354 /* Compute the alignment of this data. */
1356 align = DECL_ALIGN (decl);
1358 /* In the case for initialing an array whose length isn't specified,
1359 where we have not yet been able to do the layout,
1360 figure out the proper alignment now. */
1361 if (dont_output_data && DECL_SIZE (decl) == 0
1362 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1363 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1365 /* Some object file formats have a maximum alignment which they support.
1366 In particular, a.out format supports a maximum alignment of 4. */
1367 #ifndef MAX_OFILE_ALIGNMENT
1368 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1369 #endif
1370 if (align > MAX_OFILE_ALIGNMENT)
1372 warning_with_decl (decl,
1373 "alignment of `%s' is greater than maximum object file alignment. Using %d.",
1374 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1375 align = MAX_OFILE_ALIGNMENT;
1378 /* On some machines, it is good to increase alignment sometimes. */
1379 #ifdef DATA_ALIGNMENT
1380 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1381 #endif
1382 #ifdef CONSTANT_ALIGNMENT
1383 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1384 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1385 #endif
1387 /* Reset the alignment in case we have made it tighter, so we can benefit
1388 from it in get_pointer_alignment. */
1389 DECL_ALIGN (decl) = align;
1391 /* Handle uninitialized definitions. */
1393 if ((DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node)
1394 /* If the target can't output uninitialized but not common global data
1395 in .bss, then we have to use .data. */
1396 #if ! defined ASM_EMIT_BSS
1397 && DECL_COMMON (decl)
1398 #endif
1399 && DECL_SECTION_NAME (decl) == NULL_TREE
1400 && ! dont_output_data)
1402 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1403 unsigned HOST_WIDE_INT rounded = size;
1405 /* Don't allocate zero bytes of common,
1406 since that means "undefined external" in the linker. */
1407 if (size == 0)
1408 rounded = 1;
1410 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1411 so that each uninitialized object starts on such a boundary. */
1412 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1413 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1414 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1416 /* Don't continue this line--convex cc version 4.1 would lose. */
1417 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1418 if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1419 warning_with_decl
1420 (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded);
1421 #endif
1423 #ifdef DBX_DEBUGGING_INFO
1424 /* File-scope global variables are output here. */
1425 if (write_symbols == DBX_DEBUG && top_level)
1426 dbxout_symbol (decl, 0);
1427 #endif
1428 #ifdef SDB_DEBUGGING_INFO
1429 if (write_symbols == SDB_DEBUG && top_level
1430 /* Leave initialized global vars for end of compilation;
1431 see comment in compile_file. */
1432 && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0))
1433 sdbout_symbol (decl, 0);
1434 #endif
1436 /* Don't output any DWARF debugging information for variables here.
1437 In the case of local variables, the information for them is output
1438 when we do our recursive traversal of the tree representation for
1439 the entire containing function. In the case of file-scope variables,
1440 we output information for all of them at the very end of compilation
1441 while we are doing our final traversal of the chain of file-scope
1442 declarations. */
1444 #if 0 /* ??? We should either delete this or add a comment describing what
1445 it was intended to do and why we shouldn't delete it. */
1446 if (flag_shared_data)
1447 data_section ();
1448 #endif
1449 asm_emit_uninitialised (decl, name, size, rounded);
1451 goto finish;
1454 /* Handle initialized definitions.
1455 Also handle uninitialized global definitions if -fno-common and the
1456 target doesn't support ASM_OUTPUT_BSS. */
1458 /* First make the assembler name(s) global if appropriate. */
1459 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1461 #ifdef ASM_WEAKEN_LABEL
1462 if (DECL_WEAK (decl))
1464 ASM_WEAKEN_LABEL (asm_out_file, name);
1465 /* Remove this variable from the pending weak list so that
1466 we do not emit multiple .weak directives for it. */
1467 remove_from_pending_weak_list
1468 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
1470 else
1471 #endif
1472 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1474 #if 0
1475 for (d = equivalents; d; d = TREE_CHAIN (d))
1477 tree e = TREE_VALUE (d);
1478 if (TREE_PUBLIC (e) && DECL_NAME (e))
1479 ASM_GLOBALIZE_LABEL (asm_out_file,
1480 XSTR (XEXP (DECL_RTL (e), 0), 0));
1482 #endif
1484 /* Output any data that we will need to use the address of. */
1485 if (DECL_INITIAL (decl) == error_mark_node)
1486 reloc = contains_pointers_p (TREE_TYPE (decl));
1487 else if (DECL_INITIAL (decl))
1488 reloc = output_addressed_constants (DECL_INITIAL (decl));
1490 #ifdef ASM_OUTPUT_SECTION_NAME
1491 if ((flag_data_sections != 0 && DECL_SECTION_NAME (decl) == NULL_TREE)
1492 || UNIQUE_SECTION_P (decl))
1493 UNIQUE_SECTION (decl, reloc);
1494 #endif
1496 /* Switch to the appropriate section. */
1497 variable_section (decl, reloc);
1499 /* dbxout.c needs to know this. */
1500 if (in_text_section ())
1501 DECL_IN_TEXT_SECTION (decl) = 1;
1503 /* Record current section so we can restore it if dbxout.c clobbers it. */
1504 saved_in_section = in_section;
1506 /* Output the dbx info now that we have chosen the section. */
1508 #ifdef DBX_DEBUGGING_INFO
1509 /* File-scope global variables are output here. */
1510 if (write_symbols == DBX_DEBUG && top_level)
1511 dbxout_symbol (decl, 0);
1512 #endif
1513 #ifdef SDB_DEBUGGING_INFO
1514 if (write_symbols == SDB_DEBUG && top_level
1515 /* Leave initialized global vars for end of compilation;
1516 see comment in compile_file. */
1517 && (TREE_PUBLIC (decl) == 0 || DECL_INITIAL (decl) == 0))
1518 sdbout_symbol (decl, 0);
1519 #endif
1521 /* Don't output any DWARF debugging information for variables here.
1522 In the case of local variables, the information for them is output
1523 when we do our recursive traversal of the tree representation for
1524 the entire containing function. In the case of file-scope variables,
1525 we output information for all of them at the very end of compilation
1526 while we are doing our final traversal of the chain of file-scope
1527 declarations. */
1529 /* If the debugging output changed sections, reselect the section
1530 that's supposed to be selected. */
1531 if (in_section != saved_in_section)
1532 variable_section (decl, reloc);
1534 /* Output the alignment of this data. */
1535 if (align > BITS_PER_UNIT)
1536 ASM_OUTPUT_ALIGN (asm_out_file,
1537 floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1539 /* Do any machine/system dependent processing of the object. */
1540 #ifdef ASM_DECLARE_OBJECT_NAME
1541 last_assemble_variable_decl = decl;
1542 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1543 #else
1544 /* Standard thing is just output label for the object. */
1545 ASM_OUTPUT_LABEL (asm_out_file, name);
1546 #endif /* ASM_DECLARE_OBJECT_NAME */
1548 if (!dont_output_data)
1550 if (DECL_INITIAL (decl))
1551 /* Output the actual data. */
1552 output_constant (DECL_INITIAL (decl),
1553 tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1554 else
1555 /* Leave space for it. */
1556 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1559 finish:
1560 #ifdef XCOFF_DEBUGGING_INFO
1561 /* Unfortunately, the IBM assembler cannot handle stabx before the actual
1562 declaration. When something like ".stabx "aa:S-2",aa,133,0" is emitted
1563 and `aa' hasn't been output yet, the assembler generates a stab entry with
1564 a value of zero, in addition to creating an unnecessary external entry
1565 for `aa'. Hence, we must postpone dbxout_symbol to here at the end. */
1567 /* File-scope global variables are output here. */
1568 if (write_symbols == XCOFF_DEBUG && top_level)
1570 saved_in_section = in_section;
1572 dbxout_symbol (decl, 0);
1574 if (in_section != saved_in_section)
1575 variable_section (decl, reloc);
1577 #else
1578 /* There must be a statement after a label. */
1580 #endif
1583 /* Return 1 if type TYPE contains any pointers. */
1585 static int
1586 contains_pointers_p (type)
1587 tree type;
1589 switch (TREE_CODE (type))
1591 case POINTER_TYPE:
1592 case REFERENCE_TYPE:
1593 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1594 so I'll play safe and return 1. */
1595 case OFFSET_TYPE:
1596 return 1;
1598 case RECORD_TYPE:
1599 case UNION_TYPE:
1600 case QUAL_UNION_TYPE:
1602 tree fields;
1603 /* For a type that has fields, see if the fields have pointers. */
1604 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1605 if (TREE_CODE (fields) == FIELD_DECL
1606 && contains_pointers_p (TREE_TYPE (fields)))
1607 return 1;
1608 return 0;
1611 case ARRAY_TYPE:
1612 /* An array type contains pointers if its element type does. */
1613 return contains_pointers_p (TREE_TYPE (type));
1615 default:
1616 return 0;
1620 /* Output something to declare an external symbol to the assembler.
1621 (Most assemblers don't need this, so we normally output nothing.)
1622 Do nothing if DECL is not external. */
1624 void
1625 assemble_external (decl)
1626 tree decl ATTRIBUTE_UNUSED;
1628 #ifdef ASM_OUTPUT_EXTERNAL
1629 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1631 rtx rtl = DECL_RTL (decl);
1633 if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1634 && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1636 /* Some systems do require some output. */
1637 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1638 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1641 #endif
1644 /* Similar, for calling a library function FUN. */
1646 void
1647 assemble_external_libcall (fun)
1648 rtx fun ATTRIBUTE_UNUSED;
1650 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1651 /* Declare library function name external when first used, if nec. */
1652 if (! SYMBOL_REF_USED (fun))
1654 SYMBOL_REF_USED (fun) = 1;
1655 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
1657 #endif
1660 /* Declare the label NAME global. */
1662 void
1663 assemble_global (name)
1664 const char *name;
1666 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1669 /* Assemble a label named NAME. */
1671 void
1672 assemble_label (name)
1673 const char *name;
1675 ASM_OUTPUT_LABEL (asm_out_file, name);
1678 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1679 If NAME starts with a *, the rest of NAME is output verbatim.
1680 Otherwise NAME is transformed in an implementation-defined way
1681 (usually by the addition of an underscore).
1682 Many macros in the tm file are defined to call this function. */
1684 void
1685 assemble_name (file, name)
1686 FILE *file;
1687 const char *name;
1689 const char *real_name;
1690 tree id;
1692 STRIP_NAME_ENCODING (real_name, name);
1693 if (flag_prefix_function_name
1694 && ! memcmp (real_name, CHKR_PREFIX, CHKR_PREFIX_SIZE))
1695 real_name = real_name + CHKR_PREFIX_SIZE;
1697 id = maybe_get_identifier (real_name);
1698 if (id)
1699 TREE_SYMBOL_REFERENCED (id) = 1;
1701 if (name[0] == '*')
1702 fputs (&name[1], file);
1703 else
1704 ASM_OUTPUT_LABELREF (file, name);
1707 /* Allocate SIZE bytes writable static space with a gensym name
1708 and return an RTX to refer to its address. */
1711 assemble_static_space (size)
1712 int size;
1714 char name[12];
1715 const char *namestring;
1716 rtx x;
1718 #if 0
1719 if (flag_shared_data)
1720 data_section ();
1721 #endif
1723 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1724 ++const_labelno;
1725 namestring = ggc_strdup (name);
1727 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1729 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1730 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1731 BIGGEST_ALIGNMENT);
1732 #else
1733 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1734 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1735 #else
1737 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1738 so that each uninitialized object starts on such a boundary. */
1739 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1740 int rounded ATTRIBUTE_UNUSED
1741 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1742 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1743 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1744 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1746 #endif
1747 #endif
1748 return x;
1751 /* Assemble the static constant template for function entry trampolines.
1752 This is done at most once per compilation.
1753 Returns an RTX for the address of the template. */
1755 #ifdef TRAMPOLINE_TEMPLATE
1757 assemble_trampoline_template ()
1759 char label[256];
1760 const char *name;
1761 int align;
1763 /* By default, put trampoline templates in read-only data section. */
1765 #ifdef TRAMPOLINE_SECTION
1766 TRAMPOLINE_SECTION ();
1767 #else
1768 readonly_data_section ();
1769 #endif
1771 /* Write the assembler code to define one. */
1772 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1773 if (align > 0)
1774 ASM_OUTPUT_ALIGN (asm_out_file, align);
1776 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LTRAMP", 0);
1777 TRAMPOLINE_TEMPLATE (asm_out_file);
1779 /* Record the rtl to refer to it. */
1780 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1781 name = ggc_strdup (label);
1782 return gen_rtx_SYMBOL_REF (Pmode, name);
1784 #endif
1786 /* Assemble the integer constant X into an object of SIZE bytes.
1787 X must be either a CONST_INT or CONST_DOUBLE.
1789 Return 1 if we were able to output the constant, otherwise 0. If FORCE is
1790 non-zero, abort if we can't output the constant. */
1793 assemble_integer (x, size, force)
1794 rtx x;
1795 int size;
1796 int force;
1798 /* First try to use the standard 1, 2, 4, 8, and 16 byte
1799 ASM_OUTPUT... macros. */
1801 switch (size)
1803 #ifdef ASM_OUTPUT_CHAR
1804 case 1:
1805 ASM_OUTPUT_CHAR (asm_out_file, x);
1806 return 1;
1807 #endif
1809 #ifdef ASM_OUTPUT_SHORT
1810 case 2:
1811 ASM_OUTPUT_SHORT (asm_out_file, x);
1812 return 1;
1813 #endif
1815 #ifdef ASM_OUTPUT_INT
1816 case 4:
1817 ASM_OUTPUT_INT (asm_out_file, x);
1818 return 1;
1819 #endif
1821 #ifdef ASM_OUTPUT_DOUBLE_INT
1822 case 8:
1823 ASM_OUTPUT_DOUBLE_INT (asm_out_file, x);
1824 return 1;
1825 #endif
1827 #ifdef ASM_OUTPUT_QUADRUPLE_INT
1828 case 16:
1829 ASM_OUTPUT_QUADRUPLE_INT (asm_out_file, x);
1830 return 1;
1831 #endif
1834 /* If we couldn't do it that way, there are two other possibilities: First,
1835 if the machine can output an explicit byte and this is a 1 byte constant,
1836 we can use ASM_OUTPUT_BYTE. */
1838 #ifdef ASM_OUTPUT_BYTE
1839 if (size == 1 && GET_CODE (x) == CONST_INT)
1841 ASM_OUTPUT_BYTE (asm_out_file, INTVAL (x));
1842 return 1;
1844 #endif
1846 /* Finally, if SIZE is larger than a single word, try to output the constant
1847 one word at a time. */
1849 if (size > UNITS_PER_WORD)
1851 int i;
1852 enum machine_mode mode
1853 = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1854 rtx word;
1856 for (i = 0; i < size / UNITS_PER_WORD; i++)
1858 word = operand_subword (x, i, 0, mode);
1860 if (word == 0)
1861 break;
1863 if (! assemble_integer (word, UNITS_PER_WORD, 0))
1864 break;
1867 if (i == size / UNITS_PER_WORD)
1868 return 1;
1869 /* If we output at least one word and then could not finish,
1870 there is no valid way to continue. */
1871 if (i > 0)
1872 abort ();
1875 if (force)
1876 abort ();
1878 return 0;
1881 /* Assemble the floating-point constant D into an object of size MODE. */
1883 void
1884 assemble_real (d, mode)
1885 REAL_VALUE_TYPE d;
1886 enum machine_mode mode;
1888 jmp_buf output_constant_handler;
1890 if (setjmp (output_constant_handler))
1892 error ("floating point trap outputting a constant");
1893 #ifdef REAL_IS_NOT_DOUBLE
1894 memset ((char *) &d, 0, sizeof d);
1895 d = dconst0;
1896 #else
1897 d = 0;
1898 #endif
1901 set_float_handler (output_constant_handler);
1903 switch (mode)
1905 #ifdef ASM_OUTPUT_BYTE_FLOAT
1906 case QFmode:
1907 ASM_OUTPUT_BYTE_FLOAT (asm_out_file, d);
1908 break;
1909 #endif
1910 #ifdef ASM_OUTPUT_SHORT_FLOAT
1911 case HFmode:
1912 ASM_OUTPUT_SHORT_FLOAT (asm_out_file, d);
1913 break;
1914 #endif
1915 #ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
1916 case TQFmode:
1917 ASM_OUTPUT_THREE_QUARTER_FLOAT (asm_out_file, d);
1918 break;
1919 #endif
1920 #ifdef ASM_OUTPUT_FLOAT
1921 case SFmode:
1922 ASM_OUTPUT_FLOAT (asm_out_file, d);
1923 break;
1924 #endif
1926 #ifdef ASM_OUTPUT_DOUBLE
1927 case DFmode:
1928 ASM_OUTPUT_DOUBLE (asm_out_file, d);
1929 break;
1930 #endif
1932 #ifdef ASM_OUTPUT_LONG_DOUBLE
1933 case XFmode:
1934 case TFmode:
1935 ASM_OUTPUT_LONG_DOUBLE (asm_out_file, d);
1936 break;
1937 #endif
1939 default:
1940 abort ();
1943 set_float_handler (NULL);
1946 /* Here we combine duplicate floating constants to make
1947 CONST_DOUBLE rtx's, and force those out to memory when necessary. */
1949 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair of ints.
1950 For an integer, I0 is the low-order word and I1 is the high-order word.
1951 For a real number, I0 is the word with the low address
1952 and I1 is the word with the high address. */
1955 immed_double_const (i0, i1, mode)
1956 HOST_WIDE_INT i0, i1;
1957 enum machine_mode mode;
1959 register rtx r;
1961 if (GET_MODE_CLASS (mode) == MODE_INT
1962 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
1964 /* We clear out all bits that don't belong in MODE, unless they and our
1965 sign bit are all one. So we get either a reasonable negative value
1966 or a reasonable unsigned value for this mode. */
1967 int width = GET_MODE_BITSIZE (mode);
1968 if (width < HOST_BITS_PER_WIDE_INT
1969 && ((i0 & ((HOST_WIDE_INT) (-1) << (width - 1)))
1970 != ((HOST_WIDE_INT) (-1) << (width - 1))))
1971 i0 &= ((HOST_WIDE_INT) 1 << width) - 1, i1 = 0;
1972 else if (width == HOST_BITS_PER_WIDE_INT
1973 && ! (i1 == ~0 && i0 < 0))
1974 i1 = 0;
1975 else if (width > 2 * HOST_BITS_PER_WIDE_INT)
1976 /* We cannot represent this value as a constant. */
1977 abort ();
1979 /* If this would be an entire word for the target, but is not for
1980 the host, then sign-extend on the host so that the number will look
1981 the same way on the host that it would on the target.
1983 For example, when building a 64 bit alpha hosted 32 bit sparc
1984 targeted compiler, then we want the 32 bit unsigned value -1 to be
1985 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
1986 The later confuses the sparc backend. */
1988 if (width < HOST_BITS_PER_WIDE_INT
1989 && (i0 & ((HOST_WIDE_INT) 1 << (width - 1))))
1990 i0 |= ((HOST_WIDE_INT) (-1) << width);
1992 /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a CONST_INT.
1994 ??? Strictly speaking, this is wrong if we create a CONST_INT
1995 for a large unsigned constant with the size of MODE being
1996 HOST_BITS_PER_WIDE_INT and later try to interpret that constant in a
1997 wider mode. In that case we will mis-interpret it as a negative
1998 number.
2000 Unfortunately, the only alternative is to make a CONST_DOUBLE
2001 for any constant in any mode if it is an unsigned constant larger
2002 than the maximum signed integer in an int on the host. However,
2003 doing this will break everyone that always expects to see a CONST_INT
2004 for SImode and smaller.
2006 We have always been making CONST_INTs in this case, so nothing new
2007 is being broken. */
2009 if (width <= HOST_BITS_PER_WIDE_INT)
2010 i1 = (i0 < 0) ? ~(HOST_WIDE_INT) 0 : 0;
2012 /* If this integer fits in one word, return a CONST_INT. */
2013 if ((i1 == 0 && i0 >= 0)
2014 || (i1 == ~0 && i0 < 0))
2015 return GEN_INT (i0);
2017 /* We use VOIDmode for integers. */
2018 mode = VOIDmode;
2021 /* Search the chain for an existing CONST_DOUBLE with the right value.
2022 If one is found, return it. */
2023 if (cfun != 0)
2024 for (r = const_double_chain; r; r = CONST_DOUBLE_CHAIN (r))
2025 if (CONST_DOUBLE_LOW (r) == i0 && CONST_DOUBLE_HIGH (r) == i1
2026 && GET_MODE (r) == mode)
2027 return r;
2029 /* No; make a new one and add it to the chain. */
2030 r = gen_rtx_CONST_DOUBLE (mode, const0_rtx, i0, i1);
2032 /* Don't touch const_double_chain if not inside any function. */
2033 if (current_function_decl != 0)
2035 CONST_DOUBLE_CHAIN (r) = const_double_chain;
2036 const_double_chain = r;
2039 return r;
2042 /* Return a CONST_DOUBLE for a specified `double' value
2043 and machine mode. */
2046 immed_real_const_1 (d, mode)
2047 REAL_VALUE_TYPE d;
2048 enum machine_mode mode;
2050 union real_extract u;
2051 register rtx r;
2053 /* Get the desired `double' value as a sequence of ints
2054 since that is how they are stored in a CONST_DOUBLE. */
2056 u.d = d;
2058 /* Detect special cases. But be careful we don't use a CONST_DOUBLE
2059 that's from a parent function since it may be in its constant pool. */
2060 if (REAL_VALUES_IDENTICAL (dconst0, d)
2061 && (cfun == 0 || decl_function_context (current_function_decl) == 0))
2062 return CONST0_RTX (mode);
2064 /* Check for NaN first, because some ports (specifically the i386) do not
2065 emit correct ieee-fp code by default, and thus will generate a core
2066 dump here if we pass a NaN to REAL_VALUES_EQUAL and if REAL_VALUES_EQUAL
2067 does a floating point comparison. */
2068 else if ((! REAL_VALUE_ISNAN (d) && REAL_VALUES_EQUAL (dconst1, d))
2069 && (cfun == 0
2070 || decl_function_context (current_function_decl) == 0))
2071 return CONST1_RTX (mode);
2073 if (sizeof u == sizeof (HOST_WIDE_INT))
2074 return immed_double_const (u.i[0], 0, mode);
2075 if (sizeof u == 2 * sizeof (HOST_WIDE_INT))
2076 return immed_double_const (u.i[0], u.i[1], mode);
2078 /* The rest of this function handles the case where
2079 a float value requires more than 2 ints of space.
2080 It will be deleted as dead code on machines that don't need it. */
2082 /* Search the chain for an existing CONST_DOUBLE with the right value.
2083 If one is found, return it. */
2084 if (cfun != 0)
2085 for (r = const_double_chain; r; r = CONST_DOUBLE_CHAIN (r))
2086 if (! memcmp ((char *) &CONST_DOUBLE_LOW (r), (char *) &u, sizeof u)
2087 && GET_MODE (r) == mode)
2088 return r;
2090 /* No; make a new one and add it to the chain.
2092 We may be called by an optimizer which may be discarding any memory
2093 allocated during its processing (such as combine and loop). However,
2094 we will be leaving this constant on the chain, so we cannot tolerate
2095 freed memory. */
2096 r = rtx_alloc (CONST_DOUBLE);
2097 PUT_MODE (r, mode);
2098 memcpy ((char *) &CONST_DOUBLE_LOW (r), (char *) &u, sizeof u);
2100 /* If we aren't inside a function, don't put r on the
2101 const_double_chain. */
2102 if (current_function_decl != 0)
2104 CONST_DOUBLE_CHAIN (r) = const_double_chain;
2105 const_double_chain = r;
2107 else
2108 CONST_DOUBLE_CHAIN (r) = NULL_RTX;
2110 /* Store const0_rtx in CONST_DOUBLE_MEM since this CONST_DOUBLE is on the
2111 chain, but has not been allocated memory. Actual use of CONST_DOUBLE_MEM
2112 is only through force_const_mem. */
2114 CONST_DOUBLE_MEM (r) = const0_rtx;
2116 return r;
2119 /* Return a CONST_DOUBLE rtx for a value specified by EXP,
2120 which must be a REAL_CST tree node. */
2123 immed_real_const (exp)
2124 tree exp;
2126 return immed_real_const_1 (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)));
2129 /* At the end of a function, forget the memory-constants
2130 previously made for CONST_DOUBLEs. Mark them as not on real_constant_chain.
2131 Also clear out real_constant_chain and clear out all the chain-pointers. */
2133 void
2134 clear_const_double_mem ()
2136 register rtx r, next;
2138 for (r = const_double_chain; r; r = next)
2140 next = CONST_DOUBLE_CHAIN (r);
2141 CONST_DOUBLE_CHAIN (r) = 0;
2142 CONST_DOUBLE_MEM (r) = cc0_rtx;
2144 const_double_chain = 0;
2147 /* Given an expression EXP with a constant value,
2148 reduce it to the sum of an assembler symbol and an integer.
2149 Store them both in the structure *VALUE.
2150 Abort if EXP does not reduce. */
2152 struct addr_const
2154 rtx base;
2155 HOST_WIDE_INT offset;
2158 static void
2159 decode_addr_const (exp, value)
2160 tree exp;
2161 struct addr_const *value;
2163 register tree target = TREE_OPERAND (exp, 0);
2164 register int offset = 0;
2165 register rtx x;
2167 while (1)
2169 if (TREE_CODE (target) == COMPONENT_REF
2170 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2173 offset += int_byte_position (TREE_OPERAND (target, 1));
2174 target = TREE_OPERAND (target, 0);
2176 else if (TREE_CODE (target) == ARRAY_REF)
2178 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2179 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2180 target = TREE_OPERAND (target, 0);
2182 else
2183 break;
2186 switch (TREE_CODE (target))
2188 case VAR_DECL:
2189 case FUNCTION_DECL:
2190 x = DECL_RTL (target);
2191 break;
2193 case LABEL_DECL:
2194 x = gen_rtx_MEM (FUNCTION_MODE,
2195 gen_rtx_LABEL_REF (VOIDmode,
2196 label_rtx (TREE_OPERAND (exp, 0))));
2197 break;
2199 case REAL_CST:
2200 case STRING_CST:
2201 case COMPLEX_CST:
2202 case CONSTRUCTOR:
2203 case INTEGER_CST:
2204 x = TREE_CST_RTL (target);
2205 break;
2207 default:
2208 abort ();
2211 if (GET_CODE (x) != MEM)
2212 abort ();
2213 x = XEXP (x, 0);
2215 value->base = x;
2216 value->offset = offset;
2219 enum kind { RTX_DOUBLE, RTX_INT };
2220 struct rtx_const
2222 ENUM_BITFIELD(kind) kind : 16;
2223 ENUM_BITFIELD(machine_mode) mode : 16;
2224 union {
2225 union real_extract du;
2226 struct addr_const addr;
2227 struct {HOST_WIDE_INT high, low;} di;
2228 } un;
2231 /* Uniquize all constants that appear in memory.
2232 Each constant in memory thus far output is recorded
2233 in `const_hash_table' with a `struct constant_descriptor'
2234 that contains a polish representation of the value of
2235 the constant.
2237 We cannot store the trees in the hash table
2238 because the trees may be temporary. */
2240 struct constant_descriptor
2242 struct constant_descriptor *next;
2243 const char *label;
2244 rtx rtl;
2245 /* Make sure the data is reasonably aligned. */
2246 union
2248 unsigned char contents[1];
2249 #ifdef HAVE_LONG_DOUBLE
2250 long double d;
2251 #else
2252 double d;
2253 #endif
2254 } u;
2257 #define HASHBITS 30
2258 #define MAX_HASH_TABLE 1009
2259 static struct constant_descriptor *const_hash_table[MAX_HASH_TABLE];
2261 #define STRHASH(x) ((hashval_t)((long)(x) >> 3))
2263 struct deferred_string
2265 const char *label;
2266 tree exp;
2267 int labelno;
2270 static htab_t const_str_htab;
2272 /* Mark a const_hash_table descriptor for GC. */
2274 static void
2275 mark_const_hash_entry (ptr)
2276 void *ptr;
2278 struct constant_descriptor *desc = * (struct constant_descriptor **) ptr;
2280 while (desc)
2282 ggc_mark_rtx (desc->rtl);
2283 desc = desc->next;
2287 /* Mark the hash-table element X (which is really a pointer to an
2288 struct deferred_string *). */
2290 static int
2291 mark_const_str_htab_1 (x, data)
2292 void **x;
2293 void *data ATTRIBUTE_UNUSED;
2295 ggc_mark_tree (((struct deferred_string *) *x)->exp);
2296 return 1;
2299 /* Mark a const_str_htab for GC. */
2301 static void
2302 mark_const_str_htab (htab)
2303 void *htab;
2305 htab_traverse (*((htab_t *) htab), mark_const_str_htab_1, NULL);
2308 /* Returns a hash code for X (which is a really a
2309 struct deferred_string *). */
2311 static hashval_t
2312 const_str_htab_hash (x)
2313 const void *x;
2315 return STRHASH (((const struct deferred_string *) x)->label);
2318 /* Returns non-zero if the value represented by X (which is really a
2319 struct deferred_string *) is the same as that given by Y
2320 (which is really a char *). */
2322 static int
2323 const_str_htab_eq (x, y)
2324 const void *x;
2325 const void *y;
2327 return (((const struct deferred_string *) x)->label == (const char *) y);
2330 /* Delete the hash table entry dfsp. */
2332 static void
2333 const_str_htab_del (dfsp)
2334 void *dfsp;
2336 free (dfsp);
2339 /* Compute a hash code for a constant expression. */
2341 static int
2342 const_hash (exp)
2343 tree exp;
2345 register const char *p;
2346 register int len, hi, i;
2347 register enum tree_code code = TREE_CODE (exp);
2349 /* Either set P and LEN to the address and len of something to hash and
2350 exit the switch or return a value. */
2352 switch (code)
2354 case INTEGER_CST:
2355 p = (char *) &TREE_INT_CST (exp);
2356 len = sizeof TREE_INT_CST (exp);
2357 break;
2359 case REAL_CST:
2360 p = (char *) &TREE_REAL_CST (exp);
2361 len = sizeof TREE_REAL_CST (exp);
2362 break;
2364 case STRING_CST:
2365 p = TREE_STRING_POINTER (exp);
2366 len = TREE_STRING_LENGTH (exp);
2367 break;
2369 case COMPLEX_CST:
2370 return (const_hash (TREE_REALPART (exp)) * 5
2371 + const_hash (TREE_IMAGPART (exp)));
2373 case CONSTRUCTOR:
2374 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2376 char *tmp;
2378 len = int_size_in_bytes (TREE_TYPE (exp));
2379 tmp = (char *) alloca (len);
2380 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2381 p = tmp;
2382 break;
2384 else
2386 register tree link;
2388 /* For record type, include the type in the hashing.
2389 We do not do so for array types
2390 because (1) the sizes of the elements are sufficient
2391 and (2) distinct array types can have the same constructor.
2392 Instead, we include the array size because the constructor could
2393 be shorter. */
2394 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2395 hi = ((unsigned long) TREE_TYPE (exp) & ((1 << HASHBITS) - 1))
2396 % MAX_HASH_TABLE;
2397 else
2398 hi = ((5 + int_size_in_bytes (TREE_TYPE (exp)))
2399 & ((1 << HASHBITS) - 1)) % MAX_HASH_TABLE;
2401 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2402 if (TREE_VALUE (link))
2404 = (hi * 603 + const_hash (TREE_VALUE (link))) % MAX_HASH_TABLE;
2406 return hi;
2409 case ADDR_EXPR:
2411 struct addr_const value;
2413 decode_addr_const (exp, &value);
2414 if (GET_CODE (value.base) == SYMBOL_REF)
2416 /* Don't hash the address of the SYMBOL_REF;
2417 only use the offset and the symbol name. */
2418 hi = value.offset;
2419 p = XSTR (value.base, 0);
2420 for (i = 0; p[i] != 0; i++)
2421 hi = ((hi * 613) + (unsigned) (p[i]));
2423 else if (GET_CODE (value.base) == LABEL_REF)
2424 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2425 else
2426 abort();
2428 hi &= (1 << HASHBITS) - 1;
2429 hi %= MAX_HASH_TABLE;
2431 return hi;
2433 case PLUS_EXPR:
2434 case MINUS_EXPR:
2435 return (const_hash (TREE_OPERAND (exp, 0)) * 9
2436 + const_hash (TREE_OPERAND (exp, 1)));
2438 case NOP_EXPR:
2439 case CONVERT_EXPR:
2440 case NON_LVALUE_EXPR:
2441 return const_hash (TREE_OPERAND (exp, 0)) * 7 + 2;
2443 default:
2444 /* A language specific constant. Just hash the code. */
2445 return (int) code % MAX_HASH_TABLE;
2448 /* Compute hashing function */
2449 hi = len;
2450 for (i = 0; i < len; i++)
2451 hi = ((hi * 613) + (unsigned) (p[i]));
2453 hi &= (1 << HASHBITS) - 1;
2454 hi %= MAX_HASH_TABLE;
2455 return hi;
2458 /* Compare a constant expression EXP with a constant-descriptor DESC.
2459 Return 1 if DESC describes a constant with the same value as EXP. */
2461 static int
2462 compare_constant (exp, desc)
2463 tree exp;
2464 struct constant_descriptor *desc;
2466 return 0 != compare_constant_1 (exp, desc->u.contents);
2469 /* Compare constant expression EXP with a substring P of a constant descriptor.
2470 If they match, return a pointer to the end of the substring matched.
2471 If they do not match, return 0.
2473 Since descriptors are written in polish prefix notation,
2474 this function can be used recursively to test one operand of EXP
2475 against a subdescriptor, and if it succeeds it returns the
2476 address of the subdescriptor for the next operand. */
2478 static const unsigned char *
2479 compare_constant_1 (exp, p)
2480 tree exp;
2481 const unsigned char *p;
2483 register const unsigned char *strp;
2484 register int len;
2485 register enum tree_code code = TREE_CODE (exp);
2487 if (code != (enum tree_code) *p++)
2488 return 0;
2490 /* Either set STRP, P and LEN to pointers and length to compare and exit the
2491 switch, or return the result of the comparison. */
2493 switch (code)
2495 case INTEGER_CST:
2496 /* Integer constants are the same only if the same width of type. */
2497 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2498 return 0;
2500 strp = (unsigned char *) &TREE_INT_CST (exp);
2501 len = sizeof TREE_INT_CST (exp);
2502 break;
2504 case REAL_CST:
2505 /* Real constants are the same only if the same width of type. */
2506 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2507 return 0;
2509 strp = (unsigned char *) &TREE_REAL_CST (exp);
2510 len = sizeof TREE_REAL_CST (exp);
2511 break;
2513 case STRING_CST:
2514 if (flag_writable_strings)
2515 return 0;
2517 if ((enum machine_mode) *p++ != TYPE_MODE (TREE_TYPE (exp)))
2518 return 0;
2520 strp = (const unsigned char *)TREE_STRING_POINTER (exp);
2521 len = TREE_STRING_LENGTH (exp);
2522 if (memcmp ((char *) &TREE_STRING_LENGTH (exp), p,
2523 sizeof TREE_STRING_LENGTH (exp)))
2524 return 0;
2526 p += sizeof TREE_STRING_LENGTH (exp);
2527 break;
2529 case COMPLEX_CST:
2530 p = compare_constant_1 (TREE_REALPART (exp), p);
2531 if (p == 0)
2532 return 0;
2534 return compare_constant_1 (TREE_IMAGPART (exp), p);
2536 case CONSTRUCTOR:
2537 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2539 int xlen = len = int_size_in_bytes (TREE_TYPE (exp));
2540 unsigned char *tmp = (unsigned char *) alloca (len);
2542 get_set_constructor_bytes (exp, tmp, len);
2543 strp = (unsigned char *) tmp;
2544 if (memcmp ((char *) &xlen, p, sizeof xlen))
2545 return 0;
2547 p += sizeof xlen;
2548 break;
2550 else
2552 register tree link;
2553 int length = list_length (CONSTRUCTOR_ELTS (exp));
2554 tree type;
2555 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2556 int have_purpose = 0;
2558 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2559 if (TREE_PURPOSE (link))
2560 have_purpose = 1;
2562 if (memcmp ((char *) &length, p, sizeof length))
2563 return 0;
2565 p += sizeof length;
2567 /* For record constructors, insist that the types match.
2568 For arrays, just verify both constructors are for arrays.
2569 Then insist that either both or none have any TREE_PURPOSE
2570 values. */
2571 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2572 type = TREE_TYPE (exp);
2573 else
2574 type = 0;
2576 if (memcmp ((char *) &type, p, sizeof type))
2577 return 0;
2579 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2581 if (memcmp ((char *) &mode, p, sizeof mode))
2582 return 0;
2584 p += sizeof mode;
2587 p += sizeof type;
2589 if (memcmp ((char *) &have_purpose, p, sizeof have_purpose))
2590 return 0;
2592 p += sizeof have_purpose;
2594 /* For arrays, insist that the size in bytes match. */
2595 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2597 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
2599 if (memcmp ((char *) &size, p, sizeof size))
2600 return 0;
2602 p += sizeof size;
2605 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2607 if (TREE_VALUE (link))
2609 if ((p = compare_constant_1 (TREE_VALUE (link), p)) == 0)
2610 return 0;
2612 else
2614 tree zero = 0;
2616 if (memcmp ((char *) &zero, p, sizeof zero))
2617 return 0;
2619 p += sizeof zero;
2622 if (TREE_PURPOSE (link)
2623 && TREE_CODE (TREE_PURPOSE (link)) == FIELD_DECL)
2625 if (memcmp ((char *) &TREE_PURPOSE (link), p,
2626 sizeof TREE_PURPOSE (link)))
2627 return 0;
2629 p += sizeof TREE_PURPOSE (link);
2631 else if (TREE_PURPOSE (link))
2633 if ((p = compare_constant_1 (TREE_PURPOSE (link), p)) == 0)
2634 return 0;
2636 else if (have_purpose)
2638 int zero = 0;
2640 if (memcmp ((char *) &zero, p, sizeof zero))
2641 return 0;
2643 p += sizeof zero;
2647 return p;
2650 case ADDR_EXPR:
2652 struct addr_const value;
2654 decode_addr_const (exp, &value);
2655 strp = (unsigned char *) &value.offset;
2656 len = sizeof value.offset;
2657 /* Compare the offset. */
2658 while (--len >= 0)
2659 if (*p++ != *strp++)
2660 return 0;
2662 /* Compare symbol name. */
2663 strp = (const unsigned char *) XSTR (value.base, 0);
2664 len = strlen ((const char *) strp) + 1;
2666 break;
2668 case PLUS_EXPR:
2669 case MINUS_EXPR:
2670 case RANGE_EXPR:
2671 p = compare_constant_1 (TREE_OPERAND (exp, 0), p);
2672 if (p == 0)
2673 return 0;
2675 return compare_constant_1 (TREE_OPERAND (exp, 1), p);
2677 case NOP_EXPR:
2678 case CONVERT_EXPR:
2679 case NON_LVALUE_EXPR:
2680 return compare_constant_1 (TREE_OPERAND (exp, 0), p);
2682 default:
2683 if (lang_expand_constant)
2685 exp = (*lang_expand_constant) (exp);
2686 return compare_constant_1 (exp, p);
2688 return 0;
2691 /* Compare constant contents. */
2692 while (--len >= 0)
2693 if (*p++ != *strp++)
2694 return 0;
2696 return p;
2699 /* Construct a constant descriptor for the expression EXP.
2700 It is up to the caller to enter the descriptor in the hash table. */
2702 static struct constant_descriptor *
2703 record_constant (exp)
2704 tree exp;
2706 struct constant_descriptor *next = 0;
2707 char *label = 0;
2708 rtx rtl = 0;
2709 int pad;
2711 /* Make a struct constant_descriptor. The first three pointers will
2712 be filled in later. Here we just leave space for them. */
2714 obstack_grow (&permanent_obstack, (char *) &next, sizeof next);
2715 obstack_grow (&permanent_obstack, (char *) &label, sizeof label);
2716 obstack_grow (&permanent_obstack, (char *) &rtl, sizeof rtl);
2718 /* Align the descriptor for the data payload. */
2719 pad = (offsetof (struct constant_descriptor, u)
2720 - offsetof(struct constant_descriptor, rtl)
2721 - sizeof(next->rtl));
2722 if (pad > 0)
2723 obstack_blank (&permanent_obstack, pad);
2725 record_constant_1 (exp);
2726 return (struct constant_descriptor *) obstack_finish (&permanent_obstack);
2729 /* Add a description of constant expression EXP
2730 to the object growing in `permanent_obstack'.
2731 No need to return its address; the caller will get that
2732 from the obstack when the object is complete. */
2734 static void
2735 record_constant_1 (exp)
2736 tree exp;
2738 register const unsigned char *strp;
2739 register int len;
2740 register enum tree_code code = TREE_CODE (exp);
2742 obstack_1grow (&permanent_obstack, (unsigned int) code);
2744 switch (code)
2746 case INTEGER_CST:
2747 obstack_1grow (&permanent_obstack, TYPE_PRECISION (TREE_TYPE (exp)));
2748 strp = (unsigned char *) &TREE_INT_CST (exp);
2749 len = sizeof TREE_INT_CST (exp);
2750 break;
2752 case REAL_CST:
2753 obstack_1grow (&permanent_obstack, TYPE_PRECISION (TREE_TYPE (exp)));
2754 strp = (unsigned char *) &TREE_REAL_CST (exp);
2755 len = sizeof TREE_REAL_CST (exp);
2756 break;
2758 case STRING_CST:
2759 if (flag_writable_strings)
2760 return;
2762 obstack_1grow (&permanent_obstack, TYPE_MODE (TREE_TYPE (exp)));
2763 strp = (const unsigned char *) TREE_STRING_POINTER (exp);
2764 len = TREE_STRING_LENGTH (exp);
2765 obstack_grow (&permanent_obstack, (char *) &TREE_STRING_LENGTH (exp),
2766 sizeof TREE_STRING_LENGTH (exp));
2767 break;
2769 case COMPLEX_CST:
2770 record_constant_1 (TREE_REALPART (exp));
2771 record_constant_1 (TREE_IMAGPART (exp));
2772 return;
2774 case CONSTRUCTOR:
2775 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2777 int nbytes = int_size_in_bytes (TREE_TYPE (exp));
2778 obstack_grow (&permanent_obstack, &nbytes, sizeof (nbytes));
2779 obstack_blank (&permanent_obstack, nbytes);
2780 get_set_constructor_bytes
2781 (exp, (unsigned char *) permanent_obstack.next_free-nbytes,
2782 nbytes);
2783 return;
2785 else
2787 register tree link;
2788 int length = list_length (CONSTRUCTOR_ELTS (exp));
2789 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2790 tree type;
2791 int have_purpose = 0;
2793 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2794 if (TREE_PURPOSE (link))
2795 have_purpose = 1;
2797 obstack_grow (&permanent_obstack, (char *) &length, sizeof length);
2799 /* For record constructors, insist that the types match.
2800 For arrays, just verify both constructors are for arrays
2801 of the same mode. Then insist that either both or none
2802 have any TREE_PURPOSE values. */
2803 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2804 type = TREE_TYPE (exp);
2805 else
2806 type = 0;
2808 obstack_grow (&permanent_obstack, (char *) &type, sizeof type);
2809 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2810 obstack_grow (&permanent_obstack, &mode, sizeof mode);
2812 obstack_grow (&permanent_obstack, (char *) &have_purpose,
2813 sizeof have_purpose);
2815 /* For arrays, insist that the size in bytes match. */
2816 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2818 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
2819 obstack_grow (&permanent_obstack, (char *) &size, sizeof size);
2822 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2824 if (TREE_VALUE (link))
2825 record_constant_1 (TREE_VALUE (link));
2826 else
2828 tree zero = 0;
2830 obstack_grow (&permanent_obstack,
2831 (char *) &zero, sizeof zero);
2834 if (TREE_PURPOSE (link)
2835 && TREE_CODE (TREE_PURPOSE (link)) == FIELD_DECL)
2836 obstack_grow (&permanent_obstack,
2837 (char *) &TREE_PURPOSE (link),
2838 sizeof TREE_PURPOSE (link));
2839 else if (TREE_PURPOSE (link))
2840 record_constant_1 (TREE_PURPOSE (link));
2841 else if (have_purpose)
2843 int zero = 0;
2845 obstack_grow (&permanent_obstack,
2846 (char *) &zero, sizeof zero);
2850 return;
2852 case ADDR_EXPR:
2854 struct addr_const value;
2856 decode_addr_const (exp, &value);
2857 /* Record the offset. */
2858 obstack_grow (&permanent_obstack,
2859 (char *) &value.offset, sizeof value.offset);
2861 switch (GET_CODE (value.base))
2863 case SYMBOL_REF:
2864 /* Record the symbol name. */
2865 obstack_grow (&permanent_obstack, XSTR (value.base, 0),
2866 strlen (XSTR (value.base, 0)) + 1);
2867 break;
2868 case LABEL_REF:
2869 /* Record the address of the CODE_LABEL. It may not have
2870 been emitted yet, so it's UID may be zero. But pointer
2871 identity is good enough. */
2872 obstack_grow (&permanent_obstack, &XEXP (value.base, 0),
2873 sizeof (rtx));
2874 break;
2875 default:
2876 abort ();
2879 return;
2881 case PLUS_EXPR:
2882 case MINUS_EXPR:
2883 case RANGE_EXPR:
2884 record_constant_1 (TREE_OPERAND (exp, 0));
2885 record_constant_1 (TREE_OPERAND (exp, 1));
2886 return;
2888 case NOP_EXPR:
2889 case CONVERT_EXPR:
2890 case NON_LVALUE_EXPR:
2891 record_constant_1 (TREE_OPERAND (exp, 0));
2892 return;
2894 default:
2895 if (lang_expand_constant)
2897 exp = (*lang_expand_constant) (exp);
2898 record_constant_1 (exp);
2900 return;
2903 /* Record constant contents. */
2904 obstack_grow (&permanent_obstack, strp, len);
2907 /* Record a list of constant expressions that were passed to
2908 output_constant_def but that could not be output right away. */
2910 struct deferred_constant
2912 struct deferred_constant *next;
2913 tree exp;
2914 int reloc;
2915 int labelno;
2918 static struct deferred_constant *deferred_constants;
2920 /* Another list of constants which should be output after the
2921 function. */
2922 static struct deferred_constant *after_function_constants;
2924 /* Nonzero means defer output of addressed subconstants
2925 (i.e., those for which output_constant_def is called.) */
2926 static int defer_addressed_constants_flag;
2928 /* Start deferring output of subconstants. */
2930 void
2931 defer_addressed_constants ()
2933 defer_addressed_constants_flag++;
2936 /* Stop deferring output of subconstants,
2937 and output now all those that have been deferred. */
2939 void
2940 output_deferred_addressed_constants ()
2942 struct deferred_constant *p, *next;
2944 defer_addressed_constants_flag--;
2946 if (defer_addressed_constants_flag > 0)
2947 return;
2949 for (p = deferred_constants; p; p = next)
2951 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2952 next = p->next;
2953 free (p);
2956 deferred_constants = 0;
2959 /* Output any constants which should appear after a function. */
2961 static void
2962 output_after_function_constants ()
2964 struct deferred_constant *p, *next;
2966 for (p = after_function_constants; p; p = next)
2968 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2969 next = p->next;
2970 free (p);
2973 after_function_constants = 0;
2976 /* Make a copy of the whole tree structure for a constant.
2977 This handles the same types of nodes that compare_constant
2978 and record_constant handle. */
2980 static tree
2981 copy_constant (exp)
2982 tree exp;
2984 switch (TREE_CODE (exp))
2986 case ADDR_EXPR:
2987 /* For ADDR_EXPR, we do not want to copy the decl whose address
2988 is requested. We do want to copy constants though. */
2989 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2990 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2991 copy_constant (TREE_OPERAND (exp, 0)));
2992 else
2993 return copy_node (exp);
2995 case INTEGER_CST:
2996 case REAL_CST:
2997 case STRING_CST:
2998 return copy_node (exp);
3000 case COMPLEX_CST:
3001 return build_complex (TREE_TYPE (exp),
3002 copy_constant (TREE_REALPART (exp)),
3003 copy_constant (TREE_IMAGPART (exp)));
3005 case PLUS_EXPR:
3006 case MINUS_EXPR:
3007 return build (TREE_CODE (exp), TREE_TYPE (exp),
3008 copy_constant (TREE_OPERAND (exp, 0)),
3009 copy_constant (TREE_OPERAND (exp, 1)));
3011 case NOP_EXPR:
3012 case CONVERT_EXPR:
3013 case NON_LVALUE_EXPR:
3014 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
3015 copy_constant (TREE_OPERAND (exp, 0)));
3017 case CONSTRUCTOR:
3019 tree copy = copy_node (exp);
3020 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
3021 tree tail;
3023 CONSTRUCTOR_ELTS (copy) = list;
3024 for (tail = list; tail; tail = TREE_CHAIN (tail))
3025 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
3026 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
3027 for (tail = list; tail; tail = TREE_CHAIN (tail))
3028 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
3030 return copy;
3033 default:
3034 abort ();
3038 /* Return an rtx representing a reference to constant data in memory
3039 for the constant expression EXP.
3041 If assembler code for such a constant has already been output,
3042 return an rtx to refer to it.
3043 Otherwise, output such a constant in memory (or defer it for later)
3044 and generate an rtx for it.
3046 If DEFER is non-zero, the output of string constants can be deferred
3047 and output only if referenced in the function after all optimizations.
3049 The TREE_CST_RTL of EXP is set up to point to that rtx.
3050 The const_hash_table records which constants already have label strings. */
3053 output_constant_def (exp, defer)
3054 tree exp;
3055 int defer;
3057 register int hash;
3058 register struct constant_descriptor *desc;
3059 struct deferred_string **defstr;
3060 char label[256];
3061 int reloc;
3062 int found = 1;
3063 int after_function = 0;
3064 int labelno = -1;
3066 if (TREE_CST_RTL (exp))
3067 return TREE_CST_RTL (exp);
3069 /* Make sure any other constants whose addresses appear in EXP
3070 are assigned label numbers. */
3072 reloc = output_addressed_constants (exp);
3074 /* Compute hash code of EXP. Search the descriptors for that hash code
3075 to see if any of them describes EXP. If yes, the descriptor records
3076 the label number already assigned. */
3078 hash = const_hash (exp) % MAX_HASH_TABLE;
3080 for (desc = const_hash_table[hash]; desc; desc = desc->next)
3081 if (compare_constant (exp, desc))
3082 break;
3084 if (desc == 0)
3086 /* No constant equal to EXP is known to have been output.
3087 Make a constant descriptor to enter EXP in the hash table.
3088 Assign the label number and record it in the descriptor for
3089 future calls to this function to find. */
3091 /* Create a string containing the label name, in LABEL. */
3092 labelno = const_labelno++;
3093 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
3095 desc = record_constant (exp);
3096 desc->next = const_hash_table[hash];
3097 desc->label = ggc_strdup (label);
3098 const_hash_table[hash] = desc;
3100 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3101 desc->rtl
3102 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
3103 gen_rtx_SYMBOL_REF (Pmode, desc->label));
3105 set_mem_attributes (desc->rtl, exp, 1);
3107 found = 0;
3110 TREE_CST_RTL (exp) = desc->rtl;
3112 /* Optionally set flags or add text to the name to record information
3113 such as that it is a function name. If the name is changed, the macro
3114 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
3115 #ifdef ENCODE_SECTION_INFO
3116 /* A previously-processed constant would already have section info
3117 encoded in it. */
3118 if (! found)
3120 ENCODE_SECTION_INFO (exp);
3121 desc->rtl = TREE_CST_RTL (exp);
3122 desc->label = XSTR (XEXP (desc->rtl, 0), 0);
3124 #endif
3126 #ifdef CONSTANT_AFTER_FUNCTION_P
3127 if (current_function_decl != 0
3128 && CONSTANT_AFTER_FUNCTION_P (exp))
3129 after_function = 1;
3130 #endif
3132 if (found
3133 && STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0))
3134 && (!defer || defer_addressed_constants_flag || after_function))
3136 defstr = (struct deferred_string **)
3137 htab_find_slot_with_hash (const_str_htab, desc->label,
3138 STRHASH (desc->label), NO_INSERT);
3139 if (defstr)
3141 /* If the string is currently deferred but we need to output it now,
3142 remove it from deferred string hash table. */
3143 found = 0;
3144 labelno = (*defstr)->labelno;
3145 STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0)) = 0;
3146 htab_clear_slot (const_str_htab, (void **) defstr);
3150 /* If this is the first time we've seen this particular constant,
3151 output it (or defer its output for later). */
3152 if (! found)
3154 if (defer_addressed_constants_flag || after_function)
3156 struct deferred_constant *p;
3157 p = (struct deferred_constant *) xmalloc (sizeof (struct deferred_constant));
3159 p->exp = copy_constant (exp);
3160 p->reloc = reloc;
3161 p->labelno = labelno;
3162 if (after_function)
3164 p->next = after_function_constants;
3165 after_function_constants = p;
3167 else
3169 p->next = deferred_constants;
3170 deferred_constants = p;
3173 else
3175 /* Do no output if -fsyntax-only. */
3176 if (! flag_syntax_only)
3178 if (TREE_CODE (exp) != STRING_CST
3179 || !defer
3180 || flag_writable_strings
3181 || (defstr = (struct deferred_string **)
3182 htab_find_slot_with_hash (const_str_htab,
3183 desc->label,
3184 STRHASH (desc->label),
3185 INSERT)) == NULL)
3186 output_constant_def_contents (exp, reloc, labelno);
3187 else
3189 struct deferred_string *p;
3191 p = (struct deferred_string *)
3192 xmalloc (sizeof (struct deferred_string));
3194 p->exp = copy_constant (exp);
3195 p->label = desc->label;
3196 p->labelno = labelno;
3197 *defstr = p;
3198 STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0)) = 1;
3204 return TREE_CST_RTL (exp);
3207 /* Now output assembler code to define the label for EXP,
3208 and follow it with the data of EXP. */
3210 static void
3211 output_constant_def_contents (exp, reloc, labelno)
3212 tree exp;
3213 int reloc;
3214 int labelno;
3216 int align;
3218 if (IN_NAMED_SECTION (exp))
3219 named_section (exp, NULL, reloc);
3220 else
3222 /* First switch to text section, except for writable strings. */
3223 #ifdef SELECT_SECTION
3224 SELECT_SECTION (exp, reloc);
3225 #else
3226 if (((TREE_CODE (exp) == STRING_CST) && flag_writable_strings)
3227 || (flag_pic && reloc))
3228 data_section ();
3229 else
3230 readonly_data_section ();
3231 #endif
3234 /* Align the location counter as required by EXP's data type. */
3235 align = TYPE_ALIGN (TREE_TYPE (exp));
3236 #ifdef CONSTANT_ALIGNMENT
3237 align = CONSTANT_ALIGNMENT (exp, align);
3238 #endif
3240 if (align > BITS_PER_UNIT)
3241 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3243 /* Output the label itself. */
3244 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", labelno);
3246 /* Output the value of EXP. */
3247 output_constant (exp,
3248 (TREE_CODE (exp) == STRING_CST
3249 ? TREE_STRING_LENGTH (exp)
3250 : int_size_in_bytes (TREE_TYPE (exp))));
3254 /* Structure to represent sufficient information about a constant so that
3255 it can be output when the constant pool is output, so that function
3256 integration can be done, and to simplify handling on machines that reference
3257 constant pool as base+displacement. */
3259 struct pool_constant
3261 struct constant_descriptor *desc;
3262 struct pool_constant *next, *next_sym;
3263 const char *label;
3264 rtx constant;
3265 enum machine_mode mode;
3266 int labelno;
3267 int align;
3268 int offset;
3269 int mark;
3272 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
3273 The argument is XSTR (... , 0) */
3275 #define SYMHASH(LABEL) \
3276 ((((unsigned long) (LABEL)) & ((1 << HASHBITS) - 1)) % MAX_RTX_HASH_TABLE)
3278 /* Initialize constant pool hashing for a new function. */
3280 void
3281 init_varasm_status (f)
3282 struct function *f;
3284 struct varasm_status *p;
3285 p = (struct varasm_status *) xmalloc (sizeof (struct varasm_status));
3286 f->varasm = p;
3287 p->x_const_rtx_hash_table
3288 = ((struct constant_descriptor **)
3289 xcalloc (MAX_RTX_HASH_TABLE, sizeof (struct constant_descriptor *)));
3290 p->x_const_rtx_sym_hash_table
3291 = ((struct pool_constant **)
3292 xcalloc (MAX_RTX_HASH_TABLE, sizeof (struct pool_constant *)));
3294 p->x_first_pool = p->x_last_pool = 0;
3295 p->x_pool_offset = 0;
3296 p->x_const_double_chain = 0;
3299 /* Mark PC for GC. */
3301 static void
3302 mark_pool_constant (pc)
3303 struct pool_constant *pc;
3305 while (pc)
3307 ggc_mark (pc);
3308 ggc_mark_rtx (pc->constant);
3309 pc = pc->next;
3313 /* Mark P for GC. */
3315 void
3316 mark_varasm_status (p)
3317 struct varasm_status *p;
3319 if (p == NULL)
3320 return;
3322 mark_pool_constant (p->x_first_pool);
3323 ggc_mark_rtx (p->x_const_double_chain);
3326 /* Clear out all parts of the state in F that can safely be discarded
3327 after the function has been compiled, to let garbage collection
3328 reclaim the memory. */
3330 void
3331 free_varasm_status (f)
3332 struct function *f;
3334 struct varasm_status *p;
3335 int i;
3337 p = f->varasm;
3339 /* Clear out the hash tables. */
3340 for (i = 0; i < MAX_RTX_HASH_TABLE; ++i)
3342 struct constant_descriptor* cd;
3344 cd = p->x_const_rtx_hash_table[i];
3345 while (cd) {
3346 struct constant_descriptor* next = cd->next;
3347 free (cd);
3348 cd = next;
3352 free (p->x_const_rtx_hash_table);
3353 free (p->x_const_rtx_sym_hash_table);
3354 free (p);
3355 f->varasm = NULL;
3359 /* Express an rtx for a constant integer (perhaps symbolic)
3360 as the sum of a symbol or label plus an explicit integer.
3361 They are stored into VALUE. */
3363 static void
3364 decode_rtx_const (mode, x, value)
3365 enum machine_mode mode;
3366 rtx x;
3367 struct rtx_const *value;
3369 /* Clear the whole structure, including any gaps. */
3370 memset (value, 0, sizeof (struct rtx_const));
3372 value->kind = RTX_INT; /* Most usual kind. */
3373 value->mode = mode;
3375 switch (GET_CODE (x))
3377 case CONST_DOUBLE:
3378 value->kind = RTX_DOUBLE;
3379 if (GET_MODE (x) != VOIDmode)
3381 value->mode = GET_MODE (x);
3382 memcpy ((char *) &value->un.du,
3383 (char *) &CONST_DOUBLE_LOW (x), sizeof value->un.du);
3385 else
3387 value->un.di.low = CONST_DOUBLE_LOW (x);
3388 value->un.di.high = CONST_DOUBLE_HIGH (x);
3390 break;
3392 case CONST_INT:
3393 value->un.addr.offset = INTVAL (x);
3394 break;
3396 case SYMBOL_REF:
3397 case LABEL_REF:
3398 case PC:
3399 value->un.addr.base = x;
3400 break;
3402 case CONST:
3403 x = XEXP (x, 0);
3404 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3406 value->un.addr.base = XEXP (x, 0);
3407 value->un.addr.offset = INTVAL (XEXP (x, 1));
3409 else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3411 value->un.addr.base = XEXP (x, 0);
3412 value->un.addr.offset = - INTVAL (XEXP (x, 1));
3414 else
3416 value->un.addr.base = x;
3417 value->un.addr.offset = 0;
3419 break;
3421 default:
3422 abort ();
3425 if (value->kind == RTX_INT && value->un.addr.base != 0)
3426 switch (GET_CODE (value->un.addr.base))
3428 case SYMBOL_REF:
3429 /* Use the string's address, not the SYMBOL_REF's address,
3430 for the sake of addresses of library routines. */
3431 value->un.addr.base = (rtx) XSTR (value->un.addr.base, 0);
3432 break;
3434 case LABEL_REF:
3435 /* For a LABEL_REF, compare labels. */
3436 value->un.addr.base = XEXP (value->un.addr.base, 0);
3438 default:
3439 break;
3443 /* Given a MINUS expression, simplify it if both sides
3444 include the same symbol. */
3447 simplify_subtraction (x)
3448 rtx x;
3450 struct rtx_const val0, val1;
3452 decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
3453 decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
3455 if (val0.un.addr.base == val1.un.addr.base)
3456 return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
3457 return x;
3460 /* Compute a hash code for a constant RTL expression. */
3462 static int
3463 const_hash_rtx (mode, x)
3464 enum machine_mode mode;
3465 rtx x;
3467 register int hi;
3468 register size_t i;
3470 struct rtx_const value;
3471 decode_rtx_const (mode, x, &value);
3473 /* Compute hashing function */
3474 hi = 0;
3475 for (i = 0; i < sizeof value / sizeof (int); i++)
3476 hi += ((int *) &value)[i];
3478 hi &= (1 << HASHBITS) - 1;
3479 hi %= MAX_RTX_HASH_TABLE;
3480 return hi;
3483 /* Compare a constant rtl object X with a constant-descriptor DESC.
3484 Return 1 if DESC describes a constant with the same value as X. */
3486 static int
3487 compare_constant_rtx (mode, x, desc)
3488 enum machine_mode mode;
3489 rtx x;
3490 struct constant_descriptor *desc;
3492 register int *p = (int *) desc->u.contents;
3493 register int *strp;
3494 register int len;
3495 struct rtx_const value;
3497 decode_rtx_const (mode, x, &value);
3498 strp = (int *) &value;
3499 len = sizeof value / sizeof (int);
3501 /* Compare constant contents. */
3502 while (--len >= 0)
3503 if (*p++ != *strp++)
3504 return 0;
3506 return 1;
3509 /* Construct a constant descriptor for the rtl-expression X.
3510 It is up to the caller to enter the descriptor in the hash table. */
3512 static struct constant_descriptor *
3513 record_constant_rtx (mode, x)
3514 enum machine_mode mode;
3515 rtx x;
3517 struct constant_descriptor *ptr;
3519 ptr = ((struct constant_descriptor *)
3520 xcalloc (1, (offsetof (struct constant_descriptor, u)
3521 + sizeof (struct rtx_const))));
3522 decode_rtx_const (mode, x, (struct rtx_const *) ptr->u.contents);
3524 return ptr;
3527 /* Given a constant rtx X, make (or find) a memory constant for its value
3528 and return a MEM rtx to refer to it in memory. */
3531 force_const_mem (mode, x)
3532 enum machine_mode mode;
3533 rtx x;
3535 register int hash;
3536 register struct constant_descriptor *desc;
3537 char label[256];
3538 const char *found = 0;
3539 rtx def;
3541 /* If we want this CONST_DOUBLE in the same mode as it is in memory
3542 (this will always be true for floating CONST_DOUBLEs that have been
3543 placed in memory, but not for VOIDmode (integer) CONST_DOUBLEs),
3544 use the previous copy. Otherwise, make a new one. Note that in
3545 the unlikely event that this same CONST_DOUBLE is used in two different
3546 modes in an alternating fashion, we will allocate a lot of different
3547 memory locations, but this should be extremely rare. */
3549 if (GET_CODE (x) == CONST_DOUBLE
3550 && GET_CODE (CONST_DOUBLE_MEM (x)) == MEM
3551 && GET_MODE (CONST_DOUBLE_MEM (x)) == mode)
3552 return CONST_DOUBLE_MEM (x);
3554 /* Compute hash code of X. Search the descriptors for that hash code
3555 to see if any of them describes X. If yes, the descriptor records
3556 the label number already assigned. */
3558 hash = const_hash_rtx (mode, x);
3560 for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
3561 if (compare_constant_rtx (mode, x, desc))
3563 found = desc->label;
3564 break;
3567 if (found == 0)
3569 register struct pool_constant *pool;
3570 int align;
3572 /* No constant equal to X is known to have been output.
3573 Make a constant descriptor to enter X in the hash table.
3574 Assign the label number and record it in the descriptor for
3575 future calls to this function to find. */
3577 desc = record_constant_rtx (mode, x);
3578 desc->next = const_rtx_hash_table[hash];
3579 const_rtx_hash_table[hash] = desc;
3581 /* Align the location counter as required by EXP's data type. */
3582 align = (mode == VOIDmode) ? UNITS_PER_WORD : GET_MODE_SIZE (mode);
3583 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
3584 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
3585 #ifdef CONSTANT_ALIGNMENT
3586 align = CONSTANT_ALIGNMENT (make_tree (type_for_mode (mode, 0), x),
3587 align * BITS_PER_UNIT) / BITS_PER_UNIT;
3588 #endif
3590 pool_offset += align - 1;
3591 pool_offset &= ~ (align - 1);
3593 if (GET_CODE (x) == LABEL_REF)
3594 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3596 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3598 pool = (struct pool_constant *) ggc_alloc (sizeof (struct pool_constant));
3599 pool->desc = desc;
3600 pool->constant = x;
3601 pool->mode = mode;
3602 pool->labelno = const_labelno;
3603 pool->align = align;
3604 pool->offset = pool_offset;
3605 pool->mark = 1;
3606 pool->next = 0;
3608 if (last_pool == 0)
3609 first_pool = pool;
3610 else
3611 last_pool->next = pool;
3613 last_pool = pool;
3614 pool_offset += GET_MODE_SIZE (mode);
3616 /* Create a string containing the label name, in LABEL. */
3617 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3619 ++const_labelno;
3621 desc->label = found = ggc_strdup (label);
3623 /* Add label to symbol hash table. */
3624 hash = SYMHASH (found);
3625 pool->label = found;
3626 pool->next_sym = const_rtx_sym_hash_table[hash];
3627 const_rtx_sym_hash_table[hash] = pool;
3630 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3632 def = gen_rtx_MEM (mode, gen_rtx_SYMBOL_REF (Pmode, found));
3633 set_mem_attributes (def, type_for_mode (mode, 0), 1);
3634 RTX_UNCHANGING_P (def) = 1;
3636 /* Mark the symbol_ref as belonging to this constants pool. */
3637 CONSTANT_POOL_ADDRESS_P (XEXP (def, 0)) = 1;
3638 current_function_uses_const_pool = 1;
3640 if (GET_CODE (x) == CONST_DOUBLE)
3642 if (CONST_DOUBLE_MEM (x) == cc0_rtx)
3644 CONST_DOUBLE_CHAIN (x) = const_double_chain;
3645 const_double_chain = x;
3647 CONST_DOUBLE_MEM (x) = def;
3650 return def;
3653 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3654 the corresponding pool_constant structure. */
3656 static struct pool_constant *
3657 find_pool_constant (f, addr)
3658 struct function *f;
3659 rtx addr;
3661 struct pool_constant *pool;
3662 const char *label = XSTR (addr, 0);
3664 for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
3665 pool = pool->next_sym)
3666 if (pool->label == label)
3667 return pool;
3669 abort ();
3672 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3675 get_pool_constant (addr)
3676 rtx addr;
3678 return (find_pool_constant (cfun, addr))->constant;
3681 /* Likewise, but for the constant pool of a specific function. */
3684 get_pool_constant_for_function (f, addr)
3685 struct function *f;
3686 rtx addr;
3688 return (find_pool_constant (f, addr))->constant;
3691 /* Similar, return the mode. */
3693 enum machine_mode
3694 get_pool_mode (addr)
3695 rtx addr;
3697 return (find_pool_constant (cfun, addr))->mode;
3700 enum machine_mode
3701 get_pool_mode_for_function (f, addr)
3702 struct function *f;
3703 rtx addr;
3705 return (find_pool_constant (f, addr))->mode;
3708 /* Similar, return the offset in the constant pool. */
3711 get_pool_offset (addr)
3712 rtx addr;
3714 return (find_pool_constant (cfun, addr))->offset;
3717 /* Return the size of the constant pool. */
3720 get_pool_size ()
3722 return pool_offset;
3725 /* Write all the constants in the constant pool. */
3727 void
3728 output_constant_pool (fnname, fndecl)
3729 const char *fnname ATTRIBUTE_UNUSED;
3730 tree fndecl ATTRIBUTE_UNUSED;
3732 struct pool_constant *pool;
3733 rtx x;
3734 union real_extract u;
3736 /* It is possible for gcc to call force_const_mem and then to later
3737 discard the instructions which refer to the constant. In such a
3738 case we do not need to output the constant. */
3739 mark_constant_pool ();
3741 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3742 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3743 #endif
3745 for (pool = first_pool; pool; pool = pool->next)
3747 rtx tmp;
3749 x = pool->constant;
3751 if (! pool->mark)
3752 continue;
3754 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3755 whose CODE_LABEL has been deleted. This can occur if a jump table
3756 is eliminated by optimization. If so, write a constant of zero
3757 instead. Note that this can also happen by turning the
3758 CODE_LABEL into a NOTE. */
3759 /* ??? This seems completely and utterly wrong. Certainly it's
3760 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3761 functioning even with INSN_DELETED_P and friends. */
3763 tmp = x;
3764 switch (GET_CODE (x))
3766 case CONST:
3767 if (GET_CODE (XEXP (x, 0)) != PLUS
3768 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3769 break;
3770 tmp = XEXP (XEXP (x, 0), 0);
3771 /* FALLTHRU */
3773 case LABEL_REF:
3774 tmp = XEXP (x, 0);
3775 if (INSN_DELETED_P (tmp)
3776 || (GET_CODE (tmp) == NOTE
3777 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3779 abort ();
3780 x = const0_rtx;
3782 break;
3784 default:
3785 break;
3788 /* First switch to correct section. */
3789 #ifdef SELECT_RTX_SECTION
3790 SELECT_RTX_SECTION (pool->mode, x);
3791 #else
3792 readonly_data_section ();
3793 #endif
3795 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3796 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3797 pool->align, pool->labelno, done);
3798 #endif
3800 if (pool->align > 1)
3801 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (pool->align));
3803 /* Output the label. */
3804 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", pool->labelno);
3806 /* Output the value of the constant itself. */
3807 switch (GET_MODE_CLASS (pool->mode))
3809 case MODE_FLOAT:
3810 if (GET_CODE (x) != CONST_DOUBLE)
3811 abort ();
3813 memcpy ((char *) &u, (char *) &CONST_DOUBLE_LOW (x), sizeof u);
3814 assemble_real (u.d, pool->mode);
3815 break;
3817 case MODE_INT:
3818 case MODE_PARTIAL_INT:
3819 assemble_integer (x, GET_MODE_SIZE (pool->mode), 1);
3820 break;
3822 default:
3823 abort ();
3826 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3827 done: ;
3828 #endif
3832 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3833 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3834 #endif
3836 /* Done with this pool. */
3837 first_pool = last_pool = 0;
3840 /* Look through the instructions for this function, and mark all the
3841 entries in the constant pool which are actually being used.
3842 Emit used deferred strings. */
3844 static void
3845 mark_constant_pool ()
3847 register rtx insn;
3848 struct pool_constant *pool;
3850 if (first_pool == 0 && htab_elements (const_str_htab) == 0)
3851 return;
3853 for (pool = first_pool; pool; pool = pool->next)
3854 pool->mark = 0;
3856 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3857 if (INSN_P (insn))
3858 mark_constants (PATTERN (insn));
3860 for (insn = current_function_epilogue_delay_list;
3861 insn;
3862 insn = XEXP (insn, 1))
3863 if (INSN_P (insn))
3864 mark_constants (PATTERN (insn));
3867 /* Look through appropriate parts of X, marking all entries in the
3868 constant pool which are actually being used. Entries that are only
3869 referenced by other constants are also marked as used. Emit
3870 deferred strings that are used. */
3872 static void
3873 mark_constants (x)
3874 rtx x;
3876 register int i;
3877 register const char *format_ptr;
3879 if (x == 0)
3880 return;
3882 if (GET_CODE (x) == SYMBOL_REF)
3884 mark_constant (&x, NULL);
3885 return;
3887 /* Never search inside a CONST_DOUBLE, because CONST_DOUBLE_MEM may be
3888 a MEM, but does not constitute a use of that MEM. */
3889 else if (GET_CODE (x) == CONST_DOUBLE)
3890 return;
3892 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3893 insns, not any notes that may be attached. We don't want to mark
3894 a constant just because it happens to appear in a REG_EQUIV note. */
3895 if (INSN_P (x))
3897 mark_constants (PATTERN (x));
3898 return;
3901 format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3903 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3905 switch (*format_ptr++)
3907 case 'e':
3908 mark_constants (XEXP (x, i));
3909 break;
3911 case 'E':
3912 if (XVEC (x, i) != 0)
3914 register int j;
3916 for (j = 0; j < XVECLEN (x, i); j++)
3917 mark_constants (XVECEXP (x, i, j));
3919 break;
3921 case 'S':
3922 case 's':
3923 case '0':
3924 case 'i':
3925 case 'w':
3926 case 'n':
3927 case 'u':
3928 break;
3930 default:
3931 abort ();
3936 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3937 to as used. Emit referenced deferred strings. This function can
3938 be used with for_each_rtx () to mark all SYMBOL_REFs in an rtx. */
3940 static int
3941 mark_constant (current_rtx, data)
3942 rtx *current_rtx;
3943 void *data ATTRIBUTE_UNUSED;
3945 rtx x = *current_rtx;
3947 if (x == NULL_RTX)
3948 return 0;
3949 else if (GET_CODE(x) == CONST_DOUBLE)
3950 /* Never search inside a CONST_DOUBLE because CONST_DOUBLE_MEM may
3951 be a MEM but does not constitute a use of that MEM. */
3952 return -1;
3953 else if (GET_CODE (x) == SYMBOL_REF)
3955 if (CONSTANT_POOL_ADDRESS_P (x))
3957 struct pool_constant *pool = find_pool_constant (cfun, x);
3958 if (pool->mark == 0) {
3959 pool->mark = 1;
3960 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3962 else
3963 return -1;
3965 else if (STRING_POOL_ADDRESS_P (x))
3967 struct deferred_string **defstr;
3969 defstr = (struct deferred_string **)
3970 htab_find_slot_with_hash (const_str_htab, XSTR (x, 0),
3971 STRHASH (XSTR (x, 0)), NO_INSERT);
3972 if (defstr)
3974 struct deferred_string *p = *defstr;
3976 STRING_POOL_ADDRESS_P (x) = 0;
3977 output_constant_def_contents (p->exp, 0, p->labelno);
3978 htab_clear_slot (const_str_htab, (void **) defstr);
3982 return 0;
3985 /* Find all the constants whose addresses are referenced inside of EXP,
3986 and make sure assembler code with a label has been output for each one.
3987 Indicate whether an ADDR_EXPR has been encountered. */
3989 static int
3990 output_addressed_constants (exp)
3991 tree exp;
3993 int reloc = 0;
3995 /* Give the front-end a chance to convert VALUE to something that
3996 looks more like a constant to the back-end. */
3997 if (lang_expand_constant)
3998 exp = (*lang_expand_constant) (exp);
4000 switch (TREE_CODE (exp))
4002 case ADDR_EXPR:
4004 register tree constant = TREE_OPERAND (exp, 0);
4006 while (TREE_CODE (constant) == COMPONENT_REF)
4008 constant = TREE_OPERAND (constant, 0);
4011 if (TREE_CODE_CLASS (TREE_CODE (constant)) == 'c'
4012 || TREE_CODE (constant) == CONSTRUCTOR)
4013 /* No need to do anything here
4014 for addresses of variables or functions. */
4015 output_constant_def (constant, 0);
4017 reloc = 1;
4018 break;
4020 case PLUS_EXPR:
4021 case MINUS_EXPR:
4022 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
4023 reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
4024 break;
4026 case NOP_EXPR:
4027 case CONVERT_EXPR:
4028 case NON_LVALUE_EXPR:
4029 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
4030 break;
4032 case CONSTRUCTOR:
4034 register tree link;
4035 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
4036 if (TREE_VALUE (link) != 0)
4037 reloc |= output_addressed_constants (TREE_VALUE (link));
4039 break;
4041 default:
4042 break;
4044 return reloc;
4047 /* Return nonzero if VALUE is a valid constant-valued expression
4048 for use in initializing a static variable; one that can be an
4049 element of a "constant" initializer.
4051 Return null_pointer_node if the value is absolute;
4052 if it is relocatable, return the variable that determines the relocation.
4053 We assume that VALUE has been folded as much as possible;
4054 therefore, we do not need to check for such things as
4055 arithmetic-combinations of integers. */
4057 tree
4058 initializer_constant_valid_p (value, endtype)
4059 tree value;
4060 tree endtype;
4062 /* Give the front-end a chance to convert VALUE to something that
4063 looks more like a constant to the back-end. */
4064 if (lang_expand_constant)
4065 value = (*lang_expand_constant) (value);
4067 switch (TREE_CODE (value))
4069 case CONSTRUCTOR:
4070 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
4071 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
4072 && TREE_CONSTANT (value)
4073 && CONSTRUCTOR_ELTS (value))
4074 return
4075 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
4076 endtype);
4078 return TREE_STATIC (value) ? null_pointer_node : 0;
4080 case INTEGER_CST:
4081 case REAL_CST:
4082 case STRING_CST:
4083 case COMPLEX_CST:
4084 return null_pointer_node;
4086 case ADDR_EXPR:
4087 return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
4089 case NON_LVALUE_EXPR:
4090 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4092 case CONVERT_EXPR:
4093 case NOP_EXPR:
4094 /* Allow conversions between pointer types. */
4095 if (POINTER_TYPE_P (TREE_TYPE (value))
4096 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4097 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4099 /* Allow conversions between real types. */
4100 if (FLOAT_TYPE_P (TREE_TYPE (value))
4101 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4102 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4104 /* Allow length-preserving conversions between integer types. */
4105 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
4106 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
4107 && (TYPE_PRECISION (TREE_TYPE (value))
4108 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4109 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
4111 /* Allow conversions between other integer types only if
4112 explicit value. */
4113 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
4114 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4116 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4117 endtype);
4118 if (inner == null_pointer_node)
4119 return null_pointer_node;
4120 break;
4123 /* Allow (int) &foo provided int is as wide as a pointer. */
4124 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
4125 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
4126 && (TYPE_PRECISION (TREE_TYPE (value))
4127 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
4128 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4129 endtype);
4131 /* Likewise conversions from int to pointers, but also allow
4132 conversions from 0. */
4133 if (POINTER_TYPE_P (TREE_TYPE (value))
4134 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4136 if (integer_zerop (TREE_OPERAND (value, 0)))
4137 return null_pointer_node;
4138 else if (TYPE_PRECISION (TREE_TYPE (value))
4139 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
4140 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4141 endtype);
4144 /* Allow conversions to union types if the value inside is okay. */
4145 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
4146 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4147 endtype);
4148 break;
4150 case PLUS_EXPR:
4151 if (! INTEGRAL_TYPE_P (endtype)
4152 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4154 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4155 endtype);
4156 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4157 endtype);
4158 /* If either term is absolute, use the other terms relocation. */
4159 if (valid0 == null_pointer_node)
4160 return valid1;
4161 if (valid1 == null_pointer_node)
4162 return valid0;
4164 break;
4166 case MINUS_EXPR:
4167 if (! INTEGRAL_TYPE_P (endtype)
4168 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4170 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4171 endtype);
4172 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4173 endtype);
4174 /* Win if second argument is absolute. */
4175 if (valid1 == null_pointer_node)
4176 return valid0;
4177 /* Win if both arguments have the same relocation.
4178 Then the value is absolute. */
4179 if (valid0 == valid1 && valid0 != 0)
4180 return null_pointer_node;
4182 /* Since GCC guarantees that string constants are unique in the
4183 generated code, a subtraction between two copies of the same
4184 constant string is absolute. */
4185 if (valid0 && TREE_CODE (valid0) == STRING_CST &&
4186 valid1 && TREE_CODE (valid1) == STRING_CST &&
4187 TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
4188 return null_pointer_node;
4191 /* Support differences between labels. */
4192 if (INTEGRAL_TYPE_P (endtype))
4194 tree op0, op1;
4195 op0 = TREE_OPERAND (value, 0);
4196 op1 = TREE_OPERAND (value, 1);
4197 STRIP_NOPS (op0);
4198 STRIP_NOPS (op1);
4200 if (TREE_CODE (op0) == ADDR_EXPR
4201 && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
4202 && TREE_CODE (op1) == ADDR_EXPR
4203 && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
4204 return null_pointer_node;
4206 break;
4208 default:
4209 break;
4212 return 0;
4215 /* Output assembler code for constant EXP to FILE, with no label.
4216 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4217 Assumes output_addressed_constants has been done on EXP already.
4219 Generate exactly SIZE bytes of assembler data, padding at the end
4220 with zeros if necessary. SIZE must always be specified.
4222 SIZE is important for structure constructors,
4223 since trailing members may have been omitted from the constructor.
4224 It is also important for initialization of arrays from string constants
4225 since the full length of the string constant might not be wanted.
4226 It is also needed for initialization of unions, where the initializer's
4227 type is just one member, and that may not be as long as the union.
4229 There a case in which we would fail to output exactly SIZE bytes:
4230 for a structure constructor that wants to produce more than SIZE bytes.
4231 But such constructors will never be generated for any possible input. */
4233 void
4234 output_constant (exp, size)
4235 register tree exp;
4236 register int size;
4238 register enum tree_code code = TREE_CODE (TREE_TYPE (exp));
4240 /* Some front-ends use constants other than the standard
4241 language-indepdent varieties, but which may still be output
4242 directly. Give the front-end a chance to convert EXP to a
4243 language-independent representation. */
4244 if (lang_expand_constant)
4246 exp = (*lang_expand_constant) (exp);
4247 code = TREE_CODE (TREE_TYPE (exp));
4250 if (size == 0 || flag_syntax_only)
4251 return;
4253 /* Eliminate the NON_LVALUE_EXPR_EXPR that makes a cast not be an lvalue.
4254 That way we get the constant (we hope) inside it. Also, strip off any
4255 NOP_EXPR that converts between two record, union, array, or set types
4256 or a CONVERT_EXPR that converts to a union TYPE. */
4257 while ((TREE_CODE (exp) == NOP_EXPR
4258 && (TREE_TYPE (exp) == TREE_TYPE (TREE_OPERAND (exp, 0))
4259 || AGGREGATE_TYPE_P (TREE_TYPE (exp))))
4260 || (TREE_CODE (exp) == CONVERT_EXPR
4261 && code == UNION_TYPE)
4262 || TREE_CODE (exp) == NON_LVALUE_EXPR)
4264 exp = TREE_OPERAND (exp, 0);
4265 code = TREE_CODE (TREE_TYPE (exp));
4268 /* Allow a constructor with no elements for any data type.
4269 This means to fill the space with zeros. */
4270 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
4272 assemble_zeros (size);
4273 return;
4276 switch (code)
4278 case CHAR_TYPE:
4279 case BOOLEAN_TYPE:
4280 case INTEGER_TYPE:
4281 case ENUMERAL_TYPE:
4282 case POINTER_TYPE:
4283 case REFERENCE_TYPE:
4284 /* ??? What about (int)((float)(int)&foo + 4) */
4285 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
4286 || TREE_CODE (exp) == NON_LVALUE_EXPR)
4287 exp = TREE_OPERAND (exp, 0);
4289 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4290 EXPAND_INITIALIZER),
4291 size, 0))
4292 error ("initializer for integer value is too complicated");
4293 size = 0;
4294 break;
4296 case REAL_TYPE:
4297 if (TREE_CODE (exp) != REAL_CST)
4298 error ("initializer for floating value is not a floating constant");
4300 assemble_real (TREE_REAL_CST (exp),
4301 mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0));
4302 size = 0;
4303 break;
4305 case COMPLEX_TYPE:
4306 output_constant (TREE_REALPART (exp), size / 2);
4307 output_constant (TREE_IMAGPART (exp), size / 2);
4308 size -= (size / 2) * 2;
4309 break;
4311 case ARRAY_TYPE:
4312 if (TREE_CODE (exp) == CONSTRUCTOR)
4314 output_constructor (exp, size);
4315 return;
4317 else if (TREE_CODE (exp) == STRING_CST)
4319 int excess = 0;
4321 if (size > TREE_STRING_LENGTH (exp))
4323 excess = size - TREE_STRING_LENGTH (exp);
4324 size = TREE_STRING_LENGTH (exp);
4327 assemble_string (TREE_STRING_POINTER (exp), size);
4328 size = excess;
4330 else
4331 abort ();
4332 break;
4334 case RECORD_TYPE:
4335 case UNION_TYPE:
4336 if (TREE_CODE (exp) == CONSTRUCTOR)
4337 output_constructor (exp, size);
4338 else
4339 abort ();
4340 return;
4342 case SET_TYPE:
4343 if (TREE_CODE (exp) == INTEGER_CST)
4344 assemble_integer (expand_expr (exp, NULL_RTX,
4345 VOIDmode, EXPAND_INITIALIZER),
4346 size, 1);
4347 else if (TREE_CODE (exp) == CONSTRUCTOR)
4349 unsigned char *buffer = (unsigned char *) alloca (size);
4350 if (get_set_constructor_bytes (exp, buffer, size))
4351 abort ();
4352 assemble_string ((char *) buffer, size);
4354 else
4355 error ("unknown set constructor type");
4356 return;
4358 default:
4359 break; /* ??? */
4362 if (size > 0)
4363 assemble_zeros (size);
4367 /* Subroutine of output_constructor, used for computing the size of
4368 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4369 type with an unspecified upper bound. */
4371 static unsigned HOST_WIDE_INT
4372 array_size_for_constructor (val)
4373 tree val;
4375 tree max_index, i;
4377 max_index = NULL_TREE;
4378 for (i = CONSTRUCTOR_ELTS (val); i ; i = TREE_CHAIN (i))
4380 tree index = TREE_PURPOSE (i);
4382 if (TREE_CODE (index) == RANGE_EXPR)
4383 index = TREE_OPERAND (index, 1);
4384 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4385 max_index = index;
4388 if (max_index == NULL_TREE)
4389 return 0;
4391 /* Compute the total number of array elements. */
4392 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
4393 convert (sizetype,
4394 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
4395 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
4397 /* Multiply by the array element unit size to find number of bytes. */
4398 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4400 return tree_low_cst (i, 1);
4403 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4404 Generate at least SIZE bytes, padding if necessary. */
4406 static void
4407 output_constructor (exp, size)
4408 tree exp;
4409 int size;
4411 tree type = TREE_TYPE (exp);
4412 register tree link, field = 0;
4413 tree min_index = 0;
4414 /* Number of bytes output or skipped so far.
4415 In other words, current position within the constructor. */
4416 HOST_WIDE_INT total_bytes = 0;
4417 /* Non-zero means BYTE contains part of a byte, to be output. */
4418 int byte_buffer_in_use = 0;
4419 register int byte = 0;
4421 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
4422 abort ();
4424 if (TREE_CODE (type) == RECORD_TYPE)
4425 field = TYPE_FIELDS (type);
4427 if (TREE_CODE (type) == ARRAY_TYPE
4428 && TYPE_DOMAIN (type) != 0)
4429 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4431 /* As LINK goes through the elements of the constant,
4432 FIELD goes through the structure fields, if the constant is a structure.
4433 if the constant is a union, then we override this,
4434 by getting the field from the TREE_LIST element.
4435 But the constant could also be an array. Then FIELD is zero.
4437 There is always a maximum of one element in the chain LINK for unions
4438 (even if the initializer in a source program incorrectly contains
4439 more one). */
4440 for (link = CONSTRUCTOR_ELTS (exp);
4441 link;
4442 link = TREE_CHAIN (link),
4443 field = field ? TREE_CHAIN (field) : 0)
4445 tree val = TREE_VALUE (link);
4446 tree index = 0;
4448 /* The element in a union constructor specifies the proper field
4449 or index. */
4450 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4451 || TREE_CODE (type) == QUAL_UNION_TYPE)
4452 && TREE_PURPOSE (link) != 0)
4453 field = TREE_PURPOSE (link);
4455 else if (TREE_CODE (type) == ARRAY_TYPE)
4456 index = TREE_PURPOSE (link);
4458 /* Eliminate the marker that makes a cast not be an lvalue. */
4459 if (val != 0)
4460 STRIP_NOPS (val);
4462 if (index && TREE_CODE (index) == RANGE_EXPR)
4464 unsigned HOST_WIDE_INT fieldsize
4465 = int_size_in_bytes (TREE_TYPE (type));
4466 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4467 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4468 HOST_WIDE_INT index;
4470 for (index = lo_index; index <= hi_index; index++)
4472 /* Output the element's initial value. */
4473 if (val == 0)
4474 assemble_zeros (fieldsize);
4475 else
4476 output_constant (val, fieldsize);
4478 /* Count its size. */
4479 total_bytes += fieldsize;
4482 else if (field == 0 || !DECL_BIT_FIELD (field))
4484 /* An element that is not a bit-field. */
4486 unsigned HOST_WIDE_INT fieldsize;
4487 /* Since this structure is static,
4488 we know the positions are constant. */
4489 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4491 if (index != 0)
4492 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4493 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4495 /* Output any buffered-up bit-fields preceding this element. */
4496 if (byte_buffer_in_use)
4498 ASM_OUTPUT_BYTE (asm_out_file, byte);
4499 total_bytes++;
4500 byte_buffer_in_use = 0;
4503 /* Advance to offset of this element.
4504 Note no alignment needed in an array, since that is guaranteed
4505 if each element has the proper size. */
4506 if ((field != 0 || index != 0) && pos != total_bytes)
4508 assemble_zeros (pos - total_bytes);
4509 total_bytes = pos;
4512 else if (field != 0 && DECL_PACKED (field))
4513 /* Some assemblers automaticallly align a datum according to its
4514 size if no align directive is specified. The datum, however,
4515 may be declared with 'packed' attribute, so we have to disable
4516 such a feature. */
4517 ASM_OUTPUT_ALIGN (asm_out_file, 0);
4519 /* Determine size this element should occupy. */
4520 if (field)
4522 fieldsize = 0;
4524 /* If this is an array with an unspecified upper bound,
4525 the initializer determines the size. */
4526 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4527 but we cannot do this until the deprecated support for
4528 initializing zero-length array members is removed. */
4529 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4530 && TYPE_DOMAIN (TREE_TYPE (field))
4531 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4533 fieldsize = array_size_for_constructor (val);
4534 /* Given a non-empty initialization, this field had
4535 better be last. */
4536 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4537 abort ();
4539 else if (DECL_SIZE_UNIT (field))
4541 /* ??? This can't be right. If the decl size overflows
4542 a host integer we will silently emit no data. */
4543 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4544 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4547 else
4548 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4550 /* Output the element's initial value. */
4551 if (val == 0)
4552 assemble_zeros (fieldsize);
4553 else
4554 output_constant (val, fieldsize);
4556 /* Count its size. */
4557 total_bytes += fieldsize;
4559 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4560 error ("invalid initial value for member `%s'",
4561 IDENTIFIER_POINTER (DECL_NAME (field)));
4562 else
4564 /* Element that is a bit-field. */
4566 HOST_WIDE_INT next_offset = int_bit_position (field);
4567 HOST_WIDE_INT end_offset
4568 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4570 if (val == 0)
4571 val = integer_zero_node;
4573 /* If this field does not start in this (or, next) byte,
4574 skip some bytes. */
4575 if (next_offset / BITS_PER_UNIT != total_bytes)
4577 /* Output remnant of any bit field in previous bytes. */
4578 if (byte_buffer_in_use)
4580 ASM_OUTPUT_BYTE (asm_out_file, byte);
4581 total_bytes++;
4582 byte_buffer_in_use = 0;
4585 /* If still not at proper byte, advance to there. */
4586 if (next_offset / BITS_PER_UNIT != total_bytes)
4588 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4589 total_bytes = next_offset / BITS_PER_UNIT;
4593 if (! byte_buffer_in_use)
4594 byte = 0;
4596 /* We must split the element into pieces that fall within
4597 separate bytes, and combine each byte with previous or
4598 following bit-fields. */
4600 /* next_offset is the offset n fbits from the beginning of
4601 the structure to the next bit of this element to be processed.
4602 end_offset is the offset of the first bit past the end of
4603 this element. */
4604 while (next_offset < end_offset)
4606 int this_time;
4607 int shift;
4608 HOST_WIDE_INT value;
4609 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4610 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4612 /* Advance from byte to byte
4613 within this element when necessary. */
4614 while (next_byte != total_bytes)
4616 ASM_OUTPUT_BYTE (asm_out_file, byte);
4617 total_bytes++;
4618 byte = 0;
4621 /* Number of bits we can process at once
4622 (all part of the same byte). */
4623 this_time = MIN (end_offset - next_offset,
4624 BITS_PER_UNIT - next_bit);
4625 if (BYTES_BIG_ENDIAN)
4627 /* On big-endian machine, take the most significant bits
4628 first (of the bits that are significant)
4629 and put them into bytes from the most significant end. */
4630 shift = end_offset - next_offset - this_time;
4632 /* Don't try to take a bunch of bits that cross
4633 the word boundary in the INTEGER_CST. We can
4634 only select bits from the LOW or HIGH part
4635 not from both. */
4636 if (shift < HOST_BITS_PER_WIDE_INT
4637 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4639 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4640 shift = HOST_BITS_PER_WIDE_INT;
4643 /* Now get the bits from the appropriate constant word. */
4644 if (shift < HOST_BITS_PER_WIDE_INT)
4645 value = TREE_INT_CST_LOW (val);
4646 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4648 value = TREE_INT_CST_HIGH (val);
4649 shift -= HOST_BITS_PER_WIDE_INT;
4651 else
4652 abort ();
4654 /* Get the result. This works only when:
4655 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4656 byte |= (((value >> shift)
4657 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4658 << (BITS_PER_UNIT - this_time - next_bit));
4660 else
4662 /* On little-endian machines,
4663 take first the least significant bits of the value
4664 and pack them starting at the least significant
4665 bits of the bytes. */
4666 shift = next_offset - int_bit_position (field);
4668 /* Don't try to take a bunch of bits that cross
4669 the word boundary in the INTEGER_CST. We can
4670 only select bits from the LOW or HIGH part
4671 not from both. */
4672 if (shift < HOST_BITS_PER_WIDE_INT
4673 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4674 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4676 /* Now get the bits from the appropriate constant word. */
4677 if (shift < HOST_BITS_PER_WIDE_INT)
4678 value = TREE_INT_CST_LOW (val);
4679 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4681 value = TREE_INT_CST_HIGH (val);
4682 shift -= HOST_BITS_PER_WIDE_INT;
4684 else
4685 abort ();
4687 /* Get the result. This works only when:
4688 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4689 byte |= (((value >> shift)
4690 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4691 << next_bit);
4694 next_offset += this_time;
4695 byte_buffer_in_use = 1;
4700 if (byte_buffer_in_use)
4702 ASM_OUTPUT_BYTE (asm_out_file, byte);
4703 total_bytes++;
4706 if (total_bytes < size)
4707 assemble_zeros (size - total_bytes);
4710 #ifdef HANDLE_PRAGMA_WEAK
4711 /* Add function NAME to the weak symbols list. VALUE is a weak alias
4712 associatd with NAME. */
4715 add_weak (name, value)
4716 const char *name;
4717 const char *value;
4719 struct weak_syms *weak;
4721 weak = (struct weak_syms *) permalloc (sizeof (struct weak_syms));
4723 if (weak == NULL)
4724 return 0;
4726 weak->next = weak_decls;
4727 weak->name = name;
4728 weak->value = value;
4729 weak_decls = weak;
4731 return 1;
4733 #endif /* HANDLE_PRAGMA_WEAK */
4735 /* Declare DECL to be a weak symbol. */
4737 void
4738 declare_weak (decl)
4739 tree decl;
4741 if (! TREE_PUBLIC (decl))
4742 error_with_decl (decl, "weak declaration of `%s' must be public");
4743 else if (TREE_ASM_WRITTEN (decl))
4744 error_with_decl (decl, "weak declaration of `%s' must precede definition");
4745 else if (SUPPORTS_WEAK)
4746 DECL_WEAK (decl) = 1;
4747 #ifdef HANDLE_PRAGMA_WEAK
4748 add_weak (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), NULL);
4749 #endif
4752 /* Emit any pending weak declarations. */
4754 #ifdef HANDLE_PRAGMA_WEAK
4755 struct weak_syms * weak_decls;
4756 #endif
4758 void
4759 weak_finish ()
4761 #ifdef HANDLE_PRAGMA_WEAK
4762 if (HANDLE_PRAGMA_WEAK)
4764 struct weak_syms *t;
4765 for (t = weak_decls; t; t = t->next)
4767 if (t->name)
4769 ASM_WEAKEN_LABEL (asm_out_file, t->name);
4770 if (t->value)
4771 ASM_OUTPUT_DEF (asm_out_file, t->name, t->value);
4775 #endif
4778 /* Remove NAME from the pending list of weak symbols. This prevents
4779 the compiler from emitting multiple .weak directives which confuses
4780 some assemblers. */
4781 #ifdef ASM_WEAKEN_LABEL
4782 static void
4783 remove_from_pending_weak_list (name)
4784 const char *name ATTRIBUTE_UNUSED;
4786 #ifdef HANDLE_PRAGMA_WEAK
4787 if (HANDLE_PRAGMA_WEAK)
4789 struct weak_syms *t;
4790 for (t = weak_decls; t; t = t->next)
4792 if (t->name && strcmp (name, t->name) == 0)
4793 t->name = NULL;
4796 #endif
4798 #endif
4800 void
4801 assemble_alias (decl, target)
4802 tree decl, target ATTRIBUTE_UNUSED;
4804 const char *name;
4806 /* We must force creation of DECL_RTL for debug info generation, even though
4807 we don't use it here. */
4808 make_decl_rtl (decl, NULL);
4810 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4812 #ifdef ASM_OUTPUT_DEF
4813 /* Make name accessible from other files, if appropriate. */
4815 if (TREE_PUBLIC (decl))
4817 #ifdef ASM_WEAKEN_LABEL
4818 if (DECL_WEAK (decl))
4820 ASM_WEAKEN_LABEL (asm_out_file, name);
4821 /* Remove this function from the pending weak list so that
4822 we do not emit multiple .weak directives for it. */
4823 remove_from_pending_weak_list
4824 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4826 else
4827 #endif
4828 ASM_GLOBALIZE_LABEL (asm_out_file, name);
4831 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4832 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4833 #else
4834 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4835 #endif
4836 TREE_ASM_WRITTEN (decl) = 1;
4837 #else
4838 #ifdef ASM_OUTPUT_WEAK_ALIAS
4839 if (! DECL_WEAK (decl))
4840 warning ("only weak aliases are supported in this configuration");
4842 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4843 TREE_ASM_WRITTEN (decl) = 1;
4844 #else
4845 warning ("alias definitions not supported in this configuration; ignored");
4846 #endif
4847 #endif
4850 /* Returns 1 if the target configuration supports defining public symbols
4851 so that one of them will be chosen at link time instead of generating a
4852 multiply-defined symbol error, whether through the use of weak symbols or
4853 a target-specific mechanism for having duplicates discarded. */
4856 supports_one_only ()
4858 if (SUPPORTS_ONE_ONLY)
4859 return 1;
4860 return SUPPORTS_WEAK;
4863 /* Set up DECL as a public symbol that can be defined in multiple
4864 translation units without generating a linker error. */
4866 void
4867 make_decl_one_only (decl)
4868 tree decl;
4870 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4871 abort ();
4873 TREE_PUBLIC (decl) = 1;
4875 if (TREE_CODE (decl) == VAR_DECL
4876 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4877 DECL_COMMON (decl) = 1;
4878 else if (SUPPORTS_ONE_ONLY)
4880 #ifdef MAKE_DECL_ONE_ONLY
4881 MAKE_DECL_ONE_ONLY (decl);
4882 #endif
4883 DECL_ONE_ONLY (decl) = 1;
4885 else if (SUPPORTS_WEAK)
4886 DECL_WEAK (decl) = 1;
4887 else
4888 abort ();
4891 void
4892 init_varasm_once ()
4894 const_str_htab = htab_create (128, const_str_htab_hash, const_str_htab_eq,
4895 const_str_htab_del);
4896 ggc_add_root (const_hash_table, MAX_HASH_TABLE, sizeof const_hash_table[0],
4897 mark_const_hash_entry);
4898 ggc_add_root (&const_str_htab, 1, sizeof const_str_htab,
4899 mark_const_str_htab);
4902 /* Extra support for EH values. */
4903 void
4904 assemble_eh_label (name)
4905 const char *name;
4907 #ifdef ASM_OUTPUT_EH_LABEL
4908 ASM_OUTPUT_EH_LABEL (asm_out_file, name);
4909 #else
4910 assemble_label (name);
4911 #endif
4914 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
4916 void
4917 assemble_eh_align (align)
4918 int align;
4920 #ifdef ASM_OUTPUT_EH_ALIGN
4921 if (align > BITS_PER_UNIT)
4922 ASM_OUTPUT_EH_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
4923 #else
4924 assemble_align (align);
4925 #endif
4929 /* On some platforms, we may want to specify a special mechansim to
4930 output EH data when generating with a function.. */
4932 assemble_eh_integer (x, size, force)
4933 rtx x;
4934 int size;
4935 int force;
4938 switch (size)
4940 #ifdef ASM_OUTPUT_EH_CHAR
4941 case 1:
4942 ASM_OUTPUT_EH_CHAR (asm_out_file, x);
4943 return 1;
4944 #endif
4946 #ifdef ASM_OUTPUT_EH_SHORT
4947 case 2:
4948 ASM_OUTPUT_EH_SHORT (asm_out_file, x);
4949 return 1;
4950 #endif
4952 #ifdef ASM_OUTPUT_EH_INT
4953 case 4:
4954 ASM_OUTPUT_EH_INT (asm_out_file, x);
4955 return 1;
4956 #endif
4958 #ifdef ASM_OUTPUT_EH_DOUBLE_INT
4959 case 8:
4960 ASM_OUTPUT_EH_DOUBLE_INT (asm_out_file, x);
4961 return 1;
4962 #endif
4964 default:
4965 break;
4967 return (assemble_integer (x, size, force));