varasm.c (immed_real_const_1): Don't elide special cases for nested functions.
[gcc.git] / gcc / varasm.c
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.
4
5 This file is part of GNU CC.
6
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.
11
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.
16
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. */
21
22
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.
26
27 We also output the assembler code for constants stored in memory
28 and are responsible for combining constants with the same value. */
29
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 "obstack.h"
44 #include "hashtab.h"
45 #include "c-pragma.h"
46 #include "ggc.h"
47 #include "tm_p.h"
48 #include "debug.h"
49
50 #ifdef XCOFF_DEBUGGING_INFO
51 #include "xcoffout.h" /* Needed for external data
52 declarations for e.g. AIX 4.x. */
53 #endif
54
55 #ifndef TRAMPOLINE_ALIGNMENT
56 #define TRAMPOLINE_ALIGNMENT FUNCTION_BOUNDARY
57 #endif
58
59 #ifndef ASM_STABS_OP
60 #define ASM_STABS_OP "\t.stabs\t"
61 #endif
62
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)
66
67 /* The (assembler) name of the first globally-visible object output. */
68 const char *first_global_object_name;
69 const char *weak_global_object_name;
70
71 extern struct obstack permanent_obstack;
72 #define obstack_chunk_alloc xmalloc
73
74 struct addr_const;
75 struct constant_descriptor;
76 struct rtx_const;
77 struct pool_constant;
78
79 #define MAX_RTX_HASH_TABLE 61
80
81 struct varasm_status
82 {
83 /* Hash facility for making memory-constants
84 from constant rtl-expressions. It is used on RISC machines
85 where immediate integer arguments and constant addresses are restricted
86 so that such constants must be stored in memory.
87
88 This pool of constants is reinitialized for each function
89 so each function gets its own constants-pool that comes right before
90 it. */
91 struct constant_descriptor **x_const_rtx_hash_table;
92 struct pool_constant **x_const_rtx_sym_hash_table;
93
94 /* Pointers to first and last constant in pool. */
95 struct pool_constant *x_first_pool, *x_last_pool;
96
97 /* Current offset in constant pool (does not include any machine-specific
98 header). */
99 int x_pool_offset;
100
101 /* Chain of all CONST_DOUBLE rtx's constructed for the current function.
102 They are chained through the CONST_DOUBLE_CHAIN.
103 A CONST_DOUBLE rtx has CONST_DOUBLE_MEM != cc0_rtx iff it is on this chain.
104 In that case, CONST_DOUBLE_MEM is either a MEM,
105 or const0_rtx if no MEM has been made for this CONST_DOUBLE yet. */
106 rtx x_const_double_chain;
107 };
108
109 #define const_rtx_hash_table (cfun->varasm->x_const_rtx_hash_table)
110 #define const_rtx_sym_hash_table (cfun->varasm->x_const_rtx_sym_hash_table)
111 #define first_pool (cfun->varasm->x_first_pool)
112 #define last_pool (cfun->varasm->x_last_pool)
113 #define pool_offset (cfun->varasm->x_pool_offset)
114 #define const_double_chain (cfun->varasm->x_const_double_chain)
115
116 /* Number for making the label on the next
117 constant that is stored in memory. */
118
119 int const_labelno;
120
121 /* Number for making the label on the next
122 static variable internal to a function. */
123
124 int var_labelno;
125
126 /* Carry information from ASM_DECLARE_OBJECT_NAME
127 to ASM_FINISH_DECLARE_OBJECT. */
128
129 int size_directive_output;
130
131 /* The last decl for which assemble_variable was called,
132 if it did ASM_DECLARE_OBJECT_NAME.
133 If the last call to assemble_variable didn't do that,
134 this holds 0. */
135
136 tree last_assemble_variable_decl;
137
138 static const char *strip_reg_name PARAMS ((const char *));
139 static int contains_pointers_p PARAMS ((tree));
140 static void decode_addr_const PARAMS ((tree, struct addr_const *));
141 static int const_hash PARAMS ((tree));
142 static int compare_constant PARAMS ((tree,
143 struct constant_descriptor *));
144 static const unsigned char *compare_constant_1 PARAMS ((tree, const unsigned char *));
145 static struct constant_descriptor *record_constant PARAMS ((tree));
146 static void record_constant_1 PARAMS ((tree));
147 static tree copy_constant PARAMS ((tree));
148 static void output_constant_def_contents PARAMS ((tree, int, int));
149 static void decode_rtx_const PARAMS ((enum machine_mode, rtx,
150 struct rtx_const *));
151 static int const_hash_rtx PARAMS ((enum machine_mode, rtx));
152 static int compare_constant_rtx PARAMS ((enum machine_mode, rtx,
153 struct constant_descriptor *));
154 static struct constant_descriptor *record_constant_rtx PARAMS ((enum machine_mode,
155 rtx));
156 static struct pool_constant *find_pool_constant PARAMS ((struct function *, rtx));
157 static void mark_constant_pool PARAMS ((void));
158 static void mark_constants PARAMS ((rtx));
159 static int mark_constant PARAMS ((rtx *current_rtx, void *data));
160 static int output_addressed_constants PARAMS ((tree));
161 static void output_after_function_constants PARAMS ((void));
162 static unsigned HOST_WIDE_INT array_size_for_constructor PARAMS ((tree));
163 static void output_constructor PARAMS ((tree, int));
164 #ifdef ASM_WEAKEN_LABEL
165 static void remove_from_pending_weak_list PARAMS ((const char *));
166 #endif
167 #ifdef ASM_OUTPUT_BSS
168 static void asm_output_bss PARAMS ((FILE *, tree, const char *, int, int));
169 #endif
170 #ifdef BSS_SECTION_ASM_OP
171 #ifdef ASM_OUTPUT_ALIGNED_BSS
172 static void asm_output_aligned_bss PARAMS ((FILE *, tree, const char *,
173 int, int));
174 #endif
175 #endif /* BSS_SECTION_ASM_OP */
176 static void mark_pool_constant PARAMS ((struct pool_constant *));
177 static void mark_const_hash_entry PARAMS ((void *));
178 static int mark_const_str_htab_1 PARAMS ((void **, void *));
179 static void mark_const_str_htab PARAMS ((void *));
180 static hashval_t const_str_htab_hash PARAMS ((const void *x));
181 static int const_str_htab_eq PARAMS ((const void *x, const void *y));
182 static void const_str_htab_del PARAMS ((void *));
183 static void asm_emit_uninitialised PARAMS ((tree, const char*, int, int));
184 \f
185 static enum in_section { no_section, in_text, in_data, in_named
186 #ifdef BSS_SECTION_ASM_OP
187 , in_bss
188 #endif
189 #ifdef EH_FRAME_SECTION_ASM_OP
190 , in_eh_frame
191 #endif
192 #ifdef EXTRA_SECTIONS
193 , EXTRA_SECTIONS
194 #endif
195 } in_section = no_section;
196
197 /* Return a non-zero value if DECL has a section attribute. */
198 #ifndef IN_NAMED_SECTION
199 #define IN_NAMED_SECTION(DECL) \
200 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
201 && DECL_SECTION_NAME (DECL) != NULL_TREE)
202 #endif
203
204 /* Text of section name when in_section == in_named. */
205 static const char *in_named_name;
206
207 /* Define functions like text_section for any extra sections. */
208 #ifdef EXTRA_SECTION_FUNCTIONS
209 EXTRA_SECTION_FUNCTIONS
210 #endif
211
212 /* Tell assembler to switch to text section. */
213
214 void
215 text_section ()
216 {
217 if (in_section != in_text)
218 {
219 fprintf (asm_out_file, "%s\n", TEXT_SECTION_ASM_OP);
220 in_section = in_text;
221 }
222 }
223
224 /* Tell assembler to switch to data section. */
225
226 void
227 data_section ()
228 {
229 if (in_section != in_data)
230 {
231 if (flag_shared_data)
232 {
233 #ifdef SHARED_SECTION_ASM_OP
234 fprintf (asm_out_file, "%s\n", SHARED_SECTION_ASM_OP);
235 #else
236 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
237 #endif
238 }
239 else
240 fprintf (asm_out_file, "%s\n", DATA_SECTION_ASM_OP);
241
242 in_section = in_data;
243 }
244 }
245 /* Tell assembler to ALWAYS switch to data section, in case
246 it's not sure where it it. */
247
248 void
249 force_data_section ()
250 {
251 in_section = no_section;
252 data_section ();
253 }
254
255 /* Tell assembler to switch to read-only data section. This is normally
256 the text section. */
257
258 void
259 readonly_data_section ()
260 {
261 #ifdef READONLY_DATA_SECTION
262 READONLY_DATA_SECTION (); /* Note this can call data_section. */
263 #else
264 text_section ();
265 #endif
266 }
267
268 /* Determine if we're in the text section. */
269
270 int
271 in_text_section ()
272 {
273 return in_section == in_text;
274 }
275
276 /* Determine if we're in the data section. */
277
278 int
279 in_data_section ()
280 {
281 return in_section == in_data;
282 }
283
284 /* Tell assembler to change to section NAME for DECL.
285 If DECL is NULL, just switch to section NAME.
286 If NAME is NULL, get the name from DECL.
287 If RELOC is 1, the initializer for DECL contains relocs. */
288
289 void
290 named_section (decl, name, reloc)
291 tree decl;
292 const char *name;
293 int reloc ATTRIBUTE_UNUSED;
294 {
295 if (decl != NULL_TREE && !DECL_P (decl))
296 abort ();
297 if (name == NULL)
298 name = TREE_STRING_POINTER (DECL_SECTION_NAME (decl));
299
300 if (in_section != in_named || strcmp (name, in_named_name))
301 {
302 #ifdef ASM_OUTPUT_SECTION_NAME
303 ASM_OUTPUT_SECTION_NAME (asm_out_file, decl, name, reloc);
304 #else
305 /* Section attributes are not supported if this macro isn't provided -
306 some host formats don't support them at all. The front-end should
307 already have flagged this as an error. */
308 abort ();
309 #endif
310
311 in_named_name = ggc_strdup (name);
312 in_section = in_named;
313 }
314 }
315
316 #ifdef BSS_SECTION_ASM_OP
317
318 /* Tell the assembler to switch to the bss section. */
319
320 void
321 bss_section ()
322 {
323 if (in_section != in_bss)
324 {
325 #ifdef SHARED_BSS_SECTION_ASM_OP
326 if (flag_shared_data)
327 fprintf (asm_out_file, "%s\n", SHARED_BSS_SECTION_ASM_OP);
328 else
329 #endif
330 fprintf (asm_out_file, "%s\n", BSS_SECTION_ASM_OP);
331
332 in_section = in_bss;
333 }
334 }
335
336 #ifdef ASM_OUTPUT_BSS
337
338 /* Utility function for ASM_OUTPUT_BSS for targets to use if
339 they don't support alignments in .bss.
340 ??? It is believed that this function will work in most cases so such
341 support is localized here. */
342
343 static void
344 asm_output_bss (file, decl, name, size, rounded)
345 FILE *file;
346 tree decl ATTRIBUTE_UNUSED;
347 const char *name;
348 int size ATTRIBUTE_UNUSED, rounded;
349 {
350 ASM_GLOBALIZE_LABEL (file, name);
351 bss_section ();
352 #ifdef ASM_DECLARE_OBJECT_NAME
353 last_assemble_variable_decl = decl;
354 ASM_DECLARE_OBJECT_NAME (file, name, decl);
355 #else
356 /* Standard thing is just output label for the object. */
357 ASM_OUTPUT_LABEL (file, name);
358 #endif /* ASM_DECLARE_OBJECT_NAME */
359 ASM_OUTPUT_SKIP (file, rounded);
360 }
361
362 #endif
363
364 #ifdef ASM_OUTPUT_ALIGNED_BSS
365
366 /* Utility function for targets to use in implementing
367 ASM_OUTPUT_ALIGNED_BSS.
368 ??? It is believed that this function will work in most cases so such
369 support is localized here. */
370
371 static void
372 asm_output_aligned_bss (file, decl, name, size, align)
373 FILE *file;
374 tree decl;
375 const char *name;
376 int size, align;
377 {
378 ASM_GLOBALIZE_LABEL (file, name);
379 bss_section ();
380 ASM_OUTPUT_ALIGN (file, floor_log2 (align / BITS_PER_UNIT));
381 #ifdef ASM_DECLARE_OBJECT_NAME
382 last_assemble_variable_decl = decl;
383 ASM_DECLARE_OBJECT_NAME (file, name, decl);
384 #else
385 /* Standard thing is just output label for the object. */
386 ASM_OUTPUT_LABEL (file, name);
387 #endif /* ASM_DECLARE_OBJECT_NAME */
388 ASM_OUTPUT_SKIP (file, size ? size : 1);
389 }
390
391 #endif
392
393 #endif /* BSS_SECTION_ASM_OP */
394
395 #ifdef EH_FRAME_SECTION_ASM_OP
396 void
397 eh_frame_section ()
398 {
399 if (in_section != in_eh_frame)
400 {
401 fprintf (asm_out_file, "%s\n", EH_FRAME_SECTION_ASM_OP);
402 in_section = in_eh_frame;
403 }
404 }
405 #endif
406
407 /* Switch to the section for function DECL.
408
409 If DECL is NULL_TREE, switch to the text section.
410 ??? It's not clear that we will ever be passed NULL_TREE, but it's
411 safer to handle it. */
412
413 void
414 function_section (decl)
415 tree decl;
416 {
417 if (decl != NULL_TREE
418 && DECL_SECTION_NAME (decl) != NULL_TREE)
419 named_section (decl, (char *) 0, 0);
420 else
421 text_section ();
422 }
423
424 /* Switch to section for variable DECL.
425
426 RELOC is the `reloc' argument to SELECT_SECTION. */
427
428 void
429 variable_section (decl, reloc)
430 tree decl;
431 int reloc;
432 {
433 if (IN_NAMED_SECTION (decl))
434 named_section (decl, NULL, reloc);
435 else
436 {
437 /* C++ can have const variables that get initialized from constructors,
438 and thus can not be in a readonly section. We prevent this by
439 verifying that the initial value is constant for objects put in a
440 readonly section.
441
442 error_mark_node is used by the C front end to indicate that the
443 initializer has not been seen yet. In this case, we assume that
444 the initializer must be constant.
445
446 C++ uses error_mark_node for variables that have complicated
447 initializers, but these variables go in BSS so we won't be called
448 for them. */
449
450 #ifdef SELECT_SECTION
451 SELECT_SECTION (decl, reloc);
452 #else
453 if (DECL_READONLY_SECTION (decl, reloc))
454 readonly_data_section ();
455 else
456 data_section ();
457 #endif
458 }
459 }
460
461 /* Tell assembler to switch to the section for the exception handling
462 table. */
463
464 void
465 exception_section ()
466 {
467 #if defined (EXCEPTION_SECTION)
468 EXCEPTION_SECTION ();
469 #else
470 #ifdef ASM_OUTPUT_SECTION_NAME
471 named_section (NULL_TREE, ".gcc_except_table", 0);
472 #else
473 if (flag_pic)
474 data_section ();
475 else
476 readonly_data_section ();
477 #endif
478 #endif
479 }
480 \f
481 /* Given NAME, a putative register name, discard any customary prefixes. */
482
483 static const char *
484 strip_reg_name (name)
485 const char *name;
486 {
487 #ifdef REGISTER_PREFIX
488 if (!strncmp (name, REGISTER_PREFIX, strlen (REGISTER_PREFIX)))
489 name += strlen (REGISTER_PREFIX);
490 #endif
491 if (name[0] == '%' || name[0] == '#')
492 name++;
493 return name;
494 }
495 \f
496 /* Decode an `asm' spec for a declaration as a register name.
497 Return the register number, or -1 if nothing specified,
498 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
499 or -3 if ASMSPEC is `cc' and is not recognized,
500 or -4 if ASMSPEC is `memory' and is not recognized.
501 Accept an exact spelling or a decimal number.
502 Prefixes such as % are optional. */
503
504 int
505 decode_reg_name (asmspec)
506 const char *asmspec;
507 {
508 if (asmspec != 0)
509 {
510 int i;
511
512 /* Get rid of confusing prefixes. */
513 asmspec = strip_reg_name (asmspec);
514
515 /* Allow a decimal number as a "register name". */
516 for (i = strlen (asmspec) - 1; i >= 0; i--)
517 if (! (asmspec[i] >= '0' && asmspec[i] <= '9'))
518 break;
519 if (asmspec[0] != 0 && i < 0)
520 {
521 i = atoi (asmspec);
522 if (i < FIRST_PSEUDO_REGISTER && i >= 0)
523 return i;
524 else
525 return -2;
526 }
527
528 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
529 if (reg_names[i][0]
530 && ! strcmp (asmspec, strip_reg_name (reg_names[i])))
531 return i;
532
533 #ifdef ADDITIONAL_REGISTER_NAMES
534 {
535 static struct { const char *name; int number; } table[]
536 = ADDITIONAL_REGISTER_NAMES;
537
538 for (i = 0; i < (int) ARRAY_SIZE (table); i++)
539 if (! strcmp (asmspec, table[i].name))
540 return table[i].number;
541 }
542 #endif /* ADDITIONAL_REGISTER_NAMES */
543
544 if (!strcmp (asmspec, "memory"))
545 return -4;
546
547 if (!strcmp (asmspec, "cc"))
548 return -3;
549
550 return -2;
551 }
552
553 return -1;
554 }
555 \f
556 /* Create the DECL_RTL for a VAR_DECL or FUNCTION_DECL. DECL should
557 have static storage duration. In other words, it should not be an
558 automatic variable, including PARM_DECLs.
559
560 There is, however, one exception: this function handles variables
561 explicitly placed in a particular register by the user.
562
563 ASMSPEC, if not 0, is the string which the user specified as the
564 assembler symbol name.
565
566 This is never called for PARM_DECL nodes. */
567
568 void
569 make_decl_rtl (decl, asmspec)
570 tree decl;
571 const char *asmspec;
572 {
573 int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
574 const char *name = 0;
575 const char *new_name = 0;
576 int reg_number;
577
578 /* Check that we are not being given an automatic variable. */
579 /* A weak alias has TREE_PUBLIC set but not the other bits. */
580 if (TREE_CODE (decl) == PARM_DECL
581 || TREE_CODE (decl) == RESULT_DECL
582 || (TREE_CODE (decl) == VAR_DECL
583 && !TREE_STATIC (decl)
584 && !TREE_PUBLIC (decl)
585 && !DECL_EXTERNAL (decl)
586 && !DECL_REGISTER (decl)))
587 abort ();
588 /* And that we were not given a type or a label. */
589 else if (TREE_CODE (decl) == TYPE_DECL
590 || TREE_CODE (decl) == LABEL_DECL)
591 abort ();
592
593 /* For a duplicate declaration, we can be called twice on the
594 same DECL node. Don't discard the RTL already made. */
595 if (DECL_RTL_SET_P (decl))
596 {
597 /* If the old RTL had the wrong mode, fix the mode. */
598 if (GET_MODE (DECL_RTL (decl)) != DECL_MODE (decl))
599 {
600 rtx rtl = DECL_RTL (decl);
601 PUT_MODE (rtl, DECL_MODE (decl));
602 }
603
604 /* ??? Another way to do this would be to do what halfpic.c does
605 and maintain a hashed table of such critters. */
606 /* ??? Another way to do this would be to pass a flag bit to
607 ENCODE_SECTION_INFO saying whether this is a new decl or not. */
608 /* Let the target reassign the RTL if it wants.
609 This is necessary, for example, when one machine specific
610 decl attribute overrides another. */
611 #ifdef REDO_SECTION_INFO_P
612 if (REDO_SECTION_INFO_P (decl))
613 ENCODE_SECTION_INFO (decl);
614 #endif
615 return;
616 }
617
618 new_name = name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
619
620 reg_number = decode_reg_name (asmspec);
621 if (reg_number == -2)
622 {
623 /* ASMSPEC is given, and not the name of a register. Mark the
624 name with a star so assemble_name won't munge it. */
625 char *starred = alloca (strlen (asmspec) + 2);
626 starred[0] = '*';
627 strcpy (starred + 1, asmspec);
628 new_name = starred;
629 }
630
631 if (TREE_CODE (decl) != FUNCTION_DECL && DECL_REGISTER (decl))
632 {
633 /* First detect errors in declaring global registers. */
634 if (reg_number == -1)
635 error_with_decl (decl, "register name not specified for `%s'");
636 else if (reg_number < 0)
637 error_with_decl (decl, "invalid register name for `%s'");
638 else if (TYPE_MODE (TREE_TYPE (decl)) == BLKmode)
639 error_with_decl (decl,
640 "data type of `%s' isn't suitable for a register");
641 else if (! HARD_REGNO_MODE_OK (reg_number, TYPE_MODE (TREE_TYPE (decl))))
642 error_with_decl (decl,
643 "register specified for `%s' isn't suitable for data type");
644 /* Now handle properly declared static register variables. */
645 else
646 {
647 int nregs;
648
649 if (DECL_INITIAL (decl) != 0 && TREE_STATIC (decl))
650 {
651 DECL_INITIAL (decl) = 0;
652 error ("global register variable has initial value");
653 }
654 if (TREE_THIS_VOLATILE (decl))
655 warning ("volatile register variables don't work as you might wish");
656
657 /* If the user specified one of the eliminables registers here,
658 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
659 confused with that register and be eliminated. Although this
660 usage is somewhat suspect, we nevertheless use the following
661 kludge to avoid setting DECL_RTL to frame_pointer_rtx. */
662
663 SET_DECL_RTL (decl,
664 gen_rtx_REG (DECL_MODE (decl),
665 FIRST_PSEUDO_REGISTER));
666 REGNO (DECL_RTL (decl)) = reg_number;
667 REG_USERVAR_P (DECL_RTL (decl)) = 1;
668
669 if (TREE_STATIC (decl))
670 {
671 /* Make this register global, so not usable for anything
672 else. */
673 #ifdef ASM_DECLARE_REGISTER_GLOBAL
674 ASM_DECLARE_REGISTER_GLOBAL (asm_out_file, decl, reg_number, name);
675 #endif
676 nregs = HARD_REGNO_NREGS (reg_number, DECL_MODE (decl));
677 while (nregs > 0)
678 globalize_reg (reg_number + --nregs);
679 }
680
681 /* As a register variable, it has no section. */
682 return;
683 }
684 }
685
686 /* Now handle ordinary static variables and functions (in memory).
687 Also handle vars declared register invalidly. */
688
689 if (reg_number >= 0 || reg_number == -3)
690 error_with_decl (decl,
691 "register name given for non-register variable `%s'");
692
693 /* Specifying a section attribute on a variable forces it into a
694 non-.bss section, and thus it cannot be common. */
695 if (TREE_CODE (decl) == VAR_DECL
696 && DECL_SECTION_NAME (decl) != NULL_TREE
697 && DECL_INITIAL (decl) == NULL_TREE
698 && DECL_COMMON (decl))
699 DECL_COMMON (decl) = 0;
700
701 /* Can't use just the variable's own name for a variable
702 whose scope is less than the whole file, unless it's a member
703 of a local class (which will already be unambiguous).
704 Concatenate a distinguishing number. */
705 if (!top_level && !TREE_PUBLIC (decl)
706 && ! (DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl)))
707 && asmspec == 0
708 && name == IDENTIFIER_POINTER (DECL_NAME (decl)))
709 {
710 char *label;
711 ASM_FORMAT_PRIVATE_NAME (label, name, var_labelno);
712 var_labelno++;
713 new_name = label;
714 }
715
716 /* When -fprefix-function-name is used, the functions
717 names are prefixed. Only nested function names are not
718 prefixed. */
719 else if (flag_prefix_function_name && TREE_CODE (decl) == FUNCTION_DECL)
720 {
721 size_t name_len = IDENTIFIER_LENGTH (DECL_ASSEMBLER_NAME (decl));
722 char *pname;
723
724 pname = alloca (name_len + CHKR_PREFIX_SIZE + 1);
725 memcpy (pname, CHKR_PREFIX, CHKR_PREFIX_SIZE);
726 memcpy (pname + CHKR_PREFIX_SIZE, name, name_len + 1);
727 new_name = pname;
728 }
729
730 if (name != new_name)
731 {
732 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (new_name));
733 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
734 }
735
736 /* If this variable is to be treated as volatile, show its
737 tree node has side effects. */
738 if ((flag_volatile_global && TREE_CODE (decl) == VAR_DECL
739 && TREE_PUBLIC (decl))
740 || ((flag_volatile_static && TREE_CODE (decl) == VAR_DECL
741 && (TREE_PUBLIC (decl) || TREE_STATIC (decl)))))
742 TREE_SIDE_EFFECTS (decl) = 1;
743
744 SET_DECL_RTL (decl, gen_rtx_MEM (DECL_MODE (decl),
745 gen_rtx_SYMBOL_REF (Pmode, name)));
746 SYMBOL_REF_WEAK (XEXP (DECL_RTL (decl), 0)) = DECL_WEAK (decl);
747 if (TREE_CODE (decl) != FUNCTION_DECL)
748 set_mem_attributes (DECL_RTL (decl), decl, 1);
749
750 /* Optionally set flags or add text to the name to record information
751 such as that it is a function name.
752 If the name is changed, the macro ASM_OUTPUT_LABELREF
753 will have to know how to strip this information. */
754 #ifdef ENCODE_SECTION_INFO
755 ENCODE_SECTION_INFO (decl);
756 #endif
757 }
758
759 /* Make the rtl for variable VAR be volatile.
760 Use this only for static variables. */
761
762 void
763 make_var_volatile (var)
764 tree var;
765 {
766 if (GET_CODE (DECL_RTL (var)) != MEM)
767 abort ();
768
769 MEM_VOLATILE_P (DECL_RTL (var)) = 1;
770 }
771 \f
772 /* Output alignment directive to align for constant expression EXP. */
773
774 void
775 assemble_constant_align (exp)
776 tree exp;
777 {
778 int align;
779
780 /* Align the location counter as required by EXP's data type. */
781 align = TYPE_ALIGN (TREE_TYPE (exp));
782 #ifdef CONSTANT_ALIGNMENT
783 align = CONSTANT_ALIGNMENT (exp, align);
784 #endif
785
786 if (align > BITS_PER_UNIT)
787 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
788 }
789
790 /* Output a string of literal assembler code
791 for an `asm' keyword used between functions. */
792
793 void
794 assemble_asm (string)
795 tree string;
796 {
797 app_enable ();
798
799 if (TREE_CODE (string) == ADDR_EXPR)
800 string = TREE_OPERAND (string, 0);
801
802 fprintf (asm_out_file, "\t%s\n", TREE_STRING_POINTER (string));
803 }
804
805 /* Record an element in the table of global destructors.
806 How this is done depends on what sort of assembler and linker
807 are in use.
808
809 NAME should be the name of a global function to be called
810 at exit time. This name is output using assemble_name. */
811
812 void
813 assemble_destructor (name)
814 const char *name;
815 {
816 #ifdef ASM_OUTPUT_DESTRUCTOR
817 ASM_OUTPUT_DESTRUCTOR (asm_out_file, name);
818 #else
819 if (flag_gnu_linker)
820 {
821 /* Now tell GNU LD that this is part of the static destructor set. */
822 /* This code works for any machine provided you use GNU as/ld. */
823 fprintf (asm_out_file, "%s\"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP);
824 assemble_name (asm_out_file, name);
825 fputc ('\n', asm_out_file);
826 }
827 #endif
828 }
829
830 /* Likewise for global constructors. */
831
832 void
833 assemble_constructor (name)
834 const char *name;
835 {
836 #ifdef ASM_OUTPUT_CONSTRUCTOR
837 ASM_OUTPUT_CONSTRUCTOR (asm_out_file, name);
838 #else
839 if (flag_gnu_linker)
840 {
841 /* Now tell GNU LD that this is part of the static constructor set. */
842 /* This code works for any machine provided you use GNU as/ld. */
843 fprintf (asm_out_file, "%s\"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP);
844 assemble_name (asm_out_file, name);
845 fputc ('\n', asm_out_file);
846 }
847 #endif
848 }
849
850 /* Likewise for entries we want to record for garbage collection.
851 Garbage collection is still under development. */
852
853 void
854 assemble_gc_entry (name)
855 const char *name;
856 {
857 #ifdef ASM_OUTPUT_GC_ENTRY
858 ASM_OUTPUT_GC_ENTRY (asm_out_file, name);
859 #else
860 if (flag_gnu_linker)
861 {
862 /* Now tell GNU LD that this is part of the static constructor set. */
863 fprintf (asm_out_file, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP);
864 assemble_name (asm_out_file, name);
865 fputc ('\n', asm_out_file);
866 }
867 #endif
868 }
869 \f
870 /* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
871 a non-zero value if the constant pool should be output before the
872 start of the function, or a zero value if the pool should output
873 after the end of the function. The default is to put it before the
874 start. */
875
876 #ifndef CONSTANT_POOL_BEFORE_FUNCTION
877 #define CONSTANT_POOL_BEFORE_FUNCTION 1
878 #endif
879
880 /* Output assembler code for the constant pool of a function and associated
881 with defining the name of the function. DECL describes the function.
882 NAME is the function's name. For the constant pool, we use the current
883 constant pool data. */
884
885 void
886 assemble_start_function (decl, fnname)
887 tree decl;
888 const char *fnname;
889 {
890 int align;
891
892 /* The following code does not need preprocessing in the assembler. */
893
894 app_disable ();
895
896 if (CONSTANT_POOL_BEFORE_FUNCTION)
897 output_constant_pool (fnname, decl);
898
899 #ifdef ASM_OUTPUT_SECTION_NAME
900 /* If the function is to be put in its own section and it's not in a section
901 already, indicate so. */
902 if ((flag_function_sections
903 && DECL_SECTION_NAME (decl) == NULL_TREE)
904 || UNIQUE_SECTION_P (decl))
905 UNIQUE_SECTION (decl, 0);
906 #endif
907
908 function_section (decl);
909
910 /* Tell assembler to move to target machine's alignment for functions. */
911 align = floor_log2 (FUNCTION_BOUNDARY / BITS_PER_UNIT);
912 if (align > 0)
913 ASM_OUTPUT_ALIGN (asm_out_file, align);
914
915 /* Handle a user-specified function alignment.
916 Note that we still need to align to FUNCTION_BOUNDARY, as above,
917 because ASM_OUTPUT_MAX_SKIP_ALIGN might not do any alignment at all. */
918 if (align_functions_log > align)
919 {
920 #ifdef ASM_OUTPUT_MAX_SKIP_ALIGN
921 ASM_OUTPUT_MAX_SKIP_ALIGN (asm_out_file,
922 align_functions_log, align_functions-1);
923 #else
924 ASM_OUTPUT_ALIGN (asm_out_file, align_functions_log);
925 #endif
926 }
927
928 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
929 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file, fnname);
930 #endif
931
932 (*debug_hooks->begin_function) (decl);
933
934 /* Make function name accessible from other files, if appropriate. */
935
936 if (TREE_PUBLIC (decl))
937 {
938 if (! first_global_object_name)
939 {
940 const char *p;
941 char *name;
942
943 STRIP_NAME_ENCODING (p, fnname);
944 name = permalloc (strlen (p) + 1);
945 strcpy (name, p);
946
947 if (! DECL_WEAK (decl) && ! DECL_ONE_ONLY (decl))
948 first_global_object_name = name;
949 else
950 weak_global_object_name = name;
951 }
952
953 #ifdef ASM_WEAKEN_LABEL
954 if (DECL_WEAK (decl))
955 {
956 ASM_WEAKEN_LABEL (asm_out_file, fnname);
957 /* Remove this function from the pending weak list so that
958 we do not emit multiple .weak directives for it. */
959 remove_from_pending_weak_list
960 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
961 }
962 else
963 #endif
964 ASM_GLOBALIZE_LABEL (asm_out_file, fnname);
965 }
966
967 /* Do any machine/system dependent processing of the function name */
968 #ifdef ASM_DECLARE_FUNCTION_NAME
969 ASM_DECLARE_FUNCTION_NAME (asm_out_file, fnname, current_function_decl);
970 #else
971 /* Standard thing is just output label for the function. */
972 ASM_OUTPUT_LABEL (asm_out_file, fnname);
973 #endif /* ASM_DECLARE_FUNCTION_NAME */
974 }
975
976 /* Output assembler code associated with defining the size of the
977 function. DECL describes the function. NAME is the function's name. */
978
979 void
980 assemble_end_function (decl, fnname)
981 tree decl;
982 const char *fnname;
983 {
984 #ifdef ASM_DECLARE_FUNCTION_SIZE
985 ASM_DECLARE_FUNCTION_SIZE (asm_out_file, fnname, decl);
986 #endif
987 if (! CONSTANT_POOL_BEFORE_FUNCTION)
988 {
989 output_constant_pool (fnname, decl);
990 function_section (decl); /* need to switch back */
991 }
992
993 /* Output any constants which should appear after the function. */
994 output_after_function_constants ();
995 }
996 \f
997 /* Assemble code to leave SIZE bytes of zeros. */
998
999 void
1000 assemble_zeros (size)
1001 int size;
1002 {
1003 /* Do no output if -fsyntax-only. */
1004 if (flag_syntax_only)
1005 return;
1006
1007 #ifdef ASM_NO_SKIP_IN_TEXT
1008 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1009 so we must output 0s explicitly in the text section. */
1010 if (ASM_NO_SKIP_IN_TEXT && in_text_section ())
1011 {
1012 int i;
1013
1014 for (i = 0; i < size - 20; i += 20)
1015 {
1016 #ifdef ASM_BYTE_OP
1017 fprintf (asm_out_file,
1018 "%s0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n", ASM_BYTE_OP);
1019 #else
1020 fprintf (asm_out_file,
1021 "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n");
1022 #endif
1023 }
1024 if (i < size)
1025 {
1026 #ifdef ASM_BYTE_OP
1027 fprintf (asm_out_file, "%s0", ASM_BYTE_OP);
1028 #else
1029 fprintf (asm_out_file, "\tbyte 0");
1030 #endif
1031 i++;
1032 for (; i < size; i++)
1033 fprintf (asm_out_file, ",0");
1034 fprintf (asm_out_file, "\n");
1035 }
1036 }
1037 else
1038 #endif
1039 if (size > 0)
1040 ASM_OUTPUT_SKIP (asm_out_file, size);
1041 }
1042
1043 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1044
1045 void
1046 assemble_align (align)
1047 int align;
1048 {
1049 if (align > BITS_PER_UNIT)
1050 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
1051 }
1052
1053 /* Assemble a string constant with the specified C string as contents. */
1054
1055 void
1056 assemble_string (p, size)
1057 const char *p;
1058 int size;
1059 {
1060 int pos = 0;
1061 int maximum = 2000;
1062
1063 /* If the string is very long, split it up. */
1064
1065 while (pos < size)
1066 {
1067 int thissize = size - pos;
1068 if (thissize > maximum)
1069 thissize = maximum;
1070
1071 ASM_OUTPUT_ASCII (asm_out_file, p, thissize);
1072
1073 pos += thissize;
1074 p += thissize;
1075 }
1076 }
1077
1078 \f
1079 #if defined ASM_OUTPUT_ALIGNED_DECL_LOCAL
1080 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1081 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1082 #else
1083 #if defined ASM_OUTPUT_ALIGNED_LOCAL
1084 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1085 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, DECL_ALIGN (decl))
1086 #else
1087 #define ASM_EMIT_LOCAL(decl, name, size, rounded) \
1088 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded)
1089 #endif
1090 #endif
1091
1092 #if defined ASM_OUTPUT_ALIGNED_BSS
1093 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1094 ASM_OUTPUT_ALIGNED_BSS (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1095 #else
1096 #if defined ASM_OUTPUT_BSS
1097 #define ASM_EMIT_BSS(decl, name, size, rounded) \
1098 ASM_OUTPUT_BSS (asm_out_file, decl, name, size, rounded)
1099 #else
1100 #undef ASM_EMIT_BSS
1101 #endif
1102 #endif
1103
1104 #if defined ASM_OUTPUT_ALIGNED_DECL_COMMON
1105 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1106 ASM_OUTPUT_ALIGNED_DECL_COMMON (asm_out_file, decl, name, size, DECL_ALIGN (decl))
1107 #else
1108 #if defined ASM_OUTPUT_ALIGNED_COMMON
1109 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1110 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file, name, size, DECL_ALIGN (decl))
1111 #else
1112 #define ASM_EMIT_COMMON(decl, name, size, rounded) \
1113 ASM_OUTPUT_COMMON (asm_out_file, name, size, rounded)
1114 #endif
1115 #endif
1116
1117 static void
1118 asm_emit_uninitialised (decl, name, size, rounded)
1119 tree decl;
1120 const char * name;
1121 int size ATTRIBUTE_UNUSED;
1122 int rounded ATTRIBUTE_UNUSED;
1123 {
1124 enum
1125 {
1126 asm_dest_common,
1127 asm_dest_bss,
1128 asm_dest_local
1129 }
1130 destination = asm_dest_local;
1131
1132 if (TREE_PUBLIC (decl))
1133 {
1134 #if defined ASM_EMIT_BSS
1135 if (! DECL_COMMON (decl))
1136 destination = asm_dest_bss;
1137 else
1138 #endif
1139 destination = asm_dest_common;
1140 }
1141
1142 if (flag_shared_data)
1143 {
1144 switch (destination)
1145 {
1146 #ifdef ASM_OUTPUT_SHARED_BSS
1147 case asm_dest_bss:
1148 ASM_OUTPUT_SHARED_BSS (asm_out_file, decl, name, size, rounded);
1149 return;
1150 #endif
1151 #ifdef ASM_OUTPUT_SHARED_COMMON
1152 case asm_dest_common:
1153 ASM_OUTPUT_SHARED_COMMON (asm_out_file, name, size, rounded);
1154 return;
1155 #endif
1156 #ifdef ASM_OUTPUT_SHARED_LOCAL
1157 case asm_dest_local:
1158 ASM_OUTPUT_SHARED_LOCAL (asm_out_file, name, size, rounded);
1159 return;
1160 #endif
1161 default:
1162 break;
1163 }
1164 }
1165
1166 #ifdef ASM_OUTPUT_SECTION_NAME
1167 /* We already know that DECL_SECTION_NAME() == NULL. */
1168 if (flag_data_sections != 0 || UNIQUE_SECTION_P (decl))
1169 UNIQUE_SECTION (decl, 0);
1170 #endif
1171
1172 switch (destination)
1173 {
1174 #ifdef ASM_EMIT_BSS
1175 case asm_dest_bss:
1176 ASM_EMIT_BSS (decl, name, size, rounded);
1177 break;
1178 #endif
1179 case asm_dest_common:
1180 ASM_EMIT_COMMON (decl, name, size, rounded);
1181 break;
1182 case asm_dest_local:
1183 ASM_EMIT_LOCAL (decl, name, size, rounded);
1184 break;
1185 default:
1186 abort ();
1187 }
1188
1189 return;
1190 }
1191
1192 /* Assemble everything that is needed for a variable or function declaration.
1193 Not used for automatic variables, and not used for function definitions.
1194 Should not be called for variables of incomplete structure type.
1195
1196 TOP_LEVEL is nonzero if this variable has file scope.
1197 AT_END is nonzero if this is the special handling, at end of compilation,
1198 to define things that have had only tentative definitions.
1199 DONT_OUTPUT_DATA if nonzero means don't actually output the
1200 initial value (that will be done by the caller). */
1201
1202 void
1203 assemble_variable (decl, top_level, at_end, dont_output_data)
1204 tree decl;
1205 int top_level ATTRIBUTE_UNUSED;
1206 int at_end ATTRIBUTE_UNUSED;
1207 int dont_output_data;
1208 {
1209 register const char *name;
1210 unsigned int align;
1211 int reloc = 0;
1212 rtx decl_rtl;
1213
1214 last_assemble_variable_decl = 0;
1215
1216 /* Normally no need to say anything here for external references,
1217 since assemble_external is called by the language-specific code
1218 when a declaration is first seen. */
1219
1220 if (DECL_EXTERNAL (decl))
1221 return;
1222
1223 /* Output no assembler code for a function declaration.
1224 Only definitions of functions output anything. */
1225
1226 if (TREE_CODE (decl) == FUNCTION_DECL)
1227 return;
1228
1229 /* Do nothing for global register variables. */
1230 if (DECL_RTL_SET_P (decl) && GET_CODE (DECL_RTL (decl)) == REG)
1231 {
1232 TREE_ASM_WRITTEN (decl) = 1;
1233 return;
1234 }
1235
1236 /* If type was incomplete when the variable was declared,
1237 see if it is complete now. */
1238
1239 if (DECL_SIZE (decl) == 0)
1240 layout_decl (decl, 0);
1241
1242 /* Still incomplete => don't allocate it; treat the tentative defn
1243 (which is what it must have been) as an `extern' reference. */
1244
1245 if (!dont_output_data && DECL_SIZE (decl) == 0)
1246 {
1247 error_with_file_and_line (DECL_SOURCE_FILE (decl),
1248 DECL_SOURCE_LINE (decl),
1249 "storage size of `%s' isn't known",
1250 IDENTIFIER_POINTER (DECL_NAME (decl)));
1251 TREE_ASM_WRITTEN (decl) = 1;
1252 return;
1253 }
1254
1255 /* The first declaration of a variable that comes through this function
1256 decides whether it is global (in C, has external linkage)
1257 or local (in C, has internal linkage). So do nothing more
1258 if this function has already run. */
1259
1260 if (TREE_ASM_WRITTEN (decl))
1261 return;
1262
1263 /* Make sure ENCODE_SECTION_INFO is invoked before we set ASM_WRITTEN. */
1264 decl_rtl = DECL_RTL (decl);
1265
1266 TREE_ASM_WRITTEN (decl) = 1;
1267
1268 /* Do no output if -fsyntax-only. */
1269 if (flag_syntax_only)
1270 return;
1271
1272 app_disable ();
1273
1274 if (! dont_output_data
1275 && ! host_integerp (DECL_SIZE_UNIT (decl), 1))
1276 {
1277 error_with_decl (decl, "size of variable `%s' is too large");
1278 return;
1279 }
1280
1281 name = XSTR (XEXP (decl_rtl, 0), 0);
1282 if (TREE_PUBLIC (decl) && DECL_NAME (decl)
1283 && ! first_global_object_name
1284 && ! (DECL_COMMON (decl) && (DECL_INITIAL (decl) == 0
1285 || DECL_INITIAL (decl) == error_mark_node))
1286 && ! DECL_WEAK (decl)
1287 && ! DECL_ONE_ONLY (decl))
1288 {
1289 const char *p;
1290 char *xname;
1291
1292 STRIP_NAME_ENCODING (p, name);
1293 xname = permalloc (strlen (p) + 1);
1294 strcpy (xname, p);
1295 first_global_object_name = xname;
1296 }
1297
1298 /* Compute the alignment of this data. */
1299
1300 align = DECL_ALIGN (decl);
1301
1302 /* In the case for initialing an array whose length isn't specified,
1303 where we have not yet been able to do the layout,
1304 figure out the proper alignment now. */
1305 if (dont_output_data && DECL_SIZE (decl) == 0
1306 && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
1307 align = MAX (align, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl))));
1308
1309 /* Some object file formats have a maximum alignment which they support.
1310 In particular, a.out format supports a maximum alignment of 4. */
1311 #ifndef MAX_OFILE_ALIGNMENT
1312 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1313 #endif
1314 if (align > MAX_OFILE_ALIGNMENT)
1315 {
1316 warning_with_decl (decl,
1317 "alignment of `%s' is greater than maximum object file alignment. Using %d.",
1318 MAX_OFILE_ALIGNMENT/BITS_PER_UNIT);
1319 align = MAX_OFILE_ALIGNMENT;
1320 }
1321
1322 /* On some machines, it is good to increase alignment sometimes. */
1323 #ifdef DATA_ALIGNMENT
1324 align = DATA_ALIGNMENT (TREE_TYPE (decl), align);
1325 #endif
1326 #ifdef CONSTANT_ALIGNMENT
1327 if (DECL_INITIAL (decl) != 0 && DECL_INITIAL (decl) != error_mark_node)
1328 align = CONSTANT_ALIGNMENT (DECL_INITIAL (decl), align);
1329 #endif
1330
1331 /* Reset the alignment in case we have made it tighter, so we can benefit
1332 from it in get_pointer_alignment. */
1333 DECL_ALIGN (decl) = align;
1334
1335 /* Handle uninitialized definitions. */
1336
1337 if ((DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node)
1338 /* If the target can't output uninitialized but not common global data
1339 in .bss, then we have to use .data. */
1340 #if ! defined ASM_EMIT_BSS
1341 && DECL_COMMON (decl)
1342 #endif
1343 && DECL_SECTION_NAME (decl) == NULL_TREE
1344 && ! dont_output_data)
1345 {
1346 unsigned HOST_WIDE_INT size = tree_low_cst (DECL_SIZE_UNIT (decl), 1);
1347 unsigned HOST_WIDE_INT rounded = size;
1348
1349 /* Don't allocate zero bytes of common,
1350 since that means "undefined external" in the linker. */
1351 if (size == 0)
1352 rounded = 1;
1353
1354 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1355 so that each uninitialized object starts on such a boundary. */
1356 rounded += (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1;
1357 rounded = (rounded / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1358 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1359
1360 /* Don't continue this line--convex cc version 4.1 would lose. */
1361 #if !defined(ASM_OUTPUT_ALIGNED_COMMON) && !defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) && !defined(ASM_OUTPUT_ALIGNED_BSS)
1362 if ((unsigned HOST_WIDE_INT) DECL_ALIGN (decl) / BITS_PER_UNIT > rounded)
1363 warning_with_decl
1364 (decl, "requested alignment for %s is greater than implemented alignment of %d.",rounded);
1365 #endif
1366
1367 asm_emit_uninitialised (decl, name, size, rounded);
1368
1369 return;
1370 }
1371
1372 /* Handle initialized definitions.
1373 Also handle uninitialized global definitions if -fno-common and the
1374 target doesn't support ASM_OUTPUT_BSS. */
1375
1376 /* First make the assembler name(s) global if appropriate. */
1377 if (TREE_PUBLIC (decl) && DECL_NAME (decl))
1378 {
1379 #ifdef ASM_WEAKEN_LABEL
1380 if (DECL_WEAK (decl))
1381 {
1382 ASM_WEAKEN_LABEL (asm_out_file, name);
1383 /* Remove this variable from the pending weak list so that
1384 we do not emit multiple .weak directives for it. */
1385 remove_from_pending_weak_list
1386 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
1387 }
1388 else
1389 #endif
1390 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1391 }
1392
1393 /* Output any data that we will need to use the address of. */
1394 if (DECL_INITIAL (decl) == error_mark_node)
1395 reloc = contains_pointers_p (TREE_TYPE (decl));
1396 else if (DECL_INITIAL (decl))
1397 reloc = output_addressed_constants (DECL_INITIAL (decl));
1398
1399 #ifdef ASM_OUTPUT_SECTION_NAME
1400 if ((flag_data_sections != 0 && DECL_SECTION_NAME (decl) == NULL_TREE)
1401 || UNIQUE_SECTION_P (decl))
1402 UNIQUE_SECTION (decl, reloc);
1403 #endif
1404
1405 /* Switch to the appropriate section. */
1406 variable_section (decl, reloc);
1407
1408 /* dbxout.c needs to know this. */
1409 if (in_text_section ())
1410 DECL_IN_TEXT_SECTION (decl) = 1;
1411
1412 /* Output the alignment of this data. */
1413 if (align > BITS_PER_UNIT)
1414 ASM_OUTPUT_ALIGN (asm_out_file,
1415 floor_log2 (DECL_ALIGN (decl) / BITS_PER_UNIT));
1416
1417 /* Do any machine/system dependent processing of the object. */
1418 #ifdef ASM_DECLARE_OBJECT_NAME
1419 last_assemble_variable_decl = decl;
1420 ASM_DECLARE_OBJECT_NAME (asm_out_file, name, decl);
1421 #else
1422 /* Standard thing is just output label for the object. */
1423 ASM_OUTPUT_LABEL (asm_out_file, name);
1424 #endif /* ASM_DECLARE_OBJECT_NAME */
1425
1426 if (!dont_output_data)
1427 {
1428 if (DECL_INITIAL (decl))
1429 /* Output the actual data. */
1430 output_constant (DECL_INITIAL (decl),
1431 tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1432 else
1433 /* Leave space for it. */
1434 assemble_zeros (tree_low_cst (DECL_SIZE_UNIT (decl), 1));
1435 }
1436 }
1437
1438 /* Return 1 if type TYPE contains any pointers. */
1439
1440 static int
1441 contains_pointers_p (type)
1442 tree type;
1443 {
1444 switch (TREE_CODE (type))
1445 {
1446 case POINTER_TYPE:
1447 case REFERENCE_TYPE:
1448 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1449 so I'll play safe and return 1. */
1450 case OFFSET_TYPE:
1451 return 1;
1452
1453 case RECORD_TYPE:
1454 case UNION_TYPE:
1455 case QUAL_UNION_TYPE:
1456 {
1457 tree fields;
1458 /* For a type that has fields, see if the fields have pointers. */
1459 for (fields = TYPE_FIELDS (type); fields; fields = TREE_CHAIN (fields))
1460 if (TREE_CODE (fields) == FIELD_DECL
1461 && contains_pointers_p (TREE_TYPE (fields)))
1462 return 1;
1463 return 0;
1464 }
1465
1466 case ARRAY_TYPE:
1467 /* An array type contains pointers if its element type does. */
1468 return contains_pointers_p (TREE_TYPE (type));
1469
1470 default:
1471 return 0;
1472 }
1473 }
1474
1475 /* Output something to declare an external symbol to the assembler.
1476 (Most assemblers don't need this, so we normally output nothing.)
1477 Do nothing if DECL is not external. */
1478
1479 void
1480 assemble_external (decl)
1481 tree decl ATTRIBUTE_UNUSED;
1482 {
1483 /* Because most platforms do not define ASM_OUTPUT_EXTERNAL, the
1484 main body of this code is only rarely exercised. To provide some
1485 testing, on all platforms, we make sure that the ASM_OUT_FILE is
1486 open. If it's not, we should not be calling this function. */
1487 if (!asm_out_file)
1488 abort ();
1489
1490 #ifdef ASM_OUTPUT_EXTERNAL
1491 if (DECL_P (decl) && DECL_EXTERNAL (decl) && TREE_PUBLIC (decl))
1492 {
1493 rtx rtl = DECL_RTL (decl);
1494
1495 if (GET_CODE (rtl) == MEM && GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF
1496 && ! SYMBOL_REF_USED (XEXP (rtl, 0)))
1497 {
1498 /* Some systems do require some output. */
1499 SYMBOL_REF_USED (XEXP (rtl, 0)) = 1;
1500 ASM_OUTPUT_EXTERNAL (asm_out_file, decl, XSTR (XEXP (rtl, 0), 0));
1501 }
1502 }
1503 #endif
1504 }
1505
1506 /* Similar, for calling a library function FUN. */
1507
1508 void
1509 assemble_external_libcall (fun)
1510 rtx fun ATTRIBUTE_UNUSED;
1511 {
1512 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1513 /* Declare library function name external when first used, if nec. */
1514 if (! SYMBOL_REF_USED (fun))
1515 {
1516 SYMBOL_REF_USED (fun) = 1;
1517 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file, fun);
1518 }
1519 #endif
1520 }
1521
1522 /* Declare the label NAME global. */
1523
1524 void
1525 assemble_global (name)
1526 const char *name;
1527 {
1528 ASM_GLOBALIZE_LABEL (asm_out_file, name);
1529 }
1530
1531 /* Assemble a label named NAME. */
1532
1533 void
1534 assemble_label (name)
1535 const char *name;
1536 {
1537 ASM_OUTPUT_LABEL (asm_out_file, name);
1538 }
1539
1540 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1541 If NAME starts with a *, the rest of NAME is output verbatim.
1542 Otherwise NAME is transformed in an implementation-defined way
1543 (usually by the addition of an underscore).
1544 Many macros in the tm file are defined to call this function. */
1545
1546 void
1547 assemble_name (file, name)
1548 FILE *file;
1549 const char *name;
1550 {
1551 const char *real_name;
1552 tree id;
1553
1554 STRIP_NAME_ENCODING (real_name, name);
1555 if (flag_prefix_function_name
1556 && ! memcmp (real_name, CHKR_PREFIX, CHKR_PREFIX_SIZE))
1557 real_name = real_name + CHKR_PREFIX_SIZE;
1558
1559 id = maybe_get_identifier (real_name);
1560 if (id)
1561 TREE_SYMBOL_REFERENCED (id) = 1;
1562
1563 if (name[0] == '*')
1564 fputs (&name[1], file);
1565 else
1566 ASM_OUTPUT_LABELREF (file, name);
1567 }
1568
1569 /* Allocate SIZE bytes writable static space with a gensym name
1570 and return an RTX to refer to its address. */
1571
1572 rtx
1573 assemble_static_space (size)
1574 int size;
1575 {
1576 char name[12];
1577 const char *namestring;
1578 rtx x;
1579
1580 #if 0
1581 if (flag_shared_data)
1582 data_section ();
1583 #endif
1584
1585 ASM_GENERATE_INTERNAL_LABEL (name, "LF", const_labelno);
1586 ++const_labelno;
1587 namestring = ggc_strdup (name);
1588
1589 x = gen_rtx_SYMBOL_REF (Pmode, namestring);
1590
1591 #ifdef ASM_OUTPUT_ALIGNED_DECL_LOCAL
1592 ASM_OUTPUT_ALIGNED_DECL_LOCAL (asm_out_file, NULL_TREE, name, size,
1593 BIGGEST_ALIGNMENT);
1594 #else
1595 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1596 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file, name, size, BIGGEST_ALIGNMENT);
1597 #else
1598 {
1599 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1600 so that each uninitialized object starts on such a boundary. */
1601 /* Variable `rounded' might or might not be used in ASM_OUTPUT_LOCAL. */
1602 int rounded ATTRIBUTE_UNUSED
1603 = ((size + (BIGGEST_ALIGNMENT / BITS_PER_UNIT) - 1)
1604 / (BIGGEST_ALIGNMENT / BITS_PER_UNIT)
1605 * (BIGGEST_ALIGNMENT / BITS_PER_UNIT));
1606 ASM_OUTPUT_LOCAL (asm_out_file, name, size, rounded);
1607 }
1608 #endif
1609 #endif
1610 return x;
1611 }
1612
1613 /* Assemble the static constant template for function entry trampolines.
1614 This is done at most once per compilation.
1615 Returns an RTX for the address of the template. */
1616
1617 #ifdef TRAMPOLINE_TEMPLATE
1618 rtx
1619 assemble_trampoline_template ()
1620 {
1621 char label[256];
1622 const char *name;
1623 int align;
1624
1625 /* By default, put trampoline templates in read-only data section. */
1626
1627 #ifdef TRAMPOLINE_SECTION
1628 TRAMPOLINE_SECTION ();
1629 #else
1630 readonly_data_section ();
1631 #endif
1632
1633 /* Write the assembler code to define one. */
1634 align = floor_log2 (TRAMPOLINE_ALIGNMENT / BITS_PER_UNIT);
1635 if (align > 0)
1636 ASM_OUTPUT_ALIGN (asm_out_file, align);
1637
1638 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LTRAMP", 0);
1639 TRAMPOLINE_TEMPLATE (asm_out_file);
1640
1641 /* Record the rtl to refer to it. */
1642 ASM_GENERATE_INTERNAL_LABEL (label, "LTRAMP", 0);
1643 name = ggc_strdup (label);
1644 return gen_rtx_SYMBOL_REF (Pmode, name);
1645 }
1646 #endif
1647 \f
1648 /* Assemble the integer constant X into an object of SIZE bytes.
1649 X must be either a CONST_INT or CONST_DOUBLE.
1650
1651 Return 1 if we were able to output the constant, otherwise 0. If FORCE is
1652 non-zero, abort if we can't output the constant. */
1653
1654 int
1655 assemble_integer (x, size, force)
1656 rtx x;
1657 int size;
1658 int force;
1659 {
1660 /* First try to use the standard 1, 2, 4, 8, and 16 byte
1661 ASM_OUTPUT... macros. */
1662
1663 switch (size)
1664 {
1665 #ifdef ASM_OUTPUT_CHAR
1666 case 1:
1667 ASM_OUTPUT_CHAR (asm_out_file, x);
1668 return 1;
1669 #endif
1670
1671 #ifdef ASM_OUTPUT_SHORT
1672 case 2:
1673 ASM_OUTPUT_SHORT (asm_out_file, x);
1674 return 1;
1675 #endif
1676
1677 #ifdef ASM_OUTPUT_INT
1678 case 4:
1679 ASM_OUTPUT_INT (asm_out_file, x);
1680 return 1;
1681 #endif
1682
1683 #ifdef ASM_OUTPUT_DOUBLE_INT
1684 case 8:
1685 ASM_OUTPUT_DOUBLE_INT (asm_out_file, x);
1686 return 1;
1687 #endif
1688
1689 #ifdef ASM_OUTPUT_QUADRUPLE_INT
1690 case 16:
1691 ASM_OUTPUT_QUADRUPLE_INT (asm_out_file, x);
1692 return 1;
1693 #endif
1694 }
1695
1696 /* If we couldn't do it that way, there are two other possibilities: First,
1697 if the machine can output an explicit byte and this is a 1 byte constant,
1698 we can use ASM_OUTPUT_BYTE. */
1699
1700 #ifdef ASM_OUTPUT_BYTE
1701 if (size == 1 && GET_CODE (x) == CONST_INT)
1702 {
1703 ASM_OUTPUT_BYTE (asm_out_file, INTVAL (x));
1704 return 1;
1705 }
1706 #endif
1707
1708 /* Finally, if SIZE is larger than a single word, try to output the constant
1709 one word at a time. */
1710
1711 if (size > UNITS_PER_WORD)
1712 {
1713 int i;
1714 enum machine_mode mode
1715 = mode_for_size (size * BITS_PER_UNIT, MODE_INT, 0);
1716 rtx word;
1717
1718 for (i = 0; i < size / UNITS_PER_WORD; i++)
1719 {
1720 word = operand_subword (x, i, 0, mode);
1721
1722 if (word == 0)
1723 break;
1724
1725 if (! assemble_integer (word, UNITS_PER_WORD, 0))
1726 break;
1727 }
1728
1729 if (i == size / UNITS_PER_WORD)
1730 return 1;
1731 /* If we output at least one word and then could not finish,
1732 there is no valid way to continue. */
1733 if (i > 0)
1734 abort ();
1735 }
1736
1737 if (force)
1738 abort ();
1739
1740 return 0;
1741 }
1742 \f
1743 /* Assemble the floating-point constant D into an object of size MODE. */
1744
1745 void
1746 assemble_real (d, mode)
1747 REAL_VALUE_TYPE d;
1748 enum machine_mode mode;
1749 {
1750 jmp_buf output_constant_handler;
1751
1752 if (setjmp (output_constant_handler))
1753 {
1754 error ("floating point trap outputting a constant");
1755 #ifdef REAL_IS_NOT_DOUBLE
1756 memset ((char *) &d, 0, sizeof d);
1757 d = dconst0;
1758 #else
1759 d = 0;
1760 #endif
1761 }
1762
1763 set_float_handler (output_constant_handler);
1764
1765 switch (mode)
1766 {
1767 #ifdef ASM_OUTPUT_BYTE_FLOAT
1768 case QFmode:
1769 ASM_OUTPUT_BYTE_FLOAT (asm_out_file, d);
1770 break;
1771 #endif
1772 #ifdef ASM_OUTPUT_SHORT_FLOAT
1773 case HFmode:
1774 ASM_OUTPUT_SHORT_FLOAT (asm_out_file, d);
1775 break;
1776 #endif
1777 #ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
1778 case TQFmode:
1779 ASM_OUTPUT_THREE_QUARTER_FLOAT (asm_out_file, d);
1780 break;
1781 #endif
1782 #ifdef ASM_OUTPUT_FLOAT
1783 case SFmode:
1784 ASM_OUTPUT_FLOAT (asm_out_file, d);
1785 break;
1786 #endif
1787
1788 #ifdef ASM_OUTPUT_DOUBLE
1789 case DFmode:
1790 ASM_OUTPUT_DOUBLE (asm_out_file, d);
1791 break;
1792 #endif
1793
1794 #ifdef ASM_OUTPUT_LONG_DOUBLE
1795 case XFmode:
1796 case TFmode:
1797 ASM_OUTPUT_LONG_DOUBLE (asm_out_file, d);
1798 break;
1799 #endif
1800
1801 default:
1802 abort ();
1803 }
1804
1805 set_float_handler (NULL);
1806 }
1807 \f
1808 /* Here we combine duplicate floating constants to make
1809 CONST_DOUBLE rtx's, and force those out to memory when necessary. */
1810
1811 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair of ints.
1812 For an integer, I0 is the low-order word and I1 is the high-order word.
1813 For a real number, I0 is the word with the low address
1814 and I1 is the word with the high address. */
1815
1816 rtx
1817 immed_double_const (i0, i1, mode)
1818 HOST_WIDE_INT i0, i1;
1819 enum machine_mode mode;
1820 {
1821 register rtx r;
1822
1823 if (GET_MODE_CLASS (mode) == MODE_INT
1824 || GET_MODE_CLASS (mode) == MODE_PARTIAL_INT)
1825 {
1826 /* We clear out all bits that don't belong in MODE, unless they and our
1827 sign bit are all one. So we get either a reasonable negative value
1828 or a reasonable unsigned value for this mode. */
1829 int width = GET_MODE_BITSIZE (mode);
1830 if (width < HOST_BITS_PER_WIDE_INT
1831 && ((i0 & ((HOST_WIDE_INT) (-1) << (width - 1)))
1832 != ((HOST_WIDE_INT) (-1) << (width - 1))))
1833 i0 &= ((HOST_WIDE_INT) 1 << width) - 1, i1 = 0;
1834 else if (width == HOST_BITS_PER_WIDE_INT
1835 && ! (i1 == ~0 && i0 < 0))
1836 i1 = 0;
1837 else if (width > 2 * HOST_BITS_PER_WIDE_INT)
1838 /* We cannot represent this value as a constant. */
1839 abort ();
1840
1841 /* If this would be an entire word for the target, but is not for
1842 the host, then sign-extend on the host so that the number will look
1843 the same way on the host that it would on the target.
1844
1845 For example, when building a 64 bit alpha hosted 32 bit sparc
1846 targeted compiler, then we want the 32 bit unsigned value -1 to be
1847 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
1848 The later confuses the sparc backend. */
1849
1850 if (width < HOST_BITS_PER_WIDE_INT
1851 && (i0 & ((HOST_WIDE_INT) 1 << (width - 1))))
1852 i0 |= ((HOST_WIDE_INT) (-1) << width);
1853
1854 /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a CONST_INT.
1855
1856 ??? Strictly speaking, this is wrong if we create a CONST_INT
1857 for a large unsigned constant with the size of MODE being
1858 HOST_BITS_PER_WIDE_INT and later try to interpret that constant in a
1859 wider mode. In that case we will mis-interpret it as a negative
1860 number.
1861
1862 Unfortunately, the only alternative is to make a CONST_DOUBLE
1863 for any constant in any mode if it is an unsigned constant larger
1864 than the maximum signed integer in an int on the host. However,
1865 doing this will break everyone that always expects to see a CONST_INT
1866 for SImode and smaller.
1867
1868 We have always been making CONST_INTs in this case, so nothing new
1869 is being broken. */
1870
1871 if (width <= HOST_BITS_PER_WIDE_INT)
1872 i1 = (i0 < 0) ? ~(HOST_WIDE_INT) 0 : 0;
1873
1874 /* If this integer fits in one word, return a CONST_INT. */
1875 if ((i1 == 0 && i0 >= 0)
1876 || (i1 == ~0 && i0 < 0))
1877 return GEN_INT (i0);
1878
1879 /* We use VOIDmode for integers. */
1880 mode = VOIDmode;
1881 }
1882
1883 /* Search the chain for an existing CONST_DOUBLE with the right value.
1884 If one is found, return it. */
1885 if (cfun != 0)
1886 for (r = const_double_chain; r; r = CONST_DOUBLE_CHAIN (r))
1887 if (CONST_DOUBLE_LOW (r) == i0 && CONST_DOUBLE_HIGH (r) == i1
1888 && GET_MODE (r) == mode)
1889 return r;
1890
1891 /* No; make a new one and add it to the chain. */
1892 r = gen_rtx_CONST_DOUBLE (mode, const0_rtx, i0, i1);
1893
1894 /* Don't touch const_double_chain if not inside any function. */
1895 if (current_function_decl != 0)
1896 {
1897 CONST_DOUBLE_CHAIN (r) = const_double_chain;
1898 const_double_chain = r;
1899 }
1900
1901 return r;
1902 }
1903
1904 /* Return a CONST_DOUBLE for a specified `double' value
1905 and machine mode. */
1906
1907 rtx
1908 immed_real_const_1 (d, mode)
1909 REAL_VALUE_TYPE d;
1910 enum machine_mode mode;
1911 {
1912 union real_extract u;
1913 register rtx r;
1914
1915 /* Get the desired `double' value as a sequence of ints
1916 since that is how they are stored in a CONST_DOUBLE. */
1917
1918 u.d = d;
1919
1920 /* Detect special cases. */
1921 if (REAL_VALUES_IDENTICAL (dconst0, d))
1922 return CONST0_RTX (mode);
1923
1924 /* Check for NaN first, because some ports (specifically the i386) do not
1925 emit correct ieee-fp code by default, and thus will generate a core
1926 dump here if we pass a NaN to REAL_VALUES_EQUAL and if REAL_VALUES_EQUAL
1927 does a floating point comparison. */
1928 else if (! REAL_VALUE_ISNAN (d) && REAL_VALUES_EQUAL (dconst1, d))
1929 return CONST1_RTX (mode);
1930
1931 if (sizeof u == sizeof (HOST_WIDE_INT))
1932 return immed_double_const (u.i[0], 0, mode);
1933 if (sizeof u == 2 * sizeof (HOST_WIDE_INT))
1934 return immed_double_const (u.i[0], u.i[1], mode);
1935
1936 /* The rest of this function handles the case where
1937 a float value requires more than 2 ints of space.
1938 It will be deleted as dead code on machines that don't need it. */
1939
1940 /* Search the chain for an existing CONST_DOUBLE with the right value.
1941 If one is found, return it. */
1942 if (cfun != 0)
1943 for (r = const_double_chain; r; r = CONST_DOUBLE_CHAIN (r))
1944 if (! memcmp ((char *) &CONST_DOUBLE_LOW (r), (char *) &u, sizeof u)
1945 && GET_MODE (r) == mode)
1946 return r;
1947
1948 /* No; make a new one and add it to the chain.
1949
1950 We may be called by an optimizer which may be discarding any memory
1951 allocated during its processing (such as combine and loop). However,
1952 we will be leaving this constant on the chain, so we cannot tolerate
1953 freed memory. */
1954 r = rtx_alloc (CONST_DOUBLE);
1955 PUT_MODE (r, mode);
1956 memcpy ((char *) &CONST_DOUBLE_LOW (r), (char *) &u, sizeof u);
1957
1958 /* If we aren't inside a function, don't put r on the
1959 const_double_chain. */
1960 if (current_function_decl != 0)
1961 {
1962 CONST_DOUBLE_CHAIN (r) = const_double_chain;
1963 const_double_chain = r;
1964 }
1965 else
1966 CONST_DOUBLE_CHAIN (r) = NULL_RTX;
1967
1968 /* Store const0_rtx in CONST_DOUBLE_MEM since this CONST_DOUBLE is on the
1969 chain, but has not been allocated memory. Actual use of CONST_DOUBLE_MEM
1970 is only through force_const_mem. */
1971
1972 CONST_DOUBLE_MEM (r) = const0_rtx;
1973
1974 return r;
1975 }
1976
1977 /* Return a CONST_DOUBLE rtx for a value specified by EXP,
1978 which must be a REAL_CST tree node. */
1979
1980 rtx
1981 immed_real_const (exp)
1982 tree exp;
1983 {
1984 return immed_real_const_1 (TREE_REAL_CST (exp), TYPE_MODE (TREE_TYPE (exp)));
1985 }
1986
1987 /* At the end of a function, forget the memory-constants
1988 previously made for CONST_DOUBLEs. Mark them as not on real_constant_chain.
1989 Also clear out real_constant_chain and clear out all the chain-pointers. */
1990
1991 void
1992 clear_const_double_mem ()
1993 {
1994 register rtx r, next;
1995 enum machine_mode mode;
1996 int i;
1997
1998 for (r = const_double_chain; r; r = next)
1999 {
2000 next = CONST_DOUBLE_CHAIN (r);
2001 CONST_DOUBLE_CHAIN (r) = 0;
2002 CONST_DOUBLE_MEM (r) = cc0_rtx;
2003 }
2004 const_double_chain = 0;
2005
2006 for (i = 0; i <= 2; i++)
2007 for (mode = GET_CLASS_NARROWEST_MODE (MODE_FLOAT); mode != VOIDmode;
2008 mode = GET_MODE_WIDER_MODE (mode))
2009 {
2010 r = const_tiny_rtx[i][(int) mode];
2011 CONST_DOUBLE_CHAIN (r) = 0;
2012 CONST_DOUBLE_MEM (r) = cc0_rtx;
2013 }
2014 }
2015 \f
2016 /* Given an expression EXP with a constant value,
2017 reduce it to the sum of an assembler symbol and an integer.
2018 Store them both in the structure *VALUE.
2019 Abort if EXP does not reduce. */
2020
2021 struct addr_const
2022 {
2023 rtx base;
2024 HOST_WIDE_INT offset;
2025 };
2026
2027 static void
2028 decode_addr_const (exp, value)
2029 tree exp;
2030 struct addr_const *value;
2031 {
2032 register tree target = TREE_OPERAND (exp, 0);
2033 register int offset = 0;
2034 register rtx x;
2035
2036 while (1)
2037 {
2038 if (TREE_CODE (target) == COMPONENT_REF
2039 && host_integerp (byte_position (TREE_OPERAND (target, 1)), 0))
2040
2041 {
2042 offset += int_byte_position (TREE_OPERAND (target, 1));
2043 target = TREE_OPERAND (target, 0);
2044 }
2045 else if (TREE_CODE (target) == ARRAY_REF
2046 || TREE_CODE (target) == ARRAY_RANGE_REF)
2047 {
2048 offset += (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (target)), 1)
2049 * tree_low_cst (TREE_OPERAND (target, 1), 0));
2050 target = TREE_OPERAND (target, 0);
2051 }
2052 else
2053 break;
2054 }
2055
2056 switch (TREE_CODE (target))
2057 {
2058 case VAR_DECL:
2059 case FUNCTION_DECL:
2060 x = DECL_RTL (target);
2061 break;
2062
2063 case LABEL_DECL:
2064 x = gen_rtx_MEM (FUNCTION_MODE,
2065 gen_rtx_LABEL_REF (VOIDmode,
2066 label_rtx (TREE_OPERAND (exp, 0))));
2067 break;
2068
2069 case REAL_CST:
2070 case STRING_CST:
2071 case COMPLEX_CST:
2072 case CONSTRUCTOR:
2073 case INTEGER_CST:
2074 x = TREE_CST_RTL (target);
2075 break;
2076
2077 default:
2078 abort ();
2079 }
2080
2081 if (GET_CODE (x) != MEM)
2082 abort ();
2083 x = XEXP (x, 0);
2084
2085 value->base = x;
2086 value->offset = offset;
2087 }
2088 \f
2089 enum kind { RTX_DOUBLE, RTX_INT };
2090 struct rtx_const
2091 {
2092 ENUM_BITFIELD(kind) kind : 16;
2093 ENUM_BITFIELD(machine_mode) mode : 16;
2094 union {
2095 union real_extract du;
2096 struct addr_const addr;
2097 struct {HOST_WIDE_INT high, low;} di;
2098 } un;
2099 };
2100
2101 /* Uniquize all constants that appear in memory.
2102 Each constant in memory thus far output is recorded
2103 in `const_hash_table' with a `struct constant_descriptor'
2104 that contains a polish representation of the value of
2105 the constant.
2106
2107 We cannot store the trees in the hash table
2108 because the trees may be temporary. */
2109
2110 struct constant_descriptor
2111 {
2112 struct constant_descriptor *next;
2113 const char *label;
2114 rtx rtl;
2115 /* Make sure the data is reasonably aligned. */
2116 union
2117 {
2118 unsigned char contents[1];
2119 #ifdef HAVE_LONG_DOUBLE
2120 long double d;
2121 #else
2122 double d;
2123 #endif
2124 } u;
2125 };
2126
2127 #define HASHBITS 30
2128 #define MAX_HASH_TABLE 1009
2129 static struct constant_descriptor *const_hash_table[MAX_HASH_TABLE];
2130
2131 #define STRHASH(x) ((hashval_t)((long)(x) >> 3))
2132
2133 struct deferred_string
2134 {
2135 const char *label;
2136 tree exp;
2137 int labelno;
2138 };
2139
2140 static htab_t const_str_htab;
2141
2142 /* Mark a const_hash_table descriptor for GC. */
2143
2144 static void
2145 mark_const_hash_entry (ptr)
2146 void *ptr;
2147 {
2148 struct constant_descriptor *desc = * (struct constant_descriptor **) ptr;
2149
2150 while (desc)
2151 {
2152 ggc_mark_rtx (desc->rtl);
2153 desc = desc->next;
2154 }
2155 }
2156
2157 /* Mark the hash-table element X (which is really a pointer to an
2158 struct deferred_string *). */
2159
2160 static int
2161 mark_const_str_htab_1 (x, data)
2162 void **x;
2163 void *data ATTRIBUTE_UNUSED;
2164 {
2165 ggc_mark_tree (((struct deferred_string *) *x)->exp);
2166 return 1;
2167 }
2168
2169 /* Mark a const_str_htab for GC. */
2170
2171 static void
2172 mark_const_str_htab (htab)
2173 void *htab;
2174 {
2175 htab_traverse (*((htab_t *) htab), mark_const_str_htab_1, NULL);
2176 }
2177
2178 /* Returns a hash code for X (which is a really a
2179 struct deferred_string *). */
2180
2181 static hashval_t
2182 const_str_htab_hash (x)
2183 const void *x;
2184 {
2185 return STRHASH (((const struct deferred_string *) x)->label);
2186 }
2187
2188 /* Returns non-zero if the value represented by X (which is really a
2189 struct deferred_string *) is the same as that given by Y
2190 (which is really a char *). */
2191
2192 static int
2193 const_str_htab_eq (x, y)
2194 const void *x;
2195 const void *y;
2196 {
2197 return (((const struct deferred_string *) x)->label == (const char *) y);
2198 }
2199
2200 /* Delete the hash table entry dfsp. */
2201
2202 static void
2203 const_str_htab_del (dfsp)
2204 void *dfsp;
2205 {
2206 free (dfsp);
2207 }
2208
2209 /* Compute a hash code for a constant expression. */
2210
2211 static int
2212 const_hash (exp)
2213 tree exp;
2214 {
2215 register const char *p;
2216 register int len, hi, i;
2217 register enum tree_code code = TREE_CODE (exp);
2218
2219 /* Either set P and LEN to the address and len of something to hash and
2220 exit the switch or return a value. */
2221
2222 switch (code)
2223 {
2224 case INTEGER_CST:
2225 p = (char *) &TREE_INT_CST (exp);
2226 len = sizeof TREE_INT_CST (exp);
2227 break;
2228
2229 case REAL_CST:
2230 p = (char *) &TREE_REAL_CST (exp);
2231 len = sizeof TREE_REAL_CST (exp);
2232 break;
2233
2234 case STRING_CST:
2235 p = TREE_STRING_POINTER (exp);
2236 len = TREE_STRING_LENGTH (exp);
2237 break;
2238
2239 case COMPLEX_CST:
2240 return (const_hash (TREE_REALPART (exp)) * 5
2241 + const_hash (TREE_IMAGPART (exp)));
2242
2243 case CONSTRUCTOR:
2244 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2245 {
2246 char *tmp;
2247
2248 len = int_size_in_bytes (TREE_TYPE (exp));
2249 tmp = (char *) alloca (len);
2250 get_set_constructor_bytes (exp, (unsigned char *) tmp, len);
2251 p = tmp;
2252 break;
2253 }
2254 else
2255 {
2256 register tree link;
2257
2258 /* For record type, include the type in the hashing.
2259 We do not do so for array types
2260 because (1) the sizes of the elements are sufficient
2261 and (2) distinct array types can have the same constructor.
2262 Instead, we include the array size because the constructor could
2263 be shorter. */
2264 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2265 hi = ((unsigned long) TREE_TYPE (exp) & ((1 << HASHBITS) - 1))
2266 % MAX_HASH_TABLE;
2267 else
2268 hi = ((5 + int_size_in_bytes (TREE_TYPE (exp)))
2269 & ((1 << HASHBITS) - 1)) % MAX_HASH_TABLE;
2270
2271 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2272 if (TREE_VALUE (link))
2273 hi
2274 = (hi * 603 + const_hash (TREE_VALUE (link))) % MAX_HASH_TABLE;
2275
2276 return hi;
2277 }
2278
2279 case ADDR_EXPR:
2280 {
2281 struct addr_const value;
2282
2283 decode_addr_const (exp, &value);
2284 if (GET_CODE (value.base) == SYMBOL_REF)
2285 {
2286 /* Don't hash the address of the SYMBOL_REF;
2287 only use the offset and the symbol name. */
2288 hi = value.offset;
2289 p = XSTR (value.base, 0);
2290 for (i = 0; p[i] != 0; i++)
2291 hi = ((hi * 613) + (unsigned) (p[i]));
2292 }
2293 else if (GET_CODE (value.base) == LABEL_REF)
2294 hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13;
2295 else
2296 abort();
2297
2298 hi &= (1 << HASHBITS) - 1;
2299 hi %= MAX_HASH_TABLE;
2300 }
2301 return hi;
2302
2303 case PLUS_EXPR:
2304 case MINUS_EXPR:
2305 return (const_hash (TREE_OPERAND (exp, 0)) * 9
2306 + const_hash (TREE_OPERAND (exp, 1)));
2307
2308 case NOP_EXPR:
2309 case CONVERT_EXPR:
2310 case NON_LVALUE_EXPR:
2311 return const_hash (TREE_OPERAND (exp, 0)) * 7 + 2;
2312
2313 default:
2314 /* A language specific constant. Just hash the code. */
2315 return (int) code % MAX_HASH_TABLE;
2316 }
2317
2318 /* Compute hashing function */
2319 hi = len;
2320 for (i = 0; i < len; i++)
2321 hi = ((hi * 613) + (unsigned) (p[i]));
2322
2323 hi &= (1 << HASHBITS) - 1;
2324 hi %= MAX_HASH_TABLE;
2325 return hi;
2326 }
2327 \f
2328 /* Compare a constant expression EXP with a constant-descriptor DESC.
2329 Return 1 if DESC describes a constant with the same value as EXP. */
2330
2331 static int
2332 compare_constant (exp, desc)
2333 tree exp;
2334 struct constant_descriptor *desc;
2335 {
2336 return 0 != compare_constant_1 (exp, desc->u.contents);
2337 }
2338
2339 /* Compare constant expression EXP with a substring P of a constant descriptor.
2340 If they match, return a pointer to the end of the substring matched.
2341 If they do not match, return 0.
2342
2343 Since descriptors are written in polish prefix notation,
2344 this function can be used recursively to test one operand of EXP
2345 against a subdescriptor, and if it succeeds it returns the
2346 address of the subdescriptor for the next operand. */
2347
2348 static const unsigned char *
2349 compare_constant_1 (exp, p)
2350 tree exp;
2351 const unsigned char *p;
2352 {
2353 register const unsigned char *strp;
2354 register int len;
2355 register enum tree_code code = TREE_CODE (exp);
2356
2357 if (code != (enum tree_code) *p++)
2358 return 0;
2359
2360 /* Either set STRP, P and LEN to pointers and length to compare and exit the
2361 switch, or return the result of the comparison. */
2362
2363 switch (code)
2364 {
2365 case INTEGER_CST:
2366 /* Integer constants are the same only if the same width of type. */
2367 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2368 return 0;
2369
2370 strp = (unsigned char *) &TREE_INT_CST (exp);
2371 len = sizeof TREE_INT_CST (exp);
2372 break;
2373
2374 case REAL_CST:
2375 /* Real constants are the same only if the same width of type. */
2376 if (*p++ != TYPE_PRECISION (TREE_TYPE (exp)))
2377 return 0;
2378
2379 strp = (unsigned char *) &TREE_REAL_CST (exp);
2380 len = sizeof TREE_REAL_CST (exp);
2381 break;
2382
2383 case STRING_CST:
2384 if (flag_writable_strings)
2385 return 0;
2386
2387 if ((enum machine_mode) *p++ != TYPE_MODE (TREE_TYPE (exp)))
2388 return 0;
2389
2390 strp = (const unsigned char *)TREE_STRING_POINTER (exp);
2391 len = TREE_STRING_LENGTH (exp);
2392 if (memcmp ((char *) &TREE_STRING_LENGTH (exp), p,
2393 sizeof TREE_STRING_LENGTH (exp)))
2394 return 0;
2395
2396 p += sizeof TREE_STRING_LENGTH (exp);
2397 break;
2398
2399 case COMPLEX_CST:
2400 p = compare_constant_1 (TREE_REALPART (exp), p);
2401 if (p == 0)
2402 return 0;
2403
2404 return compare_constant_1 (TREE_IMAGPART (exp), p);
2405
2406 case CONSTRUCTOR:
2407 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2408 {
2409 int xlen = len = int_size_in_bytes (TREE_TYPE (exp));
2410 unsigned char *tmp = (unsigned char *) alloca (len);
2411
2412 get_set_constructor_bytes (exp, tmp, len);
2413 strp = (unsigned char *) tmp;
2414 if (memcmp ((char *) &xlen, p, sizeof xlen))
2415 return 0;
2416
2417 p += sizeof xlen;
2418 break;
2419 }
2420 else
2421 {
2422 register tree link;
2423 int length = list_length (CONSTRUCTOR_ELTS (exp));
2424 tree type;
2425 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2426 int have_purpose = 0;
2427
2428 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2429 if (TREE_PURPOSE (link))
2430 have_purpose = 1;
2431
2432 if (memcmp ((char *) &length, p, sizeof length))
2433 return 0;
2434
2435 p += sizeof length;
2436
2437 /* For record constructors, insist that the types match.
2438 For arrays, just verify both constructors are for arrays.
2439 Then insist that either both or none have any TREE_PURPOSE
2440 values. */
2441 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2442 type = TREE_TYPE (exp);
2443 else
2444 type = 0;
2445
2446 if (memcmp ((char *) &type, p, sizeof type))
2447 return 0;
2448
2449 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2450 {
2451 if (memcmp ((char *) &mode, p, sizeof mode))
2452 return 0;
2453
2454 p += sizeof mode;
2455 }
2456
2457 p += sizeof type;
2458
2459 if (memcmp ((char *) &have_purpose, p, sizeof have_purpose))
2460 return 0;
2461
2462 p += sizeof have_purpose;
2463
2464 /* For arrays, insist that the size in bytes match. */
2465 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2466 {
2467 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
2468
2469 if (memcmp ((char *) &size, p, sizeof size))
2470 return 0;
2471
2472 p += sizeof size;
2473 }
2474
2475 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2476 {
2477 if (TREE_VALUE (link))
2478 {
2479 if ((p = compare_constant_1 (TREE_VALUE (link), p)) == 0)
2480 return 0;
2481 }
2482 else
2483 {
2484 tree zero = 0;
2485
2486 if (memcmp ((char *) &zero, p, sizeof zero))
2487 return 0;
2488
2489 p += sizeof zero;
2490 }
2491
2492 if (TREE_PURPOSE (link)
2493 && TREE_CODE (TREE_PURPOSE (link)) == FIELD_DECL)
2494 {
2495 if (memcmp ((char *) &TREE_PURPOSE (link), p,
2496 sizeof TREE_PURPOSE (link)))
2497 return 0;
2498
2499 p += sizeof TREE_PURPOSE (link);
2500 }
2501 else if (TREE_PURPOSE (link))
2502 {
2503 if ((p = compare_constant_1 (TREE_PURPOSE (link), p)) == 0)
2504 return 0;
2505 }
2506 else if (have_purpose)
2507 {
2508 int zero = 0;
2509
2510 if (memcmp ((char *) &zero, p, sizeof zero))
2511 return 0;
2512
2513 p += sizeof zero;
2514 }
2515 }
2516
2517 return p;
2518 }
2519
2520 case ADDR_EXPR:
2521 {
2522 struct addr_const value;
2523
2524 decode_addr_const (exp, &value);
2525 strp = (unsigned char *) &value.offset;
2526 len = sizeof value.offset;
2527 /* Compare the offset. */
2528 while (--len >= 0)
2529 if (*p++ != *strp++)
2530 return 0;
2531
2532 /* Compare symbol name. */
2533 strp = (const unsigned char *) XSTR (value.base, 0);
2534 len = strlen ((const char *) strp) + 1;
2535 }
2536 break;
2537
2538 case PLUS_EXPR:
2539 case MINUS_EXPR:
2540 case RANGE_EXPR:
2541 p = compare_constant_1 (TREE_OPERAND (exp, 0), p);
2542 if (p == 0)
2543 return 0;
2544
2545 return compare_constant_1 (TREE_OPERAND (exp, 1), p);
2546
2547 case NOP_EXPR:
2548 case CONVERT_EXPR:
2549 case NON_LVALUE_EXPR:
2550 return compare_constant_1 (TREE_OPERAND (exp, 0), p);
2551
2552 default:
2553 if (lang_expand_constant)
2554 {
2555 exp = (*lang_expand_constant) (exp);
2556 return compare_constant_1 (exp, p);
2557 }
2558 return 0;
2559 }
2560
2561 /* Compare constant contents. */
2562 while (--len >= 0)
2563 if (*p++ != *strp++)
2564 return 0;
2565
2566 return p;
2567 }
2568 \f
2569 /* Construct a constant descriptor for the expression EXP.
2570 It is up to the caller to enter the descriptor in the hash table. */
2571
2572 static struct constant_descriptor *
2573 record_constant (exp)
2574 tree exp;
2575 {
2576 struct constant_descriptor *next = 0;
2577 char *label = 0;
2578 rtx rtl = 0;
2579 int pad;
2580
2581 /* Make a struct constant_descriptor. The first three pointers will
2582 be filled in later. Here we just leave space for them. */
2583
2584 obstack_grow (&permanent_obstack, (char *) &next, sizeof next);
2585 obstack_grow (&permanent_obstack, (char *) &label, sizeof label);
2586 obstack_grow (&permanent_obstack, (char *) &rtl, sizeof rtl);
2587
2588 /* Align the descriptor for the data payload. */
2589 pad = (offsetof (struct constant_descriptor, u)
2590 - offsetof(struct constant_descriptor, rtl)
2591 - sizeof(next->rtl));
2592 if (pad > 0)
2593 obstack_blank (&permanent_obstack, pad);
2594
2595 record_constant_1 (exp);
2596 return (struct constant_descriptor *) obstack_finish (&permanent_obstack);
2597 }
2598
2599 /* Add a description of constant expression EXP
2600 to the object growing in `permanent_obstack'.
2601 No need to return its address; the caller will get that
2602 from the obstack when the object is complete. */
2603
2604 static void
2605 record_constant_1 (exp)
2606 tree exp;
2607 {
2608 register const unsigned char *strp;
2609 register int len;
2610 register enum tree_code code = TREE_CODE (exp);
2611
2612 obstack_1grow (&permanent_obstack, (unsigned int) code);
2613
2614 switch (code)
2615 {
2616 case INTEGER_CST:
2617 obstack_1grow (&permanent_obstack, TYPE_PRECISION (TREE_TYPE (exp)));
2618 strp = (unsigned char *) &TREE_INT_CST (exp);
2619 len = sizeof TREE_INT_CST (exp);
2620 break;
2621
2622 case REAL_CST:
2623 obstack_1grow (&permanent_obstack, TYPE_PRECISION (TREE_TYPE (exp)));
2624 strp = (unsigned char *) &TREE_REAL_CST (exp);
2625 len = sizeof TREE_REAL_CST (exp);
2626 break;
2627
2628 case STRING_CST:
2629 if (flag_writable_strings)
2630 return;
2631
2632 obstack_1grow (&permanent_obstack, TYPE_MODE (TREE_TYPE (exp)));
2633 strp = (const unsigned char *) TREE_STRING_POINTER (exp);
2634 len = TREE_STRING_LENGTH (exp);
2635 obstack_grow (&permanent_obstack, (char *) &TREE_STRING_LENGTH (exp),
2636 sizeof TREE_STRING_LENGTH (exp));
2637 break;
2638
2639 case COMPLEX_CST:
2640 record_constant_1 (TREE_REALPART (exp));
2641 record_constant_1 (TREE_IMAGPART (exp));
2642 return;
2643
2644 case CONSTRUCTOR:
2645 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2646 {
2647 int nbytes = int_size_in_bytes (TREE_TYPE (exp));
2648 obstack_grow (&permanent_obstack, &nbytes, sizeof (nbytes));
2649 obstack_blank (&permanent_obstack, nbytes);
2650 get_set_constructor_bytes
2651 (exp, (unsigned char *) permanent_obstack.next_free-nbytes,
2652 nbytes);
2653 return;
2654 }
2655 else
2656 {
2657 register tree link;
2658 int length = list_length (CONSTRUCTOR_ELTS (exp));
2659 enum machine_mode mode = TYPE_MODE (TREE_TYPE (exp));
2660 tree type;
2661 int have_purpose = 0;
2662
2663 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2664 if (TREE_PURPOSE (link))
2665 have_purpose = 1;
2666
2667 obstack_grow (&permanent_obstack, (char *) &length, sizeof length);
2668
2669 /* For record constructors, insist that the types match.
2670 For arrays, just verify both constructors are for arrays
2671 of the same mode. Then insist that either both or none
2672 have any TREE_PURPOSE values. */
2673 if (TREE_CODE (TREE_TYPE (exp)) == RECORD_TYPE)
2674 type = TREE_TYPE (exp);
2675 else
2676 type = 0;
2677
2678 obstack_grow (&permanent_obstack, (char *) &type, sizeof type);
2679 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2680 obstack_grow (&permanent_obstack, &mode, sizeof mode);
2681
2682 obstack_grow (&permanent_obstack, (char *) &have_purpose,
2683 sizeof have_purpose);
2684
2685 /* For arrays, insist that the size in bytes match. */
2686 if (TREE_CODE (TREE_TYPE (exp)) == ARRAY_TYPE)
2687 {
2688 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (exp));
2689 obstack_grow (&permanent_obstack, (char *) &size, sizeof size);
2690 }
2691
2692 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
2693 {
2694 if (TREE_VALUE (link))
2695 record_constant_1 (TREE_VALUE (link));
2696 else
2697 {
2698 tree zero = 0;
2699
2700 obstack_grow (&permanent_obstack,
2701 (char *) &zero, sizeof zero);
2702 }
2703
2704 if (TREE_PURPOSE (link)
2705 && TREE_CODE (TREE_PURPOSE (link)) == FIELD_DECL)
2706 obstack_grow (&permanent_obstack,
2707 (char *) &TREE_PURPOSE (link),
2708 sizeof TREE_PURPOSE (link));
2709 else if (TREE_PURPOSE (link))
2710 record_constant_1 (TREE_PURPOSE (link));
2711 else if (have_purpose)
2712 {
2713 int zero = 0;
2714
2715 obstack_grow (&permanent_obstack,
2716 (char *) &zero, sizeof zero);
2717 }
2718 }
2719 }
2720 return;
2721
2722 case ADDR_EXPR:
2723 {
2724 struct addr_const value;
2725
2726 decode_addr_const (exp, &value);
2727 /* Record the offset. */
2728 obstack_grow (&permanent_obstack,
2729 (char *) &value.offset, sizeof value.offset);
2730
2731 switch (GET_CODE (value.base))
2732 {
2733 case SYMBOL_REF:
2734 /* Record the symbol name. */
2735 obstack_grow (&permanent_obstack, XSTR (value.base, 0),
2736 strlen (XSTR (value.base, 0)) + 1);
2737 break;
2738 case LABEL_REF:
2739 /* Record the address of the CODE_LABEL. It may not have
2740 been emitted yet, so it's UID may be zero. But pointer
2741 identity is good enough. */
2742 obstack_grow (&permanent_obstack, &XEXP (value.base, 0),
2743 sizeof (rtx));
2744 break;
2745 default:
2746 abort ();
2747 }
2748 }
2749 return;
2750
2751 case PLUS_EXPR:
2752 case MINUS_EXPR:
2753 case RANGE_EXPR:
2754 record_constant_1 (TREE_OPERAND (exp, 0));
2755 record_constant_1 (TREE_OPERAND (exp, 1));
2756 return;
2757
2758 case NOP_EXPR:
2759 case CONVERT_EXPR:
2760 case NON_LVALUE_EXPR:
2761 record_constant_1 (TREE_OPERAND (exp, 0));
2762 return;
2763
2764 default:
2765 if (lang_expand_constant)
2766 {
2767 exp = (*lang_expand_constant) (exp);
2768 record_constant_1 (exp);
2769 }
2770 return;
2771 }
2772
2773 /* Record constant contents. */
2774 obstack_grow (&permanent_obstack, strp, len);
2775 }
2776 \f
2777 /* Record a list of constant expressions that were passed to
2778 output_constant_def but that could not be output right away. */
2779
2780 struct deferred_constant
2781 {
2782 struct deferred_constant *next;
2783 tree exp;
2784 int reloc;
2785 int labelno;
2786 };
2787
2788 static struct deferred_constant *deferred_constants;
2789
2790 /* Another list of constants which should be output after the
2791 function. */
2792 static struct deferred_constant *after_function_constants;
2793
2794 /* Nonzero means defer output of addressed subconstants
2795 (i.e., those for which output_constant_def is called.) */
2796 static int defer_addressed_constants_flag;
2797
2798 /* Start deferring output of subconstants. */
2799
2800 void
2801 defer_addressed_constants ()
2802 {
2803 defer_addressed_constants_flag++;
2804 }
2805
2806 /* Stop deferring output of subconstants,
2807 and output now all those that have been deferred. */
2808
2809 void
2810 output_deferred_addressed_constants ()
2811 {
2812 struct deferred_constant *p, *next;
2813
2814 defer_addressed_constants_flag--;
2815
2816 if (defer_addressed_constants_flag > 0)
2817 return;
2818
2819 for (p = deferred_constants; p; p = next)
2820 {
2821 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2822 next = p->next;
2823 free (p);
2824 }
2825
2826 deferred_constants = 0;
2827 }
2828
2829 /* Output any constants which should appear after a function. */
2830
2831 static void
2832 output_after_function_constants ()
2833 {
2834 struct deferred_constant *p, *next;
2835
2836 for (p = after_function_constants; p; p = next)
2837 {
2838 output_constant_def_contents (p->exp, p->reloc, p->labelno);
2839 next = p->next;
2840 free (p);
2841 }
2842
2843 after_function_constants = 0;
2844 }
2845
2846 /* Make a copy of the whole tree structure for a constant.
2847 This handles the same types of nodes that compare_constant
2848 and record_constant handle. */
2849
2850 static tree
2851 copy_constant (exp)
2852 tree exp;
2853 {
2854 switch (TREE_CODE (exp))
2855 {
2856 case ADDR_EXPR:
2857 /* For ADDR_EXPR, we do not want to copy the decl whose address
2858 is requested. We do want to copy constants though. */
2859 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp, 0))) == 'c')
2860 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2861 copy_constant (TREE_OPERAND (exp, 0)));
2862 else
2863 return copy_node (exp);
2864
2865 case INTEGER_CST:
2866 case REAL_CST:
2867 case STRING_CST:
2868 return copy_node (exp);
2869
2870 case COMPLEX_CST:
2871 return build_complex (TREE_TYPE (exp),
2872 copy_constant (TREE_REALPART (exp)),
2873 copy_constant (TREE_IMAGPART (exp)));
2874
2875 case PLUS_EXPR:
2876 case MINUS_EXPR:
2877 return build (TREE_CODE (exp), TREE_TYPE (exp),
2878 copy_constant (TREE_OPERAND (exp, 0)),
2879 copy_constant (TREE_OPERAND (exp, 1)));
2880
2881 case NOP_EXPR:
2882 case CONVERT_EXPR:
2883 case NON_LVALUE_EXPR:
2884 return build1 (TREE_CODE (exp), TREE_TYPE (exp),
2885 copy_constant (TREE_OPERAND (exp, 0)));
2886
2887 case CONSTRUCTOR:
2888 {
2889 tree copy = copy_node (exp);
2890 tree list = copy_list (CONSTRUCTOR_ELTS (exp));
2891 tree tail;
2892
2893 CONSTRUCTOR_ELTS (copy) = list;
2894 for (tail = list; tail; tail = TREE_CHAIN (tail))
2895 TREE_VALUE (tail) = copy_constant (TREE_VALUE (tail));
2896 if (TREE_CODE (TREE_TYPE (exp)) == SET_TYPE)
2897 for (tail = list; tail; tail = TREE_CHAIN (tail))
2898 TREE_PURPOSE (tail) = copy_constant (TREE_PURPOSE (tail));
2899
2900 return copy;
2901 }
2902
2903 default:
2904 abort ();
2905 }
2906 }
2907 \f
2908 /* Return an rtx representing a reference to constant data in memory
2909 for the constant expression EXP.
2910
2911 If assembler code for such a constant has already been output,
2912 return an rtx to refer to it.
2913 Otherwise, output such a constant in memory (or defer it for later)
2914 and generate an rtx for it.
2915
2916 If DEFER is non-zero, the output of string constants can be deferred
2917 and output only if referenced in the function after all optimizations.
2918
2919 The TREE_CST_RTL of EXP is set up to point to that rtx.
2920 The const_hash_table records which constants already have label strings. */
2921
2922 rtx
2923 output_constant_def (exp, defer)
2924 tree exp;
2925 int defer;
2926 {
2927 register int hash;
2928 register struct constant_descriptor *desc;
2929 struct deferred_string **defstr;
2930 char label[256];
2931 int reloc;
2932 int found = 1;
2933 int after_function = 0;
2934 int labelno = -1;
2935
2936 if (TREE_CST_RTL (exp))
2937 return TREE_CST_RTL (exp);
2938
2939 /* Make sure any other constants whose addresses appear in EXP
2940 are assigned label numbers. */
2941
2942 reloc = output_addressed_constants (exp);
2943
2944 /* Compute hash code of EXP. Search the descriptors for that hash code
2945 to see if any of them describes EXP. If yes, the descriptor records
2946 the label number already assigned. */
2947
2948 hash = const_hash (exp) % MAX_HASH_TABLE;
2949
2950 for (desc = const_hash_table[hash]; desc; desc = desc->next)
2951 if (compare_constant (exp, desc))
2952 break;
2953
2954 if (desc == 0)
2955 {
2956 /* No constant equal to EXP is known to have been output.
2957 Make a constant descriptor to enter EXP in the hash table.
2958 Assign the label number and record it in the descriptor for
2959 future calls to this function to find. */
2960
2961 /* Create a string containing the label name, in LABEL. */
2962 labelno = const_labelno++;
2963 ASM_GENERATE_INTERNAL_LABEL (label, "LC", labelno);
2964
2965 desc = record_constant (exp);
2966 desc->next = const_hash_table[hash];
2967 desc->label = ggc_strdup (label);
2968 const_hash_table[hash] = desc;
2969
2970 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2971 desc->rtl
2972 = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (exp)),
2973 gen_rtx_SYMBOL_REF (Pmode, desc->label));
2974
2975 set_mem_attributes (desc->rtl, exp, 1);
2976
2977 found = 0;
2978 }
2979
2980 TREE_CST_RTL (exp) = desc->rtl;
2981
2982 /* Optionally set flags or add text to the name to record information
2983 such as that it is a function name. If the name is changed, the macro
2984 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
2985 #ifdef ENCODE_SECTION_INFO
2986 /* A previously-processed constant would already have section info
2987 encoded in it. */
2988 if (! found)
2989 {
2990 ENCODE_SECTION_INFO (exp);
2991 desc->rtl = TREE_CST_RTL (exp);
2992 desc->label = XSTR (XEXP (desc->rtl, 0), 0);
2993 }
2994 #endif
2995
2996 #ifdef CONSTANT_AFTER_FUNCTION_P
2997 if (current_function_decl != 0
2998 && CONSTANT_AFTER_FUNCTION_P (exp))
2999 after_function = 1;
3000 #endif
3001
3002 if (found
3003 && STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0))
3004 && (!defer || defer_addressed_constants_flag || after_function))
3005 {
3006 defstr = (struct deferred_string **)
3007 htab_find_slot_with_hash (const_str_htab, desc->label,
3008 STRHASH (desc->label), NO_INSERT);
3009 if (defstr)
3010 {
3011 /* If the string is currently deferred but we need to output it now,
3012 remove it from deferred string hash table. */
3013 found = 0;
3014 labelno = (*defstr)->labelno;
3015 STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0)) = 0;
3016 htab_clear_slot (const_str_htab, (void **) defstr);
3017 }
3018 }
3019
3020 /* If this is the first time we've seen this particular constant,
3021 output it (or defer its output for later). */
3022 if (! found)
3023 {
3024 if (defer_addressed_constants_flag || after_function)
3025 {
3026 struct deferred_constant *p;
3027 p = (struct deferred_constant *) xmalloc (sizeof (struct deferred_constant));
3028
3029 p->exp = copy_constant (exp);
3030 p->reloc = reloc;
3031 p->labelno = labelno;
3032 if (after_function)
3033 {
3034 p->next = after_function_constants;
3035 after_function_constants = p;
3036 }
3037 else
3038 {
3039 p->next = deferred_constants;
3040 deferred_constants = p;
3041 }
3042 }
3043 else
3044 {
3045 /* Do no output if -fsyntax-only. */
3046 if (! flag_syntax_only)
3047 {
3048 if (TREE_CODE (exp) != STRING_CST
3049 || !defer
3050 || flag_writable_strings
3051 || (defstr = (struct deferred_string **)
3052 htab_find_slot_with_hash (const_str_htab,
3053 desc->label,
3054 STRHASH (desc->label),
3055 INSERT)) == NULL)
3056 output_constant_def_contents (exp, reloc, labelno);
3057 else
3058 {
3059 struct deferred_string *p;
3060
3061 p = (struct deferred_string *)
3062 xmalloc (sizeof (struct deferred_string));
3063
3064 p->exp = copy_constant (exp);
3065 p->label = desc->label;
3066 p->labelno = labelno;
3067 *defstr = p;
3068 STRING_POOL_ADDRESS_P (XEXP (desc->rtl, 0)) = 1;
3069 }
3070 }
3071 }
3072 }
3073
3074 return TREE_CST_RTL (exp);
3075 }
3076
3077 /* Now output assembler code to define the label for EXP,
3078 and follow it with the data of EXP. */
3079
3080 static void
3081 output_constant_def_contents (exp, reloc, labelno)
3082 tree exp;
3083 int reloc;
3084 int labelno;
3085 {
3086 int align;
3087
3088 if (IN_NAMED_SECTION (exp))
3089 named_section (exp, NULL, reloc);
3090 else
3091 {
3092 /* First switch to text section, except for writable strings. */
3093 #ifdef SELECT_SECTION
3094 SELECT_SECTION (exp, reloc);
3095 #else
3096 if (((TREE_CODE (exp) == STRING_CST) && flag_writable_strings)
3097 || (flag_pic && reloc))
3098 data_section ();
3099 else
3100 readonly_data_section ();
3101 #endif
3102 }
3103
3104 /* Align the location counter as required by EXP's data type. */
3105 align = TYPE_ALIGN (TREE_TYPE (exp));
3106 #ifdef CONSTANT_ALIGNMENT
3107 align = CONSTANT_ALIGNMENT (exp, align);
3108 #endif
3109
3110 if (align > BITS_PER_UNIT)
3111 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
3112
3113 /* Output the label itself. */
3114 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", labelno);
3115
3116 /* Output the value of EXP. */
3117 output_constant (exp,
3118 (TREE_CODE (exp) == STRING_CST
3119 ? TREE_STRING_LENGTH (exp)
3120 : int_size_in_bytes (TREE_TYPE (exp))));
3121
3122 }
3123 \f
3124 /* Structure to represent sufficient information about a constant so that
3125 it can be output when the constant pool is output, so that function
3126 integration can be done, and to simplify handling on machines that reference
3127 constant pool as base+displacement. */
3128
3129 struct pool_constant
3130 {
3131 struct constant_descriptor *desc;
3132 struct pool_constant *next, *next_sym;
3133 const char *label;
3134 rtx constant;
3135 enum machine_mode mode;
3136 int labelno;
3137 int align;
3138 int offset;
3139 int mark;
3140 };
3141
3142 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
3143 The argument is XSTR (... , 0) */
3144
3145 #define SYMHASH(LABEL) \
3146 ((((unsigned long) (LABEL)) & ((1 << HASHBITS) - 1)) % MAX_RTX_HASH_TABLE)
3147 \f
3148 /* Initialize constant pool hashing for a new function. */
3149
3150 void
3151 init_varasm_status (f)
3152 struct function *f;
3153 {
3154 struct varasm_status *p;
3155 p = (struct varasm_status *) xmalloc (sizeof (struct varasm_status));
3156 f->varasm = p;
3157 p->x_const_rtx_hash_table
3158 = ((struct constant_descriptor **)
3159 xcalloc (MAX_RTX_HASH_TABLE, sizeof (struct constant_descriptor *)));
3160 p->x_const_rtx_sym_hash_table
3161 = ((struct pool_constant **)
3162 xcalloc (MAX_RTX_HASH_TABLE, sizeof (struct pool_constant *)));
3163
3164 p->x_first_pool = p->x_last_pool = 0;
3165 p->x_pool_offset = 0;
3166 p->x_const_double_chain = 0;
3167 }
3168
3169 /* Mark PC for GC. */
3170
3171 static void
3172 mark_pool_constant (pc)
3173 struct pool_constant *pc;
3174 {
3175 while (pc)
3176 {
3177 ggc_mark (pc);
3178 ggc_mark_rtx (pc->constant);
3179 pc = pc->next;
3180 }
3181 }
3182
3183 /* Mark P for GC. */
3184
3185 void
3186 mark_varasm_status (p)
3187 struct varasm_status *p;
3188 {
3189 if (p == NULL)
3190 return;
3191
3192 mark_pool_constant (p->x_first_pool);
3193 ggc_mark_rtx (p->x_const_double_chain);
3194 }
3195
3196 /* Clear out all parts of the state in F that can safely be discarded
3197 after the function has been compiled, to let garbage collection
3198 reclaim the memory. */
3199
3200 void
3201 free_varasm_status (f)
3202 struct function *f;
3203 {
3204 struct varasm_status *p;
3205 int i;
3206
3207 p = f->varasm;
3208
3209 /* Clear out the hash tables. */
3210 for (i = 0; i < MAX_RTX_HASH_TABLE; ++i)
3211 {
3212 struct constant_descriptor* cd;
3213
3214 cd = p->x_const_rtx_hash_table[i];
3215 while (cd) {
3216 struct constant_descriptor* next = cd->next;
3217 free (cd);
3218 cd = next;
3219 }
3220 }
3221
3222 free (p->x_const_rtx_hash_table);
3223 free (p->x_const_rtx_sym_hash_table);
3224 free (p);
3225 f->varasm = NULL;
3226 }
3227 \f
3228
3229 /* Express an rtx for a constant integer (perhaps symbolic)
3230 as the sum of a symbol or label plus an explicit integer.
3231 They are stored into VALUE. */
3232
3233 static void
3234 decode_rtx_const (mode, x, value)
3235 enum machine_mode mode;
3236 rtx x;
3237 struct rtx_const *value;
3238 {
3239 /* Clear the whole structure, including any gaps. */
3240 memset (value, 0, sizeof (struct rtx_const));
3241
3242 value->kind = RTX_INT; /* Most usual kind. */
3243 value->mode = mode;
3244
3245 switch (GET_CODE (x))
3246 {
3247 case CONST_DOUBLE:
3248 value->kind = RTX_DOUBLE;
3249 if (GET_MODE (x) != VOIDmode)
3250 {
3251 value->mode = GET_MODE (x);
3252 memcpy ((char *) &value->un.du,
3253 (char *) &CONST_DOUBLE_LOW (x), sizeof value->un.du);
3254 }
3255 else
3256 {
3257 value->un.di.low = CONST_DOUBLE_LOW (x);
3258 value->un.di.high = CONST_DOUBLE_HIGH (x);
3259 }
3260 break;
3261
3262 case CONST_INT:
3263 value->un.addr.offset = INTVAL (x);
3264 break;
3265
3266 case SYMBOL_REF:
3267 case LABEL_REF:
3268 case PC:
3269 value->un.addr.base = x;
3270 break;
3271
3272 case CONST:
3273 x = XEXP (x, 0);
3274 if (GET_CODE (x) == PLUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3275 {
3276 value->un.addr.base = XEXP (x, 0);
3277 value->un.addr.offset = INTVAL (XEXP (x, 1));
3278 }
3279 else if (GET_CODE (x) == MINUS && GET_CODE (XEXP (x, 1)) == CONST_INT)
3280 {
3281 value->un.addr.base = XEXP (x, 0);
3282 value->un.addr.offset = - INTVAL (XEXP (x, 1));
3283 }
3284 else
3285 {
3286 value->un.addr.base = x;
3287 value->un.addr.offset = 0;
3288 }
3289 break;
3290
3291 default:
3292 abort ();
3293 }
3294
3295 if (value->kind == RTX_INT && value->un.addr.base != 0)
3296 switch (GET_CODE (value->un.addr.base))
3297 {
3298 case SYMBOL_REF:
3299 /* Use the string's address, not the SYMBOL_REF's address,
3300 for the sake of addresses of library routines. */
3301 value->un.addr.base = (rtx) XSTR (value->un.addr.base, 0);
3302 break;
3303
3304 case LABEL_REF:
3305 /* For a LABEL_REF, compare labels. */
3306 value->un.addr.base = XEXP (value->un.addr.base, 0);
3307
3308 default:
3309 break;
3310 }
3311 }
3312
3313 /* Given a MINUS expression, simplify it if both sides
3314 include the same symbol. */
3315
3316 rtx
3317 simplify_subtraction (x)
3318 rtx x;
3319 {
3320 struct rtx_const val0, val1;
3321
3322 decode_rtx_const (GET_MODE (x), XEXP (x, 0), &val0);
3323 decode_rtx_const (GET_MODE (x), XEXP (x, 1), &val1);
3324
3325 if (val0.un.addr.base == val1.un.addr.base)
3326 return GEN_INT (val0.un.addr.offset - val1.un.addr.offset);
3327 return x;
3328 }
3329
3330 /* Compute a hash code for a constant RTL expression. */
3331
3332 static int
3333 const_hash_rtx (mode, x)
3334 enum machine_mode mode;
3335 rtx x;
3336 {
3337 register int hi;
3338 register size_t i;
3339
3340 struct rtx_const value;
3341 decode_rtx_const (mode, x, &value);
3342
3343 /* Compute hashing function */
3344 hi = 0;
3345 for (i = 0; i < sizeof value / sizeof (int); i++)
3346 hi += ((int *) &value)[i];
3347
3348 hi &= (1 << HASHBITS) - 1;
3349 hi %= MAX_RTX_HASH_TABLE;
3350 return hi;
3351 }
3352
3353 /* Compare a constant rtl object X with a constant-descriptor DESC.
3354 Return 1 if DESC describes a constant with the same value as X. */
3355
3356 static int
3357 compare_constant_rtx (mode, x, desc)
3358 enum machine_mode mode;
3359 rtx x;
3360 struct constant_descriptor *desc;
3361 {
3362 register int *p = (int *) desc->u.contents;
3363 register int *strp;
3364 register int len;
3365 struct rtx_const value;
3366
3367 decode_rtx_const (mode, x, &value);
3368 strp = (int *) &value;
3369 len = sizeof value / sizeof (int);
3370
3371 /* Compare constant contents. */
3372 while (--len >= 0)
3373 if (*p++ != *strp++)
3374 return 0;
3375
3376 return 1;
3377 }
3378
3379 /* Construct a constant descriptor for the rtl-expression X.
3380 It is up to the caller to enter the descriptor in the hash table. */
3381
3382 static struct constant_descriptor *
3383 record_constant_rtx (mode, x)
3384 enum machine_mode mode;
3385 rtx x;
3386 {
3387 struct constant_descriptor *ptr;
3388
3389 ptr = ((struct constant_descriptor *)
3390 xcalloc (1, (offsetof (struct constant_descriptor, u)
3391 + sizeof (struct rtx_const))));
3392 decode_rtx_const (mode, x, (struct rtx_const *) ptr->u.contents);
3393
3394 return ptr;
3395 }
3396 \f
3397 /* Given a constant rtx X, make (or find) a memory constant for its value
3398 and return a MEM rtx to refer to it in memory. */
3399
3400 rtx
3401 force_const_mem (mode, x)
3402 enum machine_mode mode;
3403 rtx x;
3404 {
3405 register int hash;
3406 register struct constant_descriptor *desc;
3407 char label[256];
3408 const char *found = 0;
3409 rtx def;
3410
3411 /* If we want this CONST_DOUBLE in the same mode as it is in memory
3412 (this will always be true for floating CONST_DOUBLEs that have been
3413 placed in memory, but not for VOIDmode (integer) CONST_DOUBLEs),
3414 use the previous copy. Otherwise, make a new one. Note that in
3415 the unlikely event that this same CONST_DOUBLE is used in two different
3416 modes in an alternating fashion, we will allocate a lot of different
3417 memory locations, but this should be extremely rare. */
3418
3419 if (GET_CODE (x) == CONST_DOUBLE
3420 && GET_CODE (CONST_DOUBLE_MEM (x)) == MEM
3421 && GET_MODE (CONST_DOUBLE_MEM (x)) == mode)
3422 return CONST_DOUBLE_MEM (x);
3423
3424 /* Compute hash code of X. Search the descriptors for that hash code
3425 to see if any of them describes X. If yes, the descriptor records
3426 the label number already assigned. */
3427
3428 hash = const_hash_rtx (mode, x);
3429
3430 for (desc = const_rtx_hash_table[hash]; desc; desc = desc->next)
3431 if (compare_constant_rtx (mode, x, desc))
3432 {
3433 found = desc->label;
3434 break;
3435 }
3436
3437 if (found == 0)
3438 {
3439 register struct pool_constant *pool;
3440 int align;
3441
3442 /* No constant equal to X is known to have been output.
3443 Make a constant descriptor to enter X in the hash table.
3444 Assign the label number and record it in the descriptor for
3445 future calls to this function to find. */
3446
3447 desc = record_constant_rtx (mode, x);
3448 desc->next = const_rtx_hash_table[hash];
3449 const_rtx_hash_table[hash] = desc;
3450
3451 /* Align the location counter as required by EXP's data type. */
3452 align = (mode == VOIDmode) ? UNITS_PER_WORD : GET_MODE_SIZE (mode);
3453 if (align > BIGGEST_ALIGNMENT / BITS_PER_UNIT)
3454 align = BIGGEST_ALIGNMENT / BITS_PER_UNIT;
3455 #ifdef CONSTANT_ALIGNMENT
3456 align = CONSTANT_ALIGNMENT (make_tree (type_for_mode (mode, 0), x),
3457 align * BITS_PER_UNIT) / BITS_PER_UNIT;
3458 #endif
3459
3460 pool_offset += align - 1;
3461 pool_offset &= ~ (align - 1);
3462
3463 if (GET_CODE (x) == LABEL_REF)
3464 LABEL_PRESERVE_P (XEXP (x, 0)) = 1;
3465
3466 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3467
3468 pool = (struct pool_constant *) ggc_alloc (sizeof (struct pool_constant));
3469 pool->desc = desc;
3470 pool->constant = x;
3471 pool->mode = mode;
3472 pool->labelno = const_labelno;
3473 pool->align = align;
3474 pool->offset = pool_offset;
3475 pool->mark = 1;
3476 pool->next = 0;
3477
3478 if (last_pool == 0)
3479 first_pool = pool;
3480 else
3481 last_pool->next = pool;
3482
3483 last_pool = pool;
3484 pool_offset += GET_MODE_SIZE (mode);
3485
3486 /* Create a string containing the label name, in LABEL. */
3487 ASM_GENERATE_INTERNAL_LABEL (label, "LC", const_labelno);
3488
3489 ++const_labelno;
3490
3491 desc->label = found = ggc_strdup (label);
3492
3493 /* Add label to symbol hash table. */
3494 hash = SYMHASH (found);
3495 pool->label = found;
3496 pool->next_sym = const_rtx_sym_hash_table[hash];
3497 const_rtx_sym_hash_table[hash] = pool;
3498 }
3499
3500 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3501
3502 def = gen_rtx_MEM (mode, gen_rtx_SYMBOL_REF (Pmode, found));
3503 set_mem_attributes (def, type_for_mode (mode, 0), 1);
3504 RTX_UNCHANGING_P (def) = 1;
3505
3506 /* Mark the symbol_ref as belonging to this constants pool. */
3507 CONSTANT_POOL_ADDRESS_P (XEXP (def, 0)) = 1;
3508 current_function_uses_const_pool = 1;
3509
3510 if (GET_CODE (x) == CONST_DOUBLE)
3511 {
3512 if (CONST_DOUBLE_MEM (x) == cc0_rtx)
3513 {
3514 CONST_DOUBLE_CHAIN (x) = const_double_chain;
3515 const_double_chain = x;
3516 }
3517 CONST_DOUBLE_MEM (x) = def;
3518 }
3519
3520 return def;
3521 }
3522 \f
3523 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3524 the corresponding pool_constant structure. */
3525
3526 static struct pool_constant *
3527 find_pool_constant (f, addr)
3528 struct function *f;
3529 rtx addr;
3530 {
3531 struct pool_constant *pool;
3532 const char *label = XSTR (addr, 0);
3533
3534 for (pool = f->varasm->x_const_rtx_sym_hash_table[SYMHASH (label)]; pool;
3535 pool = pool->next_sym)
3536 if (pool->label == label)
3537 return pool;
3538
3539 abort ();
3540 }
3541
3542 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3543
3544 rtx
3545 get_pool_constant (addr)
3546 rtx addr;
3547 {
3548 return (find_pool_constant (cfun, addr))->constant;
3549 }
3550
3551 /* Likewise, but for the constant pool of a specific function. */
3552
3553 rtx
3554 get_pool_constant_for_function (f, addr)
3555 struct function *f;
3556 rtx addr;
3557 {
3558 return (find_pool_constant (f, addr))->constant;
3559 }
3560
3561 /* Similar, return the mode. */
3562
3563 enum machine_mode
3564 get_pool_mode (addr)
3565 rtx addr;
3566 {
3567 return (find_pool_constant (cfun, addr))->mode;
3568 }
3569
3570 enum machine_mode
3571 get_pool_mode_for_function (f, addr)
3572 struct function *f;
3573 rtx addr;
3574 {
3575 return (find_pool_constant (f, addr))->mode;
3576 }
3577
3578 /* Similar, return the offset in the constant pool. */
3579
3580 int
3581 get_pool_offset (addr)
3582 rtx addr;
3583 {
3584 return (find_pool_constant (cfun, addr))->offset;
3585 }
3586
3587 /* Return the size of the constant pool. */
3588
3589 int
3590 get_pool_size ()
3591 {
3592 return pool_offset;
3593 }
3594 \f
3595 /* Write all the constants in the constant pool. */
3596
3597 void
3598 output_constant_pool (fnname, fndecl)
3599 const char *fnname ATTRIBUTE_UNUSED;
3600 tree fndecl ATTRIBUTE_UNUSED;
3601 {
3602 struct pool_constant *pool;
3603 rtx x;
3604 union real_extract u;
3605
3606 /* It is possible for gcc to call force_const_mem and then to later
3607 discard the instructions which refer to the constant. In such a
3608 case we do not need to output the constant. */
3609 mark_constant_pool ();
3610
3611 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3612 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file, fnname, fndecl, pool_offset);
3613 #endif
3614
3615 for (pool = first_pool; pool; pool = pool->next)
3616 {
3617 rtx tmp;
3618
3619 x = pool->constant;
3620
3621 if (! pool->mark)
3622 continue;
3623
3624 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3625 whose CODE_LABEL has been deleted. This can occur if a jump table
3626 is eliminated by optimization. If so, write a constant of zero
3627 instead. Note that this can also happen by turning the
3628 CODE_LABEL into a NOTE. */
3629 /* ??? This seems completely and utterly wrong. Certainly it's
3630 not true for NOTE_INSN_DELETED_LABEL, but I disbelieve proper
3631 functioning even with INSN_DELETED_P and friends. */
3632
3633 tmp = x;
3634 switch (GET_CODE (x))
3635 {
3636 case CONST:
3637 if (GET_CODE (XEXP (x, 0)) != PLUS
3638 || GET_CODE (XEXP (XEXP (x, 0), 0)) != LABEL_REF)
3639 break;
3640 tmp = XEXP (XEXP (x, 0), 0);
3641 /* FALLTHRU */
3642
3643 case LABEL_REF:
3644 tmp = XEXP (x, 0);
3645 if (INSN_DELETED_P (tmp)
3646 || (GET_CODE (tmp) == NOTE
3647 && NOTE_LINE_NUMBER (tmp) == NOTE_INSN_DELETED))
3648 {
3649 abort ();
3650 x = const0_rtx;
3651 }
3652 break;
3653
3654 default:
3655 break;
3656 }
3657
3658 /* First switch to correct section. */
3659 #ifdef SELECT_RTX_SECTION
3660 SELECT_RTX_SECTION (pool->mode, x);
3661 #else
3662 readonly_data_section ();
3663 #endif
3664
3665 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3666 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file, x, pool->mode,
3667 pool->align, pool->labelno, done);
3668 #endif
3669
3670 if (pool->align > 1)
3671 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (pool->align));
3672
3673 /* Output the label. */
3674 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LC", pool->labelno);
3675
3676 /* Output the value of the constant itself. */
3677 switch (GET_MODE_CLASS (pool->mode))
3678 {
3679 case MODE_FLOAT:
3680 if (GET_CODE (x) != CONST_DOUBLE)
3681 abort ();
3682
3683 memcpy ((char *) &u, (char *) &CONST_DOUBLE_LOW (x), sizeof u);
3684 assemble_real (u.d, pool->mode);
3685 break;
3686
3687 case MODE_INT:
3688 case MODE_PARTIAL_INT:
3689 assemble_integer (x, GET_MODE_SIZE (pool->mode), 1);
3690 break;
3691
3692 default:
3693 abort ();
3694 }
3695
3696 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3697 done: ;
3698 #endif
3699
3700 }
3701
3702 #ifdef ASM_OUTPUT_POOL_EPILOGUE
3703 ASM_OUTPUT_POOL_EPILOGUE (asm_out_file, fnname, fndecl, pool_offset);
3704 #endif
3705
3706 /* Done with this pool. */
3707 first_pool = last_pool = 0;
3708 }
3709
3710 /* Look through the instructions for this function, and mark all the
3711 entries in the constant pool which are actually being used.
3712 Emit used deferred strings. */
3713
3714 static void
3715 mark_constant_pool ()
3716 {
3717 register rtx insn;
3718 struct pool_constant *pool;
3719
3720 if (first_pool == 0 && htab_elements (const_str_htab) == 0)
3721 return;
3722
3723 for (pool = first_pool; pool; pool = pool->next)
3724 pool->mark = 0;
3725
3726 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3727 if (INSN_P (insn))
3728 mark_constants (PATTERN (insn));
3729
3730 for (insn = current_function_epilogue_delay_list;
3731 insn;
3732 insn = XEXP (insn, 1))
3733 if (INSN_P (insn))
3734 mark_constants (PATTERN (insn));
3735 }
3736
3737 /* Look through appropriate parts of X, marking all entries in the
3738 constant pool which are actually being used. Entries that are only
3739 referenced by other constants are also marked as used. Emit
3740 deferred strings that are used. */
3741
3742 static void
3743 mark_constants (x)
3744 rtx x;
3745 {
3746 register int i;
3747 register const char *format_ptr;
3748
3749 if (x == 0)
3750 return;
3751
3752 if (GET_CODE (x) == SYMBOL_REF)
3753 {
3754 mark_constant (&x, NULL);
3755 return;
3756 }
3757 /* Never search inside a CONST_DOUBLE, because CONST_DOUBLE_MEM may be
3758 a MEM, but does not constitute a use of that MEM. */
3759 else if (GET_CODE (x) == CONST_DOUBLE)
3760 return;
3761
3762 /* Insns may appear inside a SEQUENCE. Only check the patterns of
3763 insns, not any notes that may be attached. We don't want to mark
3764 a constant just because it happens to appear in a REG_EQUIV note. */
3765 if (INSN_P (x))
3766 {
3767 mark_constants (PATTERN (x));
3768 return;
3769 }
3770
3771 format_ptr = GET_RTX_FORMAT (GET_CODE (x));
3772
3773 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3774 {
3775 switch (*format_ptr++)
3776 {
3777 case 'e':
3778 mark_constants (XEXP (x, i));
3779 break;
3780
3781 case 'E':
3782 if (XVEC (x, i) != 0)
3783 {
3784 register int j;
3785
3786 for (j = 0; j < XVECLEN (x, i); j++)
3787 mark_constants (XVECEXP (x, i, j));
3788 }
3789 break;
3790
3791 case 'S':
3792 case 's':
3793 case '0':
3794 case 'i':
3795 case 'w':
3796 case 'n':
3797 case 'u':
3798 break;
3799
3800 default:
3801 abort ();
3802 }
3803 }
3804 }
3805
3806 /* Given a SYMBOL_REF CURRENT_RTX, mark it and all constants it refers
3807 to as used. Emit referenced deferred strings. This function can
3808 be used with for_each_rtx () to mark all SYMBOL_REFs in an rtx. */
3809
3810 static int
3811 mark_constant (current_rtx, data)
3812 rtx *current_rtx;
3813 void *data ATTRIBUTE_UNUSED;
3814 {
3815 rtx x = *current_rtx;
3816
3817 if (x == NULL_RTX)
3818 return 0;
3819 else if (GET_CODE(x) == CONST_DOUBLE)
3820 /* Never search inside a CONST_DOUBLE because CONST_DOUBLE_MEM may
3821 be a MEM but does not constitute a use of that MEM. */
3822 return -1;
3823 else if (GET_CODE (x) == SYMBOL_REF)
3824 {
3825 if (CONSTANT_POOL_ADDRESS_P (x))
3826 {
3827 struct pool_constant *pool = find_pool_constant (cfun, x);
3828 if (pool->mark == 0) {
3829 pool->mark = 1;
3830 for_each_rtx (&(pool->constant), &mark_constant, NULL);
3831 }
3832 else
3833 return -1;
3834 }
3835 else if (STRING_POOL_ADDRESS_P (x))
3836 {
3837 struct deferred_string **defstr;
3838
3839 defstr = (struct deferred_string **)
3840 htab_find_slot_with_hash (const_str_htab, XSTR (x, 0),
3841 STRHASH (XSTR (x, 0)), NO_INSERT);
3842 if (defstr)
3843 {
3844 struct deferred_string *p = *defstr;
3845
3846 STRING_POOL_ADDRESS_P (x) = 0;
3847 output_constant_def_contents (p->exp, 0, p->labelno);
3848 htab_clear_slot (const_str_htab, (void **) defstr);
3849 }
3850 }
3851 }
3852 return 0;
3853 }
3854 \f
3855 /* Find all the constants whose addresses are referenced inside of EXP,
3856 and make sure assembler code with a label has been output for each one.
3857 Indicate whether an ADDR_EXPR has been encountered. */
3858
3859 static int
3860 output_addressed_constants (exp)
3861 tree exp;
3862 {
3863 int reloc = 0;
3864
3865 /* Give the front-end a chance to convert VALUE to something that
3866 looks more like a constant to the back-end. */
3867 if (lang_expand_constant)
3868 exp = (*lang_expand_constant) (exp);
3869
3870 switch (TREE_CODE (exp))
3871 {
3872 case ADDR_EXPR:
3873 {
3874 register tree constant = TREE_OPERAND (exp, 0);
3875
3876 while (TREE_CODE (constant) == COMPONENT_REF)
3877 {
3878 constant = TREE_OPERAND (constant, 0);
3879 }
3880
3881 if (TREE_CODE_CLASS (TREE_CODE (constant)) == 'c'
3882 || TREE_CODE (constant) == CONSTRUCTOR)
3883 /* No need to do anything here
3884 for addresses of variables or functions. */
3885 output_constant_def (constant, 0);
3886 }
3887 reloc = 1;
3888 break;
3889
3890 case PLUS_EXPR:
3891 case MINUS_EXPR:
3892 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3893 reloc |= output_addressed_constants (TREE_OPERAND (exp, 1));
3894 break;
3895
3896 case NOP_EXPR:
3897 case CONVERT_EXPR:
3898 case NON_LVALUE_EXPR:
3899 reloc = output_addressed_constants (TREE_OPERAND (exp, 0));
3900 break;
3901
3902 case CONSTRUCTOR:
3903 {
3904 register tree link;
3905 for (link = CONSTRUCTOR_ELTS (exp); link; link = TREE_CHAIN (link))
3906 if (TREE_VALUE (link) != 0)
3907 reloc |= output_addressed_constants (TREE_VALUE (link));
3908 }
3909 break;
3910
3911 default:
3912 break;
3913 }
3914 return reloc;
3915 }
3916 \f
3917 /* Return nonzero if VALUE is a valid constant-valued expression
3918 for use in initializing a static variable; one that can be an
3919 element of a "constant" initializer.
3920
3921 Return null_pointer_node if the value is absolute;
3922 if it is relocatable, return the variable that determines the relocation.
3923 We assume that VALUE has been folded as much as possible;
3924 therefore, we do not need to check for such things as
3925 arithmetic-combinations of integers. */
3926
3927 tree
3928 initializer_constant_valid_p (value, endtype)
3929 tree value;
3930 tree endtype;
3931 {
3932 /* Give the front-end a chance to convert VALUE to something that
3933 looks more like a constant to the back-end. */
3934 if (lang_expand_constant)
3935 value = (*lang_expand_constant) (value);
3936
3937 switch (TREE_CODE (value))
3938 {
3939 case CONSTRUCTOR:
3940 if ((TREE_CODE (TREE_TYPE (value)) == UNION_TYPE
3941 || TREE_CODE (TREE_TYPE (value)) == RECORD_TYPE)
3942 && TREE_CONSTANT (value)
3943 && CONSTRUCTOR_ELTS (value))
3944 return
3945 initializer_constant_valid_p (TREE_VALUE (CONSTRUCTOR_ELTS (value)),
3946 endtype);
3947
3948 return TREE_STATIC (value) ? null_pointer_node : 0;
3949
3950 case INTEGER_CST:
3951 case REAL_CST:
3952 case STRING_CST:
3953 case COMPLEX_CST:
3954 return null_pointer_node;
3955
3956 case ADDR_EXPR:
3957 return staticp (TREE_OPERAND (value, 0)) ? TREE_OPERAND (value, 0) : 0;
3958
3959 case NON_LVALUE_EXPR:
3960 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3961
3962 case CONVERT_EXPR:
3963 case NOP_EXPR:
3964 /* Allow conversions between pointer types. */
3965 if (POINTER_TYPE_P (TREE_TYPE (value))
3966 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3967 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3968
3969 /* Allow conversions between real types. */
3970 if (FLOAT_TYPE_P (TREE_TYPE (value))
3971 && FLOAT_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3972 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3973
3974 /* Allow length-preserving conversions between integer types. */
3975 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3976 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3977 && (TYPE_PRECISION (TREE_TYPE (value))
3978 == TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3979 return initializer_constant_valid_p (TREE_OPERAND (value, 0), endtype);
3980
3981 /* Allow conversions between other integer types only if
3982 explicit value. */
3983 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3984 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
3985 {
3986 tree inner = initializer_constant_valid_p (TREE_OPERAND (value, 0),
3987 endtype);
3988 if (inner == null_pointer_node)
3989 return null_pointer_node;
3990 break;
3991 }
3992
3993 /* Allow (int) &foo provided int is as wide as a pointer. */
3994 if (INTEGRAL_TYPE_P (TREE_TYPE (value))
3995 && POINTER_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0)))
3996 && (TYPE_PRECISION (TREE_TYPE (value))
3997 >= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0)))))
3998 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
3999 endtype);
4000
4001 /* Likewise conversions from int to pointers, but also allow
4002 conversions from 0. */
4003 if (POINTER_TYPE_P (TREE_TYPE (value))
4004 && INTEGRAL_TYPE_P (TREE_TYPE (TREE_OPERAND (value, 0))))
4005 {
4006 if (integer_zerop (TREE_OPERAND (value, 0)))
4007 return null_pointer_node;
4008 else if (TYPE_PRECISION (TREE_TYPE (value))
4009 <= TYPE_PRECISION (TREE_TYPE (TREE_OPERAND (value, 0))))
4010 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4011 endtype);
4012 }
4013
4014 /* Allow conversions to union types if the value inside is okay. */
4015 if (TREE_CODE (TREE_TYPE (value)) == UNION_TYPE)
4016 return initializer_constant_valid_p (TREE_OPERAND (value, 0),
4017 endtype);
4018 break;
4019
4020 case PLUS_EXPR:
4021 if (! INTEGRAL_TYPE_P (endtype)
4022 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4023 {
4024 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4025 endtype);
4026 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4027 endtype);
4028 /* If either term is absolute, use the other terms relocation. */
4029 if (valid0 == null_pointer_node)
4030 return valid1;
4031 if (valid1 == null_pointer_node)
4032 return valid0;
4033 }
4034 break;
4035
4036 case MINUS_EXPR:
4037 if (! INTEGRAL_TYPE_P (endtype)
4038 || TYPE_PRECISION (endtype) >= POINTER_SIZE)
4039 {
4040 tree valid0 = initializer_constant_valid_p (TREE_OPERAND (value, 0),
4041 endtype);
4042 tree valid1 = initializer_constant_valid_p (TREE_OPERAND (value, 1),
4043 endtype);
4044 /* Win if second argument is absolute. */
4045 if (valid1 == null_pointer_node)
4046 return valid0;
4047 /* Win if both arguments have the same relocation.
4048 Then the value is absolute. */
4049 if (valid0 == valid1 && valid0 != 0)
4050 return null_pointer_node;
4051
4052 /* Since GCC guarantees that string constants are unique in the
4053 generated code, a subtraction between two copies of the same
4054 constant string is absolute. */
4055 if (valid0 && TREE_CODE (valid0) == STRING_CST &&
4056 valid1 && TREE_CODE (valid1) == STRING_CST &&
4057 TREE_STRING_POINTER (valid0) == TREE_STRING_POINTER (valid1))
4058 return null_pointer_node;
4059 }
4060
4061 /* Support differences between labels. */
4062 if (INTEGRAL_TYPE_P (endtype))
4063 {
4064 tree op0, op1;
4065 op0 = TREE_OPERAND (value, 0);
4066 op1 = TREE_OPERAND (value, 1);
4067 STRIP_NOPS (op0);
4068 STRIP_NOPS (op1);
4069
4070 if (TREE_CODE (op0) == ADDR_EXPR
4071 && TREE_CODE (TREE_OPERAND (op0, 0)) == LABEL_DECL
4072 && TREE_CODE (op1) == ADDR_EXPR
4073 && TREE_CODE (TREE_OPERAND (op1, 0)) == LABEL_DECL)
4074 return null_pointer_node;
4075 }
4076 break;
4077
4078 default:
4079 break;
4080 }
4081
4082 return 0;
4083 }
4084 \f
4085 /* Output assembler code for constant EXP to FILE, with no label.
4086 This includes the pseudo-op such as ".int" or ".byte", and a newline.
4087 Assumes output_addressed_constants has been done on EXP already.
4088
4089 Generate exactly SIZE bytes of assembler data, padding at the end
4090 with zeros if necessary. SIZE must always be specified.
4091
4092 SIZE is important for structure constructors,
4093 since trailing members may have been omitted from the constructor.
4094 It is also important for initialization of arrays from string constants
4095 since the full length of the string constant might not be wanted.
4096 It is also needed for initialization of unions, where the initializer's
4097 type is just one member, and that may not be as long as the union.
4098
4099 There a case in which we would fail to output exactly SIZE bytes:
4100 for a structure constructor that wants to produce more than SIZE bytes.
4101 But such constructors will never be generated for any possible input. */
4102
4103 void
4104 output_constant (exp, size)
4105 register tree exp;
4106 register int size;
4107 {
4108 register enum tree_code code = TREE_CODE (TREE_TYPE (exp));
4109
4110 /* Some front-ends use constants other than the standard
4111 language-indepdent varieties, but which may still be output
4112 directly. Give the front-end a chance to convert EXP to a
4113 language-independent representation. */
4114 if (lang_expand_constant)
4115 {
4116 exp = (*lang_expand_constant) (exp);
4117 code = TREE_CODE (TREE_TYPE (exp));
4118 }
4119
4120 if (size == 0 || flag_syntax_only)
4121 return;
4122
4123 /* Eliminate the NON_LVALUE_EXPR_EXPR that makes a cast not be an lvalue.
4124 That way we get the constant (we hope) inside it. Also, strip off any
4125 NOP_EXPR that converts between two record, union, array, or set types
4126 or a CONVERT_EXPR that converts to a union TYPE. */
4127 while ((TREE_CODE (exp) == NOP_EXPR
4128 && (TREE_TYPE (exp) == TREE_TYPE (TREE_OPERAND (exp, 0))
4129 || AGGREGATE_TYPE_P (TREE_TYPE (exp))))
4130 || (TREE_CODE (exp) == CONVERT_EXPR
4131 && code == UNION_TYPE)
4132 || TREE_CODE (exp) == NON_LVALUE_EXPR)
4133 {
4134 exp = TREE_OPERAND (exp, 0);
4135 code = TREE_CODE (TREE_TYPE (exp));
4136 }
4137
4138 /* Allow a constructor with no elements for any data type.
4139 This means to fill the space with zeros. */
4140 if (TREE_CODE (exp) == CONSTRUCTOR && CONSTRUCTOR_ELTS (exp) == 0)
4141 {
4142 assemble_zeros (size);
4143 return;
4144 }
4145
4146 switch (code)
4147 {
4148 case CHAR_TYPE:
4149 case BOOLEAN_TYPE:
4150 case INTEGER_TYPE:
4151 case ENUMERAL_TYPE:
4152 case POINTER_TYPE:
4153 case REFERENCE_TYPE:
4154 /* ??? What about (int)((float)(int)&foo + 4) */
4155 while (TREE_CODE (exp) == NOP_EXPR || TREE_CODE (exp) == CONVERT_EXPR
4156 || TREE_CODE (exp) == NON_LVALUE_EXPR)
4157 exp = TREE_OPERAND (exp, 0);
4158
4159 if (! assemble_integer (expand_expr (exp, NULL_RTX, VOIDmode,
4160 EXPAND_INITIALIZER),
4161 size, 0))
4162 error ("initializer for integer value is too complicated");
4163 size = 0;
4164 break;
4165
4166 case REAL_TYPE:
4167 if (TREE_CODE (exp) != REAL_CST)
4168 error ("initializer for floating value is not a floating constant");
4169
4170 assemble_real (TREE_REAL_CST (exp),
4171 mode_for_size (size * BITS_PER_UNIT, MODE_FLOAT, 0));
4172 size = 0;
4173 break;
4174
4175 case COMPLEX_TYPE:
4176 output_constant (TREE_REALPART (exp), size / 2);
4177 output_constant (TREE_IMAGPART (exp), size / 2);
4178 size -= (size / 2) * 2;
4179 break;
4180
4181 case ARRAY_TYPE:
4182 if (TREE_CODE (exp) == CONSTRUCTOR)
4183 {
4184 output_constructor (exp, size);
4185 return;
4186 }
4187 else if (TREE_CODE (exp) == STRING_CST)
4188 {
4189 int excess = 0;
4190
4191 if (size > TREE_STRING_LENGTH (exp))
4192 {
4193 excess = size - TREE_STRING_LENGTH (exp);
4194 size = TREE_STRING_LENGTH (exp);
4195 }
4196
4197 assemble_string (TREE_STRING_POINTER (exp), size);
4198 size = excess;
4199 }
4200 else
4201 abort ();
4202 break;
4203
4204 case RECORD_TYPE:
4205 case UNION_TYPE:
4206 if (TREE_CODE (exp) == CONSTRUCTOR)
4207 output_constructor (exp, size);
4208 else
4209 abort ();
4210 return;
4211
4212 case SET_TYPE:
4213 if (TREE_CODE (exp) == INTEGER_CST)
4214 assemble_integer (expand_expr (exp, NULL_RTX,
4215 VOIDmode, EXPAND_INITIALIZER),
4216 size, 1);
4217 else if (TREE_CODE (exp) == CONSTRUCTOR)
4218 {
4219 unsigned char *buffer = (unsigned char *) alloca (size);
4220 if (get_set_constructor_bytes (exp, buffer, size))
4221 abort ();
4222 assemble_string ((char *) buffer, size);
4223 }
4224 else
4225 error ("unknown set constructor type");
4226 return;
4227
4228 default:
4229 break; /* ??? */
4230 }
4231
4232 if (size > 0)
4233 assemble_zeros (size);
4234 }
4235
4236 \f
4237 /* Subroutine of output_constructor, used for computing the size of
4238 arrays of unspecified length. VAL must be a CONSTRUCTOR of an array
4239 type with an unspecified upper bound. */
4240
4241 static unsigned HOST_WIDE_INT
4242 array_size_for_constructor (val)
4243 tree val;
4244 {
4245 tree max_index, i;
4246
4247 max_index = NULL_TREE;
4248 for (i = CONSTRUCTOR_ELTS (val); i ; i = TREE_CHAIN (i))
4249 {
4250 tree index = TREE_PURPOSE (i);
4251
4252 if (TREE_CODE (index) == RANGE_EXPR)
4253 index = TREE_OPERAND (index, 1);
4254 if (max_index == NULL_TREE || tree_int_cst_lt (max_index, index))
4255 max_index = index;
4256 }
4257
4258 if (max_index == NULL_TREE)
4259 return 0;
4260
4261 /* Compute the total number of array elements. */
4262 i = size_binop (MINUS_EXPR, convert (sizetype, max_index),
4263 convert (sizetype,
4264 TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (val)))));
4265 i = size_binop (PLUS_EXPR, i, convert (sizetype, integer_one_node));
4266
4267 /* Multiply by the array element unit size to find number of bytes. */
4268 i = size_binop (MULT_EXPR, i, TYPE_SIZE_UNIT (TREE_TYPE (TREE_TYPE (val))));
4269
4270 return tree_low_cst (i, 1);
4271 }
4272
4273 /* Subroutine of output_constant, used for CONSTRUCTORs (aggregate constants).
4274 Generate at least SIZE bytes, padding if necessary. */
4275
4276 static void
4277 output_constructor (exp, size)
4278 tree exp;
4279 int size;
4280 {
4281 tree type = TREE_TYPE (exp);
4282 register tree link, field = 0;
4283 tree min_index = 0;
4284 /* Number of bytes output or skipped so far.
4285 In other words, current position within the constructor. */
4286 HOST_WIDE_INT total_bytes = 0;
4287 /* Non-zero means BYTE contains part of a byte, to be output. */
4288 int byte_buffer_in_use = 0;
4289 register int byte = 0;
4290
4291 if (HOST_BITS_PER_WIDE_INT < BITS_PER_UNIT)
4292 abort ();
4293
4294 if (TREE_CODE (type) == RECORD_TYPE)
4295 field = TYPE_FIELDS (type);
4296
4297 if (TREE_CODE (type) == ARRAY_TYPE
4298 && TYPE_DOMAIN (type) != 0)
4299 min_index = TYPE_MIN_VALUE (TYPE_DOMAIN (type));
4300
4301 /* As LINK goes through the elements of the constant,
4302 FIELD goes through the structure fields, if the constant is a structure.
4303 if the constant is a union, then we override this,
4304 by getting the field from the TREE_LIST element.
4305 But the constant could also be an array. Then FIELD is zero.
4306
4307 There is always a maximum of one element in the chain LINK for unions
4308 (even if the initializer in a source program incorrectly contains
4309 more one). */
4310 for (link = CONSTRUCTOR_ELTS (exp);
4311 link;
4312 link = TREE_CHAIN (link),
4313 field = field ? TREE_CHAIN (field) : 0)
4314 {
4315 tree val = TREE_VALUE (link);
4316 tree index = 0;
4317
4318 /* The element in a union constructor specifies the proper field
4319 or index. */
4320 if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
4321 || TREE_CODE (type) == QUAL_UNION_TYPE)
4322 && TREE_PURPOSE (link) != 0)
4323 field = TREE_PURPOSE (link);
4324
4325 else if (TREE_CODE (type) == ARRAY_TYPE)
4326 index = TREE_PURPOSE (link);
4327
4328 /* Eliminate the marker that makes a cast not be an lvalue. */
4329 if (val != 0)
4330 STRIP_NOPS (val);
4331
4332 if (index && TREE_CODE (index) == RANGE_EXPR)
4333 {
4334 unsigned HOST_WIDE_INT fieldsize
4335 = int_size_in_bytes (TREE_TYPE (type));
4336 HOST_WIDE_INT lo_index = tree_low_cst (TREE_OPERAND (index, 0), 0);
4337 HOST_WIDE_INT hi_index = tree_low_cst (TREE_OPERAND (index, 1), 0);
4338 HOST_WIDE_INT index;
4339
4340 for (index = lo_index; index <= hi_index; index++)
4341 {
4342 /* Output the element's initial value. */
4343 if (val == 0)
4344 assemble_zeros (fieldsize);
4345 else
4346 output_constant (val, fieldsize);
4347
4348 /* Count its size. */
4349 total_bytes += fieldsize;
4350 }
4351 }
4352 else if (field == 0 || !DECL_BIT_FIELD (field))
4353 {
4354 /* An element that is not a bit-field. */
4355
4356 unsigned HOST_WIDE_INT fieldsize;
4357 /* Since this structure is static,
4358 we know the positions are constant. */
4359 HOST_WIDE_INT pos = field ? int_byte_position (field) : 0;
4360
4361 if (index != 0)
4362 pos = (tree_low_cst (TYPE_SIZE_UNIT (TREE_TYPE (val)), 1)
4363 * (tree_low_cst (index, 0) - tree_low_cst (min_index, 0)));
4364
4365 /* Output any buffered-up bit-fields preceding this element. */
4366 if (byte_buffer_in_use)
4367 {
4368 ASM_OUTPUT_BYTE (asm_out_file, byte);
4369 total_bytes++;
4370 byte_buffer_in_use = 0;
4371 }
4372
4373 /* Advance to offset of this element.
4374 Note no alignment needed in an array, since that is guaranteed
4375 if each element has the proper size. */
4376 if ((field != 0 || index != 0) && pos != total_bytes)
4377 {
4378 assemble_zeros (pos - total_bytes);
4379 total_bytes = pos;
4380 }
4381
4382 else if (field != 0 && DECL_PACKED (field))
4383 /* Some assemblers automaticallly align a datum according to its
4384 size if no align directive is specified. The datum, however,
4385 may be declared with 'packed' attribute, so we have to disable
4386 such a feature. */
4387 ASM_OUTPUT_ALIGN (asm_out_file, 0);
4388
4389 /* Determine size this element should occupy. */
4390 if (field)
4391 {
4392 fieldsize = 0;
4393
4394 /* If this is an array with an unspecified upper bound,
4395 the initializer determines the size. */
4396 /* ??? This ought to only checked if DECL_SIZE_UNIT is NULL,
4397 but we cannot do this until the deprecated support for
4398 initializing zero-length array members is removed. */
4399 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
4400 && TYPE_DOMAIN (TREE_TYPE (field))
4401 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
4402 {
4403 fieldsize = array_size_for_constructor (val);
4404 /* Given a non-empty initialization, this field had
4405 better be last. */
4406 if (fieldsize != 0 && TREE_CHAIN (field) != NULL_TREE)
4407 abort ();
4408 }
4409 else if (DECL_SIZE_UNIT (field))
4410 {
4411 /* ??? This can't be right. If the decl size overflows
4412 a host integer we will silently emit no data. */
4413 if (host_integerp (DECL_SIZE_UNIT (field), 1))
4414 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 1);
4415 }
4416 }
4417 else
4418 fieldsize = int_size_in_bytes (TREE_TYPE (type));
4419
4420 /* Output the element's initial value. */
4421 if (val == 0)
4422 assemble_zeros (fieldsize);
4423 else
4424 output_constant (val, fieldsize);
4425
4426 /* Count its size. */
4427 total_bytes += fieldsize;
4428 }
4429 else if (val != 0 && TREE_CODE (val) != INTEGER_CST)
4430 error ("invalid initial value for member `%s'",
4431 IDENTIFIER_POINTER (DECL_NAME (field)));
4432 else
4433 {
4434 /* Element that is a bit-field. */
4435
4436 HOST_WIDE_INT next_offset = int_bit_position (field);
4437 HOST_WIDE_INT end_offset
4438 = (next_offset + tree_low_cst (DECL_SIZE (field), 1));
4439
4440 if (val == 0)
4441 val = integer_zero_node;
4442
4443 /* If this field does not start in this (or, next) byte,
4444 skip some bytes. */
4445 if (next_offset / BITS_PER_UNIT != total_bytes)
4446 {
4447 /* Output remnant of any bit field in previous bytes. */
4448 if (byte_buffer_in_use)
4449 {
4450 ASM_OUTPUT_BYTE (asm_out_file, byte);
4451 total_bytes++;
4452 byte_buffer_in_use = 0;
4453 }
4454
4455 /* If still not at proper byte, advance to there. */
4456 if (next_offset / BITS_PER_UNIT != total_bytes)
4457 {
4458 assemble_zeros (next_offset / BITS_PER_UNIT - total_bytes);
4459 total_bytes = next_offset / BITS_PER_UNIT;
4460 }
4461 }
4462
4463 if (! byte_buffer_in_use)
4464 byte = 0;
4465
4466 /* We must split the element into pieces that fall within
4467 separate bytes, and combine each byte with previous or
4468 following bit-fields. */
4469
4470 /* next_offset is the offset n fbits from the beginning of
4471 the structure to the next bit of this element to be processed.
4472 end_offset is the offset of the first bit past the end of
4473 this element. */
4474 while (next_offset < end_offset)
4475 {
4476 int this_time;
4477 int shift;
4478 HOST_WIDE_INT value;
4479 HOST_WIDE_INT next_byte = next_offset / BITS_PER_UNIT;
4480 HOST_WIDE_INT next_bit = next_offset % BITS_PER_UNIT;
4481
4482 /* Advance from byte to byte
4483 within this element when necessary. */
4484 while (next_byte != total_bytes)
4485 {
4486 ASM_OUTPUT_BYTE (asm_out_file, byte);
4487 total_bytes++;
4488 byte = 0;
4489 }
4490
4491 /* Number of bits we can process at once
4492 (all part of the same byte). */
4493 this_time = MIN (end_offset - next_offset,
4494 BITS_PER_UNIT - next_bit);
4495 if (BYTES_BIG_ENDIAN)
4496 {
4497 /* On big-endian machine, take the most significant bits
4498 first (of the bits that are significant)
4499 and put them into bytes from the most significant end. */
4500 shift = end_offset - next_offset - this_time;
4501
4502 /* Don't try to take a bunch of bits that cross
4503 the word boundary in the INTEGER_CST. We can
4504 only select bits from the LOW or HIGH part
4505 not from both. */
4506 if (shift < HOST_BITS_PER_WIDE_INT
4507 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4508 {
4509 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4510 shift = HOST_BITS_PER_WIDE_INT;
4511 }
4512
4513 /* Now get the bits from the appropriate constant word. */
4514 if (shift < HOST_BITS_PER_WIDE_INT)
4515 value = TREE_INT_CST_LOW (val);
4516 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4517 {
4518 value = TREE_INT_CST_HIGH (val);
4519 shift -= HOST_BITS_PER_WIDE_INT;
4520 }
4521 else
4522 abort ();
4523
4524 /* Get the result. This works only when:
4525 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4526 byte |= (((value >> shift)
4527 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4528 << (BITS_PER_UNIT - this_time - next_bit));
4529 }
4530 else
4531 {
4532 /* On little-endian machines,
4533 take first the least significant bits of the value
4534 and pack them starting at the least significant
4535 bits of the bytes. */
4536 shift = next_offset - int_bit_position (field);
4537
4538 /* Don't try to take a bunch of bits that cross
4539 the word boundary in the INTEGER_CST. We can
4540 only select bits from the LOW or HIGH part
4541 not from both. */
4542 if (shift < HOST_BITS_PER_WIDE_INT
4543 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4544 this_time = (HOST_BITS_PER_WIDE_INT - shift);
4545
4546 /* Now get the bits from the appropriate constant word. */
4547 if (shift < HOST_BITS_PER_WIDE_INT)
4548 value = TREE_INT_CST_LOW (val);
4549 else if (shift < 2 * HOST_BITS_PER_WIDE_INT)
4550 {
4551 value = TREE_INT_CST_HIGH (val);
4552 shift -= HOST_BITS_PER_WIDE_INT;
4553 }
4554 else
4555 abort ();
4556
4557 /* Get the result. This works only when:
4558 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4559 byte |= (((value >> shift)
4560 & (((HOST_WIDE_INT) 2 << (this_time - 1)) - 1))
4561 << next_bit);
4562 }
4563
4564 next_offset += this_time;
4565 byte_buffer_in_use = 1;
4566 }
4567 }
4568 }
4569
4570 if (byte_buffer_in_use)
4571 {
4572 ASM_OUTPUT_BYTE (asm_out_file, byte);
4573 total_bytes++;
4574 }
4575
4576 if (total_bytes < size)
4577 assemble_zeros (size - total_bytes);
4578 }
4579
4580 #ifdef HANDLE_PRAGMA_WEAK
4581 /* Add function NAME to the weak symbols list. VALUE is a weak alias
4582 associatd with NAME. */
4583
4584 int
4585 add_weak (name, value)
4586 const char *name;
4587 const char *value;
4588 {
4589 struct weak_syms *weak;
4590
4591 weak = (struct weak_syms *) permalloc (sizeof (struct weak_syms));
4592
4593 if (weak == NULL)
4594 return 0;
4595
4596 weak->next = weak_decls;
4597 weak->name = name;
4598 weak->value = value;
4599 weak_decls = weak;
4600
4601 return 1;
4602 }
4603 #endif /* HANDLE_PRAGMA_WEAK */
4604
4605 /* Declare DECL to be a weak symbol. */
4606
4607 void
4608 declare_weak (decl)
4609 tree decl;
4610 {
4611 if (! TREE_PUBLIC (decl))
4612 error_with_decl (decl, "weak declaration of `%s' must be public");
4613 else if (TREE_ASM_WRITTEN (decl))
4614 error_with_decl (decl, "weak declaration of `%s' must precede definition");
4615 else if (SUPPORTS_WEAK)
4616 DECL_WEAK (decl) = 1;
4617 #ifdef HANDLE_PRAGMA_WEAK
4618 add_weak (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), NULL);
4619 #endif
4620 }
4621
4622 /* Emit any pending weak declarations. */
4623
4624 #ifdef HANDLE_PRAGMA_WEAK
4625 struct weak_syms * weak_decls;
4626 #endif
4627
4628 void
4629 weak_finish ()
4630 {
4631 #ifdef HANDLE_PRAGMA_WEAK
4632 if (HANDLE_PRAGMA_WEAK)
4633 {
4634 struct weak_syms *t;
4635 for (t = weak_decls; t; t = t->next)
4636 {
4637 if (t->name)
4638 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, t->name, t->value);
4639 }
4640 }
4641 #endif
4642 }
4643
4644 /* Remove NAME from the pending list of weak symbols. This prevents
4645 the compiler from emitting multiple .weak directives which confuses
4646 some assemblers. */
4647 #ifdef ASM_WEAKEN_LABEL
4648 static void
4649 remove_from_pending_weak_list (name)
4650 const char *name ATTRIBUTE_UNUSED;
4651 {
4652 #ifdef HANDLE_PRAGMA_WEAK
4653 if (HANDLE_PRAGMA_WEAK)
4654 {
4655 struct weak_syms *t;
4656 for (t = weak_decls; t; t = t->next)
4657 {
4658 if (t->name && strcmp (name, t->name) == 0)
4659 t->name = NULL;
4660 }
4661 }
4662 #endif
4663 }
4664 #endif
4665
4666 void
4667 assemble_alias (decl, target)
4668 tree decl, target ATTRIBUTE_UNUSED;
4669 {
4670 const char *name;
4671
4672 /* We must force creation of DECL_RTL for debug info generation, even though
4673 we don't use it here. */
4674 make_decl_rtl (decl, NULL);
4675
4676 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
4677
4678 #ifdef ASM_OUTPUT_DEF
4679 /* Make name accessible from other files, if appropriate. */
4680
4681 if (TREE_PUBLIC (decl))
4682 {
4683 #ifdef ASM_WEAKEN_LABEL
4684 if (DECL_WEAK (decl))
4685 {
4686 ASM_WEAKEN_LABEL (asm_out_file, name);
4687 /* Remove this function from the pending weak list so that
4688 we do not emit multiple .weak directives for it. */
4689 remove_from_pending_weak_list
4690 (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
4691 }
4692 else
4693 #endif
4694 ASM_GLOBALIZE_LABEL (asm_out_file, name);
4695 }
4696
4697 #ifdef ASM_OUTPUT_DEF_FROM_DECLS
4698 ASM_OUTPUT_DEF_FROM_DECLS (asm_out_file, decl, target);
4699 #else
4700 ASM_OUTPUT_DEF (asm_out_file, name, IDENTIFIER_POINTER (target));
4701 #endif
4702 TREE_ASM_WRITTEN (decl) = 1;
4703 #else
4704 #ifdef ASM_OUTPUT_WEAK_ALIAS
4705 if (! DECL_WEAK (decl))
4706 warning ("only weak aliases are supported in this configuration");
4707
4708 ASM_OUTPUT_WEAK_ALIAS (asm_out_file, name, IDENTIFIER_POINTER (target));
4709 TREE_ASM_WRITTEN (decl) = 1;
4710 #else
4711 warning ("alias definitions not supported in this configuration; ignored");
4712 #endif
4713 #endif
4714 }
4715
4716 /* Returns 1 if the target configuration supports defining public symbols
4717 so that one of them will be chosen at link time instead of generating a
4718 multiply-defined symbol error, whether through the use of weak symbols or
4719 a target-specific mechanism for having duplicates discarded. */
4720
4721 int
4722 supports_one_only ()
4723 {
4724 if (SUPPORTS_ONE_ONLY)
4725 return 1;
4726 return SUPPORTS_WEAK;
4727 }
4728
4729 /* Set up DECL as a public symbol that can be defined in multiple
4730 translation units without generating a linker error. */
4731
4732 void
4733 make_decl_one_only (decl)
4734 tree decl;
4735 {
4736 if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != FUNCTION_DECL)
4737 abort ();
4738
4739 TREE_PUBLIC (decl) = 1;
4740
4741 if (TREE_CODE (decl) == VAR_DECL
4742 && (DECL_INITIAL (decl) == 0 || DECL_INITIAL (decl) == error_mark_node))
4743 DECL_COMMON (decl) = 1;
4744 else if (SUPPORTS_ONE_ONLY)
4745 {
4746 #ifdef MAKE_DECL_ONE_ONLY
4747 MAKE_DECL_ONE_ONLY (decl);
4748 #endif
4749 DECL_ONE_ONLY (decl) = 1;
4750 }
4751 else if (SUPPORTS_WEAK)
4752 DECL_WEAK (decl) = 1;
4753 else
4754 abort ();
4755 }
4756
4757 void
4758 init_varasm_once ()
4759 {
4760 const_str_htab = htab_create (128, const_str_htab_hash, const_str_htab_eq,
4761 const_str_htab_del);
4762 ggc_add_root (const_hash_table, MAX_HASH_TABLE, sizeof const_hash_table[0],
4763 mark_const_hash_entry);
4764 ggc_add_root (&const_str_htab, 1, sizeof const_str_htab,
4765 mark_const_str_htab);
4766 }
4767
4768 /* Extra support for EH values. */
4769 void
4770 assemble_eh_label (name)
4771 const char *name;
4772 {
4773 #ifdef ASM_OUTPUT_EH_LABEL
4774 ASM_OUTPUT_EH_LABEL (asm_out_file, name);
4775 #else
4776 assemble_label (name);
4777 #endif
4778 }
4779
4780 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
4781
4782 void
4783 assemble_eh_align (align)
4784 int align;
4785 {
4786 #ifdef ASM_OUTPUT_EH_ALIGN
4787 if (align > BITS_PER_UNIT)
4788 ASM_OUTPUT_EH_ALIGN (asm_out_file, floor_log2 (align / BITS_PER_UNIT));
4789 #else
4790 assemble_align (align);
4791 #endif
4792 }
4793
4794
4795 /* On some platforms, we may want to specify a special mechansim to
4796 output EH data when generating with a function.. */
4797 int
4798 assemble_eh_integer (x, size, force)
4799 rtx x;
4800 int size;
4801 int force;
4802 {
4803
4804 switch (size)
4805 {
4806 #ifdef ASM_OUTPUT_EH_CHAR
4807 case 1:
4808 ASM_OUTPUT_EH_CHAR (asm_out_file, x);
4809 return 1;
4810 #endif
4811
4812 #ifdef ASM_OUTPUT_EH_SHORT
4813 case 2:
4814 ASM_OUTPUT_EH_SHORT (asm_out_file, x);
4815 return 1;
4816 #endif
4817
4818 #ifdef ASM_OUTPUT_EH_INT
4819 case 4:
4820 ASM_OUTPUT_EH_INT (asm_out_file, x);
4821 return 1;
4822 #endif
4823
4824 #ifdef ASM_OUTPUT_EH_DOUBLE_INT
4825 case 8:
4826 ASM_OUTPUT_EH_DOUBLE_INT (asm_out_file, x);
4827 return 1;
4828 #endif
4829
4830 default:
4831 break;
4832 }
4833 return (assemble_integer (x, size, force));
4834 }
4835
4836
4837