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