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