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