1 /* Output variables, constants and external declarations, for GNU compiler.
2 Copyright (C) 1987, 88, 89, 92-5, 1996 Free Software Foundation, Inc.
4 This file is part of GNU CC.
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)
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.
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. */
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.
26 We also output the assembler code for constants stored in memory
27 and are responsible for combining constants with the same value. */
31 /* #include <stab.h> */
39 #include "hard-reg-set.h"
48 #ifdef XCOFF_DEBUGGING_INFO
55 #define ASM_STABS_OP ".stabs"
58 /* This macro gets just the user-specified name
59 out of the string in a SYMBOL_REF. On most machines,
60 we discard the * if any and that's all. */
61 #ifndef STRIP_NAME_ENCODING
62 #define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME) \
63 (VAR) = ((SYMBOL_NAME) + ((SYMBOL_NAME)[0] == '*'))
66 /* File in which assembler code is being written. */
68 extern FILE *asm_out_file
;
70 /* The (assembler) name of the first globally-visible object output. */
71 char *first_global_object_name
;
73 extern struct obstack
*current_obstack
;
74 extern struct obstack
*saveable_obstack
;
75 extern struct obstack
*rtl_obstack
;
76 extern struct obstack permanent_obstack
;
77 #define obstack_chunk_alloc xmalloc
79 /* Number for making the label on the next
80 constant that is stored in memory. */
84 /* Number for making the label on the next
85 static variable internal to a function. */
89 /* Carry information from ASM_DECLARE_OBJECT_NAME
90 to ASM_FINISH_DECLARE_OBJECT. */
92 int size_directive_output
;
94 /* The last decl for which assemble_variable was called,
95 if it did ASM_DECLARE_OBJECT_NAME.
96 If the last call to assemble_variable didn't do that,
99 tree last_assemble_variable_decl
;
102 #ifdef HANDLE_PRAGMA_WEAK
103 /* Any weak symbol declarations waiting to be emitted. */
107 struct weak_syms
*next
;
112 static struct weak_syms
*weak_decls
;
115 /* Nonzero if at least one function definition has been seen. */
117 static int function_defined
;
120 struct constant_descriptor
;
122 struct pool_constant
;
124 static void bc_make_decl_rtl
PROTO((tree
, char *, int));
125 static char *strip_reg_name
PROTO((char *));
126 static void bc_output_ascii
PROTO((FILE *, char *, int));
127 static int contains_pointers_p
PROTO((tree
));
128 static void decode_addr_const
PROTO((tree
, struct addr_const
*));
129 static int const_hash
PROTO((tree
));
130 static int compare_constant
PROTO((tree
,
131 struct constant_descriptor
*));
132 static char *compare_constant_1
PROTO((tree
, char *));
133 static struct constant_descriptor
*record_constant
PROTO((tree
));
134 static void record_constant_1
PROTO((tree
));
135 static tree copy_constant
PROTO((tree
));
136 static void output_constant_def_contents
PROTO((tree
, int, int));
137 static void decode_rtx_const
PROTO((enum machine_mode
, rtx
,
138 struct rtx_const
*));
139 static int const_hash_rtx
PROTO((enum machine_mode
, rtx
));
140 static int compare_constant_rtx
PROTO((enum machine_mode
, rtx
,
141 struct constant_descriptor
*));
142 static struct constant_descriptor
*record_constant_rtx
PROTO((enum machine_mode
,
144 static struct pool_constant
*find_pool_constant
PROTO((rtx
));
145 static int output_addressed_constants
PROTO((tree
));
146 static void bc_assemble_integer
PROTO((tree
, int));
147 static void output_constructor
PROTO((tree
, int));
149 static enum in_section
{ no_section
, in_text
, in_data
, in_named
150 #ifdef BSS_SECTION_ASM_OP
153 #ifdef EXTRA_SECTIONS
156 } in_section
= no_section
;
158 /* Return a non-zero value if DECL has a section attribute. */
159 #define IN_NAMED_SECTION(DECL) \
160 ((TREE_CODE (DECL) == FUNCTION_DECL || TREE_CODE (DECL) == VAR_DECL) \
161 && DECL_SECTION_NAME (DECL) != NULL_TREE)
163 /* Text of section name when in_section == in_named. */
164 static char *in_named_name
;
166 /* Define functions like text_section for any extra sections. */
167 #ifdef EXTRA_SECTION_FUNCTIONS
168 EXTRA_SECTION_FUNCTIONS
171 /* Tell assembler to switch to text section. */
176 if (in_section
!= in_text
)
181 fprintf (asm_out_file
, "%s\n", TEXT_SECTION_ASM_OP
);
183 in_section
= in_text
;
187 /* Tell assembler to switch to data section. */
192 if (in_section
!= in_data
)
198 if (flag_shared_data
)
200 #ifdef SHARED_SECTION_ASM_OP
201 fprintf (asm_out_file
, "%s\n", SHARED_SECTION_ASM_OP
);
203 fprintf (asm_out_file
, "%s\n", DATA_SECTION_ASM_OP
);
207 fprintf (asm_out_file
, "%s\n", DATA_SECTION_ASM_OP
);
210 in_section
= in_data
;
214 /* Tell assembler to switch to read-only data section. This is normally
218 readonly_data_section ()
220 #ifdef READONLY_DATA_SECTION
221 READONLY_DATA_SECTION (); /* Note this can call data_section. */
227 /* Determine if we're in the text section. */
232 return in_section
== in_text
;
235 /* Determine if we're in the data section. */
240 return in_section
== in_data
;
243 /* Tell assembler to change to section NAME for DECL.
244 If DECL is NULL, just switch to section NAME.
245 If NAME is NULL, get the name from DECL. */
248 named_section (decl
, name
)
252 if (decl
!= NULL_TREE
253 && TREE_CODE_CLASS (TREE_CODE (decl
)) != 'd')
256 name
= TREE_STRING_POINTER (DECL_SECTION_NAME (decl
));
258 if (in_section
!= in_named
|| strcmp (name
, in_named_name
))
260 in_named_name
= obstack_alloc (&permanent_obstack
, strlen (name
) + 1);
261 strcpy (in_named_name
, name
);
262 in_section
= in_named
;
264 #ifdef ASM_OUTPUT_SECTION_NAME
265 ASM_OUTPUT_SECTION_NAME (asm_out_file
, decl
, name
);
267 /* Section attributes are not supported if this macro isn't provided -
268 some host formats don't support them at all. The front-end should
269 already have flagged this as an error. */
275 #ifdef BSS_SECTION_ASM_OP
277 /* Tell the assembler to switch to the bss section. */
280 bss_section (decl
, name
)
282 if (in_section
!= in_bss
)
288 #ifdef SHARED_BSS_SECTION_ASM_OP
289 if (flag_shared_data
)
290 fprintf (asm_out_file
, "%s\n", SHARED_BSS_SECTION_ASM_OP
);
293 fprintf (asm_out_file
, "%s\n", BSS_SECTION_ASM_OP
);
300 #ifdef ASM_OUTPUT_BSS
302 /* Utility function for ASM_OUTPUT_BSS for targets to use if
303 they don't support alignments in .bss.
304 ??? It is believed that this function will work in most cases so such
305 support is localized here. */
308 asm_output_bss (file
, decl
, name
, size
, rounded
)
314 ASM_GLOBALIZE_LABEL (file
, name
);
316 #ifdef ASM_DECLARE_OBJECT_NAME
317 last_assemble_variable_decl
= decl
;
318 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
320 /* Standard thing is just output label for the object. */
321 ASM_OUTPUT_LABEL (file
, name
);
322 #endif /* ASM_DECLARE_OBJECT_NAME */
323 ASM_OUTPUT_SKIP (file
, rounded
);
328 #ifdef ASM_OUTPUT_ALIGNED_BSS
330 /* Utility function for targets to use in implementing
331 ASM_OUTPUT_ALIGNED_BSS.
332 ??? It is believed that this function will work in most cases so such
333 support is localized here. */
336 asm_output_aligned_bss (file
, decl
, name
, size
, align
)
342 ASM_GLOBALIZE_LABEL (file
, name
);
344 ASM_OUTPUT_ALIGN (file
, floor_log2 (align
/ BITS_PER_UNIT
));
345 #ifdef ASM_DECLARE_OBJECT_NAME
346 last_assemble_variable_decl
= decl
;
347 ASM_DECLARE_OBJECT_NAME (file
, name
, decl
);
349 /* Standard thing is just output label for the object. */
350 ASM_OUTPUT_LABEL (file
, name
);
351 #endif /* ASM_DECLARE_OBJECT_NAME */
352 ASM_OUTPUT_SKIP (file
, size
? size
: 1);
357 #endif /* BSS_SECTION_ASM_OP */
359 /* Switch to the section for function DECL.
361 If DECL is NULL_TREE, switch to the text section.
362 ??? It's not clear that we will ever be passed NULL_TREE, but it's
363 safer to handle it. */
366 function_section (decl
)
369 if (decl
!= NULL_TREE
370 && DECL_SECTION_NAME (decl
) != NULL_TREE
)
371 named_section (decl
, (char *) 0);
376 /* Switch to section for variable DECL.
378 RELOC is the `reloc' argument to SELECT_SECTION. */
381 variable_section (decl
, reloc
)
385 if (IN_NAMED_SECTION (decl
))
386 named_section (decl
, NULL
);
389 /* C++ can have const variables that get initialized from constructors,
390 and thus can not be in a readonly section. We prevent this by
391 verifying that the initial value is constant for objects put in a
394 error_mark_node is used by the C front end to indicate that the
395 initializer has not been seen yet. In this case, we assume that
396 the initializer must be constant.
398 C++ uses error_mark_node for variables that have complicated
399 initializers, but these variables go in BSS so we won't be called
402 #ifdef SELECT_SECTION
403 SELECT_SECTION (decl
, reloc
);
405 if (TREE_READONLY (decl
)
406 && ! TREE_THIS_VOLATILE (decl
)
407 && DECL_INITIAL (decl
)
408 && (DECL_INITIAL (decl
) == error_mark_node
409 || TREE_CONSTANT (DECL_INITIAL (decl
)))
410 && ! (flag_pic
&& reloc
))
411 readonly_data_section ();
418 /* Create the rtl to represent a function, for a function definition.
419 DECL is a FUNCTION_DECL node which describes which function.
420 The rtl is stored into DECL. */
423 make_function_rtl (decl
)
426 char *name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
430 if (DECL_RTL (decl
) == 0)
431 DECL_RTL (decl
) = bc_gen_rtx (name
, 0, (struct bc_label
*) 0);
433 /* Record that at least one function has been defined. */
434 function_defined
= 1;
438 /* Rename a nested function to avoid conflicts. */
439 if (decl_function_context (decl
) != 0
440 && DECL_INITIAL (decl
) != 0
441 && DECL_RTL (decl
) == 0)
445 name
= IDENTIFIER_POINTER (DECL_NAME (decl
));
446 ASM_FORMAT_PRIVATE_NAME (label
, name
, var_labelno
);
447 name
= obstack_copy0 (saveable_obstack
, label
, strlen (label
));
451 if (DECL_RTL (decl
) == 0)
454 = gen_rtx (MEM
, DECL_MODE (decl
),
455 gen_rtx (SYMBOL_REF
, Pmode
, name
));
457 /* Optionally set flags or add text to the name to record information
458 such as that it is a function name. If the name is changed, the macro
459 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
460 #ifdef ENCODE_SECTION_INFO
461 ENCODE_SECTION_INFO (decl
);
465 /* Record at least one function has been defined. */
466 function_defined
= 1;
469 /* Create the DECL_RTL for a declaration for a static or external
470 variable or static or external function.
471 ASMSPEC, if not 0, is the string which the user specified
472 as the assembler symbol name.
473 TOP_LEVEL is nonzero if this is a file-scope variable.
474 This is never called for PARM_DECLs. */
477 bc_make_decl_rtl (decl
, asmspec
, top_level
)
482 register char *name
= TREE_STRING_POINTER (DECL_ASSEMBLER_NAME (decl
));
484 if (DECL_RTL (decl
) == 0)
486 /* Print an error message for register variables. */
487 if (DECL_REGISTER (decl
))
488 error ("global register variables not supported in the interpreter");
490 /* Handle ordinary static variables and functions. */
491 if (DECL_RTL (decl
) == 0)
493 /* Can't use just the variable's own name for a variable
494 whose scope is less than the whole file.
495 Concatenate a distinguishing number. */
496 if (!top_level
&& !DECL_EXTERNAL (decl
) && asmspec
== 0)
500 ASM_FORMAT_PRIVATE_NAME (label
, name
, var_labelno
);
501 name
= obstack_copy0 (saveable_obstack
, label
, strlen (label
));
505 DECL_RTL (decl
) = bc_gen_rtx (name
, 0, (struct bc_label
*) 0);
510 /* Given NAME, a putative register name, discard any customary prefixes. */
513 strip_reg_name (name
)
516 #ifdef REGISTER_PREFIX
517 if (!strncmp (name
, REGISTER_PREFIX
, strlen (REGISTER_PREFIX
)))
518 name
+= strlen (REGISTER_PREFIX
);
520 if (name
[0] == '%' || name
[0] == '#')
525 /* Decode an `asm' spec for a declaration as a register name.
526 Return the register number, or -1 if nothing specified,
527 or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
528 or -3 if ASMSPEC is `cc' and is not recognized,
529 or -4 if ASMSPEC is `memory' and is not recognized.
530 Accept an exact spelling or a decimal number.
531 Prefixes such as % are optional. */
534 decode_reg_name (asmspec
)
541 /* Get rid of confusing prefixes. */
542 asmspec
= strip_reg_name (asmspec
);
544 /* Allow a decimal number as a "register name". */
545 for (i
= strlen (asmspec
) - 1; i
>= 0; i
--)
546 if (! (asmspec
[i
] >= '0' && asmspec
[i
] <= '9'))
548 if (asmspec
[0] != 0 && i
< 0)
551 if (i
< FIRST_PSEUDO_REGISTER
&& i
>= 0)
557 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
559 && ! strcmp (asmspec
, strip_reg_name (reg_names
[i
])))
562 #ifdef ADDITIONAL_REGISTER_NAMES
564 static struct { char *name
; int number
; } table
[]
565 = ADDITIONAL_REGISTER_NAMES
;
567 for (i
= 0; i
< sizeof (table
) / sizeof (table
[0]); i
++)
568 if (! strcmp (asmspec
, table
[i
].name
))
569 return table
[i
].number
;
571 #endif /* ADDITIONAL_REGISTER_NAMES */
573 if (!strcmp (asmspec
, "memory"))
576 if (!strcmp (asmspec
, "cc"))
585 /* Create the DECL_RTL for a declaration for a static or external variable
586 or static or external function.
587 ASMSPEC, if not 0, is the string which the user specified
588 as the assembler symbol name.
589 TOP_LEVEL is nonzero if this is a file-scope variable.
591 This is never called for PARM_DECL nodes. */
594 make_decl_rtl (decl
, asmspec
, top_level
)
599 register char *name
= 0;
604 bc_make_decl_rtl (decl
, asmspec
, top_level
);
608 reg_number
= decode_reg_name (asmspec
);
610 if (DECL_ASSEMBLER_NAME (decl
) != NULL_TREE
)
611 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
613 if (reg_number
== -2)
615 /* ASMSPEC is given, and not the name of a register. */
616 name
= (char *) obstack_alloc (saveable_obstack
,
617 strlen (asmspec
) + 2);
619 strcpy (&name
[1], asmspec
);
622 /* For a duplicate declaration, we can be called twice on the
623 same DECL node. Don't discard the RTL already made. */
624 if (DECL_RTL (decl
) == 0)
628 /* First detect errors in declaring global registers. */
629 if (TREE_CODE (decl
) != FUNCTION_DECL
630 && DECL_REGISTER (decl
) && reg_number
== -1)
631 error_with_decl (decl
,
632 "register name not specified for `%s'");
633 else if (TREE_CODE (decl
) != FUNCTION_DECL
634 && DECL_REGISTER (decl
) && reg_number
< 0)
635 error_with_decl (decl
,
636 "invalid register name for `%s'");
637 else if ((reg_number
>= 0 || reg_number
== -3)
638 && (TREE_CODE (decl
) == FUNCTION_DECL
639 && ! DECL_REGISTER (decl
)))
640 error_with_decl (decl
,
641 "register name given for non-register variable `%s'");
642 else if (TREE_CODE (decl
) != FUNCTION_DECL
643 && DECL_REGISTER (decl
)
644 && TYPE_MODE (TREE_TYPE (decl
)) == BLKmode
)
645 error_with_decl (decl
,
646 "data type of `%s' isn't suitable for a register");
647 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
)
648 && ! HARD_REGNO_MODE_OK (reg_number
,
649 TYPE_MODE (TREE_TYPE (decl
))))
650 error_with_decl (decl
,
651 "register number for `%s' isn't suitable for data type");
652 /* Now handle properly declared static register variables. */
653 else if (TREE_CODE (decl
) != FUNCTION_DECL
&& DECL_REGISTER (decl
))
657 if (DECL_INITIAL (decl
) != 0 && top_level
)
659 DECL_INITIAL (decl
) = 0;
660 error ("global register variable has initial value");
662 if (fixed_regs
[reg_number
] == 0
663 && function_defined
&& top_level
)
664 error ("global register variable follows a function definition");
665 if (TREE_THIS_VOLATILE (decl
))
666 warning ("volatile register variables don't work as you might wish");
668 /* If the user specified one of the eliminables registers here,
669 e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
670 confused with that register and be eliminated. Although this
671 usage is somewhat suspect, we nevertheless use the following
672 kludge to avoid setting DECL_RTL to frame_pointer_rtx. */
675 = gen_rtx (REG
, DECL_MODE (decl
), FIRST_PSEUDO_REGISTER
);
676 REGNO (DECL_RTL (decl
)) = reg_number
;
677 REG_USERVAR_P (DECL_RTL (decl
)) = 1;
681 /* Make this register global, so not usable for anything
683 nregs
= HARD_REGNO_NREGS (reg_number
, DECL_MODE (decl
));
685 globalize_reg (reg_number
+ --nregs
);
688 /* Specifying a section attribute on an uninitialized variable does not
689 (and cannot) cause it to be put in the given section. The linker
690 can only put initialized objects in specific sections, everything
691 else goes in bss for the linker to sort out later (otherwise the
692 linker would give a duplicate definition error for each compilation
693 unit that behaved thusly). So warn the user. */
694 else if (TREE_CODE (decl
) == VAR_DECL
695 && DECL_SECTION_NAME (decl
) != NULL_TREE
696 && DECL_INITIAL (decl
) == NULL_TREE
697 && DECL_COMMON (decl
))
699 warning_with_decl (decl
,
700 "section attribute ignored for uninitialized variable `%s'");
701 /* Remove the section name so subsequent declarations won't see it.
702 We are ignoring it, remember. */
703 DECL_SECTION_NAME (decl
) = NULL_TREE
;
706 /* Now handle ordinary static variables and functions (in memory).
707 Also handle vars declared register invalidly. */
708 if (DECL_RTL (decl
) == 0)
710 /* Can't use just the variable's own name for a variable
711 whose scope is less than the whole file.
712 Concatenate a distinguishing number. */
713 if (!top_level
&& !DECL_EXTERNAL (decl
) && asmspec
== 0)
717 ASM_FORMAT_PRIVATE_NAME (label
, name
, var_labelno
);
718 name
= obstack_copy0 (saveable_obstack
, label
, strlen (label
));
725 DECL_RTL (decl
) = gen_rtx (MEM
, DECL_MODE (decl
),
726 gen_rtx (SYMBOL_REF
, Pmode
, name
));
728 /* If this variable is to be treated as volatile, show its
729 tree node has side effects. If it has side effects, either
730 because of this test or from TREE_THIS_VOLATILE also
731 being set, show the MEM is volatile. */
732 if (flag_volatile_global
&& TREE_CODE (decl
) == VAR_DECL
733 && TREE_PUBLIC (decl
))
734 TREE_SIDE_EFFECTS (decl
) = 1;
735 if (TREE_SIDE_EFFECTS (decl
))
736 MEM_VOLATILE_P (DECL_RTL (decl
)) = 1;
738 if (TREE_READONLY (decl
))
739 RTX_UNCHANGING_P (DECL_RTL (decl
)) = 1;
740 MEM_IN_STRUCT_P (DECL_RTL (decl
))
741 = AGGREGATE_TYPE_P (TREE_TYPE (decl
));
743 /* Optionally set flags or add text to the name to record information
744 such as that it is a function name.
745 If the name is changed, the macro ASM_OUTPUT_LABELREF
746 will have to know how to strip this information. */
747 #ifdef ENCODE_SECTION_INFO
748 ENCODE_SECTION_INFO (decl
);
752 /* If the old RTL had the wrong mode, fix the mode. */
753 else if (GET_MODE (DECL_RTL (decl
)) != DECL_MODE (decl
))
755 rtx rtl
= DECL_RTL (decl
);
756 PUT_MODE (rtl
, DECL_MODE (decl
));
760 /* Make the rtl for variable VAR be volatile.
761 Use this only for static variables. */
764 make_var_volatile (var
)
767 if (GET_CODE (DECL_RTL (var
)) != MEM
)
770 MEM_VOLATILE_P (DECL_RTL (var
)) = 1;
773 /* Output alignment directive to align for constant expression EXP. */
776 assemble_constant_align (exp
)
781 /* Align the location counter as required by EXP's data type. */
782 align
= TYPE_ALIGN (TREE_TYPE (exp
));
783 #ifdef CONSTANT_ALIGNMENT
784 align
= CONSTANT_ALIGNMENT (exp
, align
);
787 if (align
> BITS_PER_UNIT
)
788 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
791 /* Output a string of literal assembler code
792 for an `asm' keyword used between functions. */
795 assemble_asm (string
)
800 error ("asm statements not allowed in interpreter");
806 if (TREE_CODE (string
) == ADDR_EXPR
)
807 string
= TREE_OPERAND (string
, 0);
809 fprintf (asm_out_file
, "\t%s\n", TREE_STRING_POINTER (string
));
812 #if 0 /* This should no longer be needed, because
813 flag_gnu_linker should be 0 on these systems,
814 which should prevent any output
815 if ASM_OUTPUT_CONSTRUCTOR and ASM_OUTPUT_DESTRUCTOR are absent. */
816 #if !(defined(DBX_DEBUGGING_INFO) && !defined(FASCIST_ASSEMBLER))
817 #ifndef ASM_OUTPUT_CONSTRUCTOR
818 #define ASM_OUTPUT_CONSTRUCTOR(file, name)
820 #ifndef ASM_OUTPUT_DESTRUCTOR
821 #define ASM_OUTPUT_DESTRUCTOR(file, name)
826 /* Record an element in the table of global destructors.
827 How this is done depends on what sort of assembler and linker
830 NAME should be the name of a global function to be called
831 at exit time. This name is output using assemble_name. */
834 assemble_destructor (name
)
837 #ifdef ASM_OUTPUT_DESTRUCTOR
838 ASM_OUTPUT_DESTRUCTOR (asm_out_file
, name
);
842 /* Now tell GNU LD that this is part of the static destructor set. */
843 /* This code works for any machine provided you use GNU as/ld. */
844 fprintf (asm_out_file
, "%s \"___DTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
845 assemble_name (asm_out_file
, name
);
846 fputc ('\n', asm_out_file
);
851 /* Likewise for global constructors. */
854 assemble_constructor (name
)
857 #ifdef ASM_OUTPUT_CONSTRUCTOR
858 ASM_OUTPUT_CONSTRUCTOR (asm_out_file
, name
);
862 /* Now tell GNU LD that this is part of the static constructor set. */
863 /* This code works for any machine provided you use GNU as/ld. */
864 fprintf (asm_out_file
, "%s \"___CTOR_LIST__\",22,0,0,", ASM_STABS_OP
);
865 assemble_name (asm_out_file
, name
);
866 fputc ('\n', asm_out_file
);
871 /* Likewise for entries we want to record for garbage collection.
872 Garbage collection is still under development. */
875 assemble_gc_entry (name
)
878 #ifdef ASM_OUTPUT_GC_ENTRY
879 ASM_OUTPUT_GC_ENTRY (asm_out_file
, name
);
883 /* Now tell GNU LD that this is part of the static constructor set. */
884 fprintf (asm_out_file
, "%s \"___PTR_LIST__\",22,0,0,", ASM_STABS_OP
);
885 assemble_name (asm_out_file
, name
);
886 fputc ('\n', asm_out_file
);
891 /* Output assembler code for the constant pool of a function and associated
892 with defining the name of the function. DECL describes the function.
893 NAME is the function's name. For the constant pool, we use the current
894 constant pool data. */
897 assemble_start_function (decl
, fnname
)
903 /* The following code does not need preprocessing in the assembler. */
907 output_constant_pool (fnname
, decl
);
909 #ifdef ASM_OUTPUT_SECTION_NAME
910 /* If the function is to be put in its own section and it's not in a section
911 already, indicate so. */
912 if (flag_function_sections
913 && DECL_SECTION_NAME (decl
) == NULL_TREE
)
915 #ifdef UNIQUE_SECTION
916 DECL_SECTION_NAME(decl
) = UNIQUE_SECTION (decl
);
918 char *name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
919 /* Strip off any encoding in name. */
920 STRIP_NAME_ENCODING (name
, name
);
921 DECL_SECTION_NAME (decl
) = build_string (strlen (name
), name
);
926 function_section (decl
);
928 /* Tell assembler to move to target machine's alignment for functions. */
929 align
= floor_log2 (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
933 BC_OUTPUT_ALIGN (asm_out_file
, align
);
935 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
938 #ifdef ASM_OUTPUT_FUNCTION_PREFIX
939 ASM_OUTPUT_FUNCTION_PREFIX (asm_out_file
, fnname
);
942 #ifdef SDB_DEBUGGING_INFO
943 /* Output SDB definition of the function. */
944 if (write_symbols
== SDB_DEBUG
)
945 sdbout_mark_begin_function ();
948 #ifdef DBX_DEBUGGING_INFO
949 /* Output DBX definition of the function. */
950 if (write_symbols
== DBX_DEBUG
)
951 dbxout_begin_function (decl
);
954 /* Make function name accessible from other files, if appropriate. */
956 if (TREE_PUBLIC (decl
))
958 if (!first_global_object_name
)
962 STRIP_NAME_ENCODING (p
, fnname
);
963 first_global_object_name
= permalloc (strlen (p
) + 1);
964 strcpy (first_global_object_name
, p
);
967 #ifdef ASM_WEAKEN_LABEL
968 if (DECL_WEAK (decl
))
969 ASM_WEAKEN_LABEL (asm_out_file
, fnname
);
973 BC_GLOBALIZE_LABEL (asm_out_file
, fnname
);
975 ASM_GLOBALIZE_LABEL (asm_out_file
, fnname
);
978 /* Do any machine/system dependent processing of the function name */
980 BC_OUTPUT_LABEL (asm_out_file
, fnname
);
983 #ifdef ASM_DECLARE_FUNCTION_NAME
984 ASM_DECLARE_FUNCTION_NAME (asm_out_file
, fnname
, current_function_decl
);
986 /* Standard thing is just output label for the function. */
987 ASM_OUTPUT_LABEL (asm_out_file
, fnname
);
988 #endif /* ASM_DECLARE_FUNCTION_NAME */
992 /* Output assembler code associated with defining the size of the
993 function. DECL describes the function. NAME is the function's name. */
996 assemble_end_function (decl
, fnname
)
1000 #ifdef ASM_DECLARE_FUNCTION_SIZE
1001 ASM_DECLARE_FUNCTION_SIZE (asm_out_file
, fnname
, decl
);
1005 /* Assemble code to leave SIZE bytes of zeros. */
1008 assemble_zeros (size
)
1011 if (output_bytecode
)
1013 bc_emit_const_skip (size
);
1017 #ifdef ASM_NO_SKIP_IN_TEXT
1018 /* The `space' pseudo in the text section outputs nop insns rather than 0s,
1019 so we must output 0s explicitly in the text section. */
1020 if (ASM_NO_SKIP_IN_TEXT
&& in_text_section ())
1024 for (i
= 0; i
< size
- 20; i
+= 20)
1027 fprintf (asm_out_file
,
1028 "%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
);
1030 fprintf (asm_out_file
,
1031 "\tbyte 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0\n");
1037 fprintf (asm_out_file
, "%s 0", ASM_BYTE_OP
);
1039 fprintf (asm_out_file
, "\tbyte 0");
1042 for (; i
< size
; i
++)
1043 fprintf (asm_out_file
, ",0");
1044 fprintf (asm_out_file
, "\n");
1051 if (output_bytecode
)
1052 BC_OUTPUT_SKIP (asm_out_file
, size
);
1054 ASM_OUTPUT_SKIP (asm_out_file
, size
);
1058 /* Assemble an alignment pseudo op for an ALIGN-bit boundary. */
1061 assemble_align (align
)
1064 if (align
> BITS_PER_UNIT
)
1065 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1068 /* Assemble a string constant with the specified C string as contents. */
1071 assemble_string (p
, size
)
1079 if (output_bytecode
)
1085 /* If the string is very long, split it up. */
1089 int thissize
= size
- pos
;
1090 if (thissize
> maximum
)
1093 if (output_bytecode
)
1094 bc_output_ascii (asm_out_file
, p
, thissize
);
1097 ASM_OUTPUT_ASCII (asm_out_file
, p
, thissize
);
1106 bc_output_ascii (file
, p
, size
)
1111 BC_OUTPUT_ASCII (file
, p
, size
);
1114 /* Assemble everything that is needed for a variable or function declaration.
1115 Not used for automatic variables, and not used for function definitions.
1116 Should not be called for variables of incomplete structure type.
1118 TOP_LEVEL is nonzero if this variable has file scope.
1119 AT_END is nonzero if this is the special handling, at end of compilation,
1120 to define things that have had only tentative definitions.
1121 DONT_OUTPUT_DATA if nonzero means don't actually output the
1122 initial value (that will be done by the caller). */
1125 assemble_variable (decl
, top_level
, at_end
, dont_output_data
)
1129 int dont_output_data
;
1131 register char *name
;
1135 enum in_section saved_in_section
;
1137 last_assemble_variable_decl
= 0;
1139 if (output_bytecode
)
1142 if (GET_CODE (DECL_RTL (decl
)) == REG
)
1144 /* Do output symbol info for global register variables, but do nothing
1147 if (TREE_ASM_WRITTEN (decl
))
1149 TREE_ASM_WRITTEN (decl
) = 1;
1151 if (!output_bytecode
)
1153 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
1154 /* File-scope global variables are output here. */
1155 if ((write_symbols
== DBX_DEBUG
|| write_symbols
== XCOFF_DEBUG
)
1157 dbxout_symbol (decl
, 0);
1159 #ifdef SDB_DEBUGGING_INFO
1160 if (write_symbols
== SDB_DEBUG
&& top_level
1161 /* Leave initialized global vars for end of compilation;
1162 see comment in compile_file. */
1163 && (TREE_PUBLIC (decl
) == 0 || DECL_INITIAL (decl
) == 0))
1164 sdbout_symbol (decl
, 0);
1168 /* Don't output any DWARF debugging information for variables here.
1169 In the case of local variables, the information for them is output
1170 when we do our recursive traversal of the tree representation for
1171 the entire containing function. In the case of file-scope variables,
1172 we output information for all of them at the very end of compilation
1173 while we are doing our final traversal of the chain of file-scope
1179 /* Normally no need to say anything here for external references,
1180 since assemble_external is called by the language-specific code
1181 when a declaration is first seen. */
1183 if (DECL_EXTERNAL (decl
))
1186 /* Output no assembler code for a function declaration.
1187 Only definitions of functions output anything. */
1189 if (TREE_CODE (decl
) == FUNCTION_DECL
)
1192 /* If type was incomplete when the variable was declared,
1193 see if it is complete now. */
1195 if (DECL_SIZE (decl
) == 0)
1196 layout_decl (decl
, 0);
1198 /* Still incomplete => don't allocate it; treat the tentative defn
1199 (which is what it must have been) as an `extern' reference. */
1201 if (!dont_output_data
&& DECL_SIZE (decl
) == 0)
1203 error_with_file_and_line (DECL_SOURCE_FILE (decl
),
1204 DECL_SOURCE_LINE (decl
),
1205 "storage size of `%s' isn't known",
1206 IDENTIFIER_POINTER (DECL_NAME (decl
)));
1207 TREE_ASM_WRITTEN (decl
) = 1;
1211 /* The first declaration of a variable that comes through this function
1212 decides whether it is global (in C, has external linkage)
1213 or local (in C, has internal linkage). So do nothing more
1214 if this function has already run. */
1216 if (TREE_ASM_WRITTEN (decl
))
1219 TREE_ASM_WRITTEN (decl
) = 1;
1223 if (! dont_output_data
)
1225 if (TREE_CODE (DECL_SIZE (decl
)) != INTEGER_CST
)
1228 /* This is better than explicit arithmetic, since it avoids overflow. */
1229 size_tree
= size_binop (CEIL_DIV_EXPR
,
1230 DECL_SIZE (decl
), size_int (BITS_PER_UNIT
));
1232 if (TREE_INT_CST_HIGH (size_tree
) != 0)
1234 error_with_decl (decl
, "size of variable `%s' is too large");
1239 name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
1241 /* Handle uninitialized definitions. */
1243 if ((DECL_INITIAL (decl
) == 0 || DECL_INITIAL (decl
) == error_mark_node
)
1244 /* If the target can't output uninitialized but not common global data
1245 in .bss, then we have to use .data. */
1246 #if ! defined (ASM_OUTPUT_BSS) && ! defined (ASM_OUTPUT_ALIGNED_BSS)
1247 && DECL_COMMON (decl
)
1249 && ! dont_output_data
)
1251 int size
= TREE_INT_CST_LOW (size_tree
);
1254 /* Don't allocate zero bytes of common,
1255 since that means "undefined external" in the linker. */
1256 if (size
== 0) rounded
= 1;
1257 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1258 so that each uninitialized object starts on such a boundary. */
1259 rounded
+= (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1;
1260 rounded
= (rounded
/ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1261 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1263 #ifdef DBX_DEBUGGING_INFO
1264 /* File-scope global variables are output here. */
1265 if (write_symbols
== DBX_DEBUG
&& top_level
)
1266 dbxout_symbol (decl
, 0);
1268 #ifdef SDB_DEBUGGING_INFO
1269 if (write_symbols
== SDB_DEBUG
&& top_level
1270 /* Leave initialized global vars for end of compilation;
1271 see comment in compile_file. */
1272 && (TREE_PUBLIC (decl
) == 0 || DECL_INITIAL (decl
) == 0))
1273 sdbout_symbol (decl
, 0);
1276 /* Don't output any DWARF debugging information for variables here.
1277 In the case of local variables, the information for them is output
1278 when we do our recursive traversal of the tree representation for
1279 the entire containing function. In the case of file-scope variables,
1280 we output information for all of them at the very end of compilation
1281 while we are doing our final traversal of the chain of file-scope
1284 #if 0 /* ??? We should either delete this or add a comment describing what
1285 it was intended to do and why we shouldn't delete it. */
1286 if (flag_shared_data
)
1290 if (TREE_PUBLIC (decl
)
1291 #if defined (ASM_OUTPUT_BSS) || defined (ASM_OUTPUT_ALIGNED_BSS)
1292 && DECL_COMMON (decl
)
1296 #ifdef ASM_OUTPUT_SHARED_COMMON
1297 if (flag_shared_data
)
1298 ASM_OUTPUT_SHARED_COMMON (asm_out_file
, name
, size
, rounded
);
1301 if (output_bytecode
)
1303 BC_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
1307 #ifdef ASM_OUTPUT_ALIGNED_COMMON
1308 ASM_OUTPUT_ALIGNED_COMMON (asm_out_file
, name
, size
,
1311 ASM_OUTPUT_COMMON (asm_out_file
, name
, size
, rounded
);
1315 #if defined (ASM_OUTPUT_BSS) || defined (ASM_OUTPUT_ALIGNED_BSS)
1316 else if (TREE_PUBLIC (decl
))
1318 #ifdef ASM_OUTPUT_SHARED_BSS
1319 if (flag_shared_data
)
1320 ASM_OUTPUT_SHARED_BSS (asm_out_file
, decl
, name
, size
, rounded
);
1323 if (output_bytecode
)
1325 BC_OUTPUT_BSS (asm_out_file
, name
, size
, rounded
);
1329 #ifdef ASM_OUTPUT_ALIGNED_BSS
1330 ASM_OUTPUT_ALIGNED_BSS (asm_out_file
, decl
, name
, size
,
1333 ASM_OUTPUT_BSS (asm_out_file
, decl
, name
, size
, rounded
);
1337 #endif /* ASM_OUTPUT_BSS || ASM_OUTPUT_ALIGNED_BSS */
1340 #ifdef ASM_OUTPUT_SHARED_LOCAL
1341 if (flag_shared_data
)
1342 ASM_OUTPUT_SHARED_LOCAL (asm_out_file
, name
, size
, rounded
);
1345 if (output_bytecode
)
1347 BC_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1351 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1352 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
,
1355 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1362 /* Handle initialized definitions.
1363 Also handle uninitialized global definitions if -fno-common and the
1364 target doesn't support ASM_OUTPUT_BSS. */
1366 /* First make the assembler name(s) global if appropriate. */
1367 if (TREE_PUBLIC (decl
) && DECL_NAME (decl
))
1369 if (!first_global_object_name
)
1373 STRIP_NAME_ENCODING (p
, name
);
1374 first_global_object_name
= permalloc (strlen (p
) + 1);
1375 strcpy (first_global_object_name
, p
);
1378 #ifdef ASM_WEAKEN_LABEL
1379 if (DECL_WEAK (decl
))
1380 ASM_WEAKEN_LABEL (asm_out_file
, name
);
1383 ASM_GLOBALIZE_LABEL (asm_out_file
, name
);
1386 for (d
= equivalents
; d
; d
= TREE_CHAIN (d
))
1388 tree e
= TREE_VALUE (d
);
1389 if (TREE_PUBLIC (e
) && DECL_NAME (e
))
1390 ASM_GLOBALIZE_LABEL (asm_out_file
,
1391 XSTR (XEXP (DECL_RTL (e
), 0), 0));
1395 /* Output any data that we will need to use the address of. */
1396 if (DECL_INITIAL (decl
) == error_mark_node
)
1397 reloc
= contains_pointers_p (TREE_TYPE (decl
));
1398 else if (DECL_INITIAL (decl
))
1399 reloc
= output_addressed_constants (DECL_INITIAL (decl
));
1401 /* Switch to the appropriate section. */
1402 variable_section (decl
, reloc
);
1404 /* dbxout.c needs to know this. */
1405 if (in_text_section ())
1406 DECL_IN_TEXT_SECTION (decl
) = 1;
1408 /* Record current section so we can restore it if dbxout.c clobbers it. */
1409 saved_in_section
= in_section
;
1411 /* Output the dbx info now that we have chosen the section. */
1413 #ifdef DBX_DEBUGGING_INFO
1414 /* File-scope global variables are output here. */
1415 if (write_symbols
== DBX_DEBUG
&& top_level
)
1416 dbxout_symbol (decl
, 0);
1418 #ifdef SDB_DEBUGGING_INFO
1419 if (write_symbols
== SDB_DEBUG
&& top_level
1420 /* Leave initialized global vars for end of compilation;
1421 see comment in compile_file. */
1422 && (TREE_PUBLIC (decl
) == 0 || DECL_INITIAL (decl
) == 0))
1423 sdbout_symbol (decl
, 0);
1426 /* Don't output any DWARF debugging information for variables here.
1427 In the case of local variables, the information for them is output
1428 when we do our recursive traversal of the tree representation for
1429 the entire containing function. In the case of file-scope variables,
1430 we output information for all of them at the very end of compilation
1431 while we are doing our final traversal of the chain of file-scope
1434 /* If the debugging output changed sections, reselect the section
1435 that's supposed to be selected. */
1436 if (in_section
!= saved_in_section
)
1437 variable_section (decl
, reloc
);
1439 /* Compute and output the alignment of this data. */
1441 align
= DECL_ALIGN (decl
);
1442 /* In the case for initialing an array whose length isn't specified,
1443 where we have not yet been able to do the layout,
1444 figure out the proper alignment now. */
1445 if (dont_output_data
&& DECL_SIZE (decl
) == 0
1446 && TREE_CODE (TREE_TYPE (decl
)) == ARRAY_TYPE
)
1447 align
= MAX (align
, TYPE_ALIGN (TREE_TYPE (TREE_TYPE (decl
))));
1449 /* Some object file formats have a maximum alignment which they support.
1450 In particular, a.out format supports a maximum alignment of 4. */
1451 #ifndef MAX_OFILE_ALIGNMENT
1452 #define MAX_OFILE_ALIGNMENT BIGGEST_ALIGNMENT
1454 if (align
> MAX_OFILE_ALIGNMENT
)
1456 warning_with_decl (decl
,
1457 "alignment of `%s' is greater than maximum object file alignment");
1458 align
= MAX_OFILE_ALIGNMENT
;
1460 #ifdef DATA_ALIGNMENT
1461 /* On some machines, it is good to increase alignment sometimes. */
1462 align
= DATA_ALIGNMENT (TREE_TYPE (decl
), align
);
1464 #ifdef CONSTANT_ALIGNMENT
1465 if (DECL_INITIAL (decl
))
1466 align
= CONSTANT_ALIGNMENT (DECL_INITIAL (decl
), align
);
1469 /* Reset the alignment in case we have made it tighter, so we can benefit
1470 from it in get_pointer_alignment. */
1471 DECL_ALIGN (decl
) = align
;
1473 if (align
> BITS_PER_UNIT
)
1475 if (output_bytecode
)
1476 BC_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1478 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
1481 /* Do any machine/system dependent processing of the object. */
1482 if (output_bytecode
)
1483 BC_OUTPUT_LABEL (asm_out_file
, name
);
1486 #ifdef ASM_DECLARE_OBJECT_NAME
1487 last_assemble_variable_decl
= decl
;
1488 ASM_DECLARE_OBJECT_NAME (asm_out_file
, name
, decl
);
1490 /* Standard thing is just output label for the object. */
1491 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1492 #endif /* ASM_DECLARE_OBJECT_NAME */
1495 if (!dont_output_data
)
1497 if (DECL_INITIAL (decl
))
1498 /* Output the actual data. */
1499 output_constant (DECL_INITIAL (decl
), TREE_INT_CST_LOW (size_tree
));
1501 /* Leave space for it. */
1502 assemble_zeros (TREE_INT_CST_LOW (size_tree
));
1506 #ifdef XCOFF_DEBUGGING_INFO
1507 /* Unfortunately, the IBM assembler cannot handle stabx before the actual
1508 declaration. When something like ".stabx "aa:S-2",aa,133,0" is emitted
1509 and `aa' hasn't been output yet, the assembler generates a stab entry with
1510 a value of zero, in addition to creating an unnecessary external entry
1511 for `aa'. Hence, we must postpone dbxout_symbol to here at the end. */
1513 /* File-scope global variables are output here. */
1514 if (write_symbols
== XCOFF_DEBUG
&& top_level
)
1516 saved_in_section
= in_section
;
1518 dbxout_symbol (decl
, 0);
1520 if (in_section
!= saved_in_section
)
1521 variable_section (decl
, reloc
);
1524 /* There must be a statement after a label. */
1529 /* Return 1 if type TYPE contains any pointers. */
1532 contains_pointers_p (type
)
1535 switch (TREE_CODE (type
))
1538 case REFERENCE_TYPE
:
1539 /* I'm not sure whether OFFSET_TYPE needs this treatment,
1540 so I'll play safe and return 1. */
1546 case QUAL_UNION_TYPE
:
1549 /* For a type that has fields, see if the fields have pointers. */
1550 for (fields
= TYPE_FIELDS (type
); fields
; fields
= TREE_CHAIN (fields
))
1551 if (TREE_CODE (fields
) == FIELD_DECL
1552 && contains_pointers_p (TREE_TYPE (fields
)))
1558 /* An array type contains pointers if its element type does. */
1559 return contains_pointers_p (TREE_TYPE (type
));
1566 /* Output text storage for constructor CONSTR. */
1569 bc_output_constructor (constr
, size
)
1575 /* Must always be a literal; non-literal constructors are handled
1578 if (!TREE_CONSTANT (constr
))
1585 for (i
= 0; TYPE_ALIGN (constr
) >= BITS_PER_UNIT
<< (i
+ 1); i
++)
1589 BC_OUTPUT_ALIGN (asm_out_file
, i
);
1592 output_constant (constr
, size
);
1595 /* Create storage for constructor CONSTR. */
1598 bc_output_data_constructor (constr
)
1603 /* Put in data section */
1607 for (i
= 0; TYPE_ALIGN (constr
) >= BITS_PER_UNIT
<< (i
+ 1); i
++);
1609 BC_OUTPUT_ALIGN (asm_out_file
, i
);
1611 /* The constructor is filled in at runtime. */
1612 BC_OUTPUT_SKIP (asm_out_file
, int_size_in_bytes (TREE_TYPE (constr
)));
1615 /* Output something to declare an external symbol to the assembler.
1616 (Most assemblers don't need this, so we normally output nothing.)
1617 Do nothing if DECL is not external. */
1620 assemble_external (decl
)
1623 if (output_bytecode
)
1626 #ifdef ASM_OUTPUT_EXTERNAL
1627 if (TREE_CODE_CLASS (TREE_CODE (decl
)) == 'd'
1628 && DECL_EXTERNAL (decl
) && TREE_PUBLIC (decl
))
1630 rtx rtl
= DECL_RTL (decl
);
1632 if (GET_CODE (rtl
) == MEM
&& GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
1633 && ! SYMBOL_REF_USED (XEXP (rtl
, 0)))
1635 /* Some systems do require some output. */
1636 SYMBOL_REF_USED (XEXP (rtl
, 0)) = 1;
1637 ASM_OUTPUT_EXTERNAL (asm_out_file
, decl
, XSTR (XEXP (rtl
, 0), 0));
1643 /* Similar, for calling a library function FUN. */
1646 assemble_external_libcall (fun
)
1649 #ifdef ASM_OUTPUT_EXTERNAL_LIBCALL
1650 if (!output_bytecode
)
1652 /* Declare library function name external when first used, if nec. */
1653 if (! SYMBOL_REF_USED (fun
))
1655 SYMBOL_REF_USED (fun
) = 1;
1656 ASM_OUTPUT_EXTERNAL_LIBCALL (asm_out_file
, fun
);
1662 /* Declare the label NAME global. */
1665 assemble_global (name
)
1668 ASM_GLOBALIZE_LABEL (asm_out_file
, name
);
1671 /* Assemble a label named NAME. */
1674 assemble_label (name
)
1677 if (output_bytecode
)
1678 BC_OUTPUT_LABEL (asm_out_file
, name
);
1680 ASM_OUTPUT_LABEL (asm_out_file
, name
);
1683 /* Output to FILE a reference to the assembler name of a C-level name NAME.
1684 If NAME starts with a *, the rest of NAME is output verbatim.
1685 Otherwise NAME is transformed in an implementation-defined way
1686 (usually by the addition of an underscore).
1687 Many macros in the tm file are defined to call this function. */
1690 assemble_name (file
, name
)
1695 int save_warn_id_clash
= warn_id_clash
;
1697 STRIP_NAME_ENCODING (real_name
, name
);
1699 /* Don't warn about an identifier name length clash on this name, since
1700 it can be a user symbol suffixed by a number. */
1702 TREE_SYMBOL_REFERENCED (get_identifier (real_name
)) = 1;
1703 warn_id_clash
= save_warn_id_clash
;
1707 if (output_bytecode
)
1708 bc_emit_labelref (name
, 0);
1710 fputs (&name
[1], file
);
1714 if (output_bytecode
)
1715 BC_OUTPUT_LABELREF (file
, name
);
1717 ASM_OUTPUT_LABELREF (file
, name
);
1721 /* Allocate SIZE bytes writable static space with a gensym name
1722 and return an RTX to refer to its address. */
1725 assemble_static_space (size
)
1731 /* Round size up to multiple of BIGGEST_ALIGNMENT bits
1732 so that each uninitialized object starts on such a boundary. */
1733 int rounded
= ((size
+ (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
) - 1)
1734 / (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
1735 * (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
));
1738 if (flag_shared_data
)
1742 ASM_GENERATE_INTERNAL_LABEL (name
, "LF", const_labelno
);
1745 namestring
= (char *) obstack_alloc (saveable_obstack
,
1747 strcpy (namestring
, name
);
1749 if (output_bytecode
)
1750 x
= bc_gen_rtx (namestring
, 0, (struct bc_label
*) 0);
1752 x
= gen_rtx (SYMBOL_REF
, Pmode
, namestring
);
1754 if (output_bytecode
)
1756 BC_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1760 #ifdef ASM_OUTPUT_ALIGNED_LOCAL
1761 ASM_OUTPUT_ALIGNED_LOCAL (asm_out_file
, name
, size
, BIGGEST_ALIGNMENT
);
1763 ASM_OUTPUT_LOCAL (asm_out_file
, name
, size
, rounded
);
1769 /* Assemble the static constant template for function entry trampolines.
1770 This is done at most once per compilation.
1771 Returns an RTX for the address of the template. */
1773 #ifdef TRAMPOLINE_TEMPLATE
1775 assemble_trampoline_template ()
1781 /* Shouldn't get here */
1782 if (output_bytecode
)
1785 /* By default, put trampoline templates in read-only data section. */
1787 #ifdef TRAMPOLINE_SECTION
1788 TRAMPOLINE_SECTION ();
1790 readonly_data_section ();
1793 /* Write the assembler code to define one. */
1794 align
= floor_log2 (FUNCTION_BOUNDARY
/ BITS_PER_UNIT
);
1796 ASM_OUTPUT_ALIGN (asm_out_file
, align
);
1798 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LTRAMP", 0);
1799 TRAMPOLINE_TEMPLATE (asm_out_file
);
1801 /* Record the rtl to refer to it. */
1802 ASM_GENERATE_INTERNAL_LABEL (label
, "LTRAMP", 0);
1804 = (char *) obstack_copy0 (&permanent_obstack
, label
, strlen (label
));
1805 return gen_rtx (SYMBOL_REF
, Pmode
, name
);
1809 /* Assemble the integer constant X into an object of SIZE bytes.
1810 X must be either a CONST_INT or CONST_DOUBLE.
1812 Return 1 if we were able to output the constant, otherwise 0. If FORCE is
1813 non-zero, abort if we can't output the constant. */
1816 assemble_integer (x
, size
, force
)
1821 /* First try to use the standard 1, 2, 4, 8, and 16 byte
1822 ASM_OUTPUT... macros. */
1826 #ifdef ASM_OUTPUT_CHAR
1828 ASM_OUTPUT_CHAR (asm_out_file
, x
);
1832 #ifdef ASM_OUTPUT_SHORT
1834 ASM_OUTPUT_SHORT (asm_out_file
, x
);
1838 #ifdef ASM_OUTPUT_INT
1840 ASM_OUTPUT_INT (asm_out_file
, x
);
1844 #ifdef ASM_OUTPUT_DOUBLE_INT
1846 ASM_OUTPUT_DOUBLE_INT (asm_out_file
, x
);
1850 #ifdef ASM_OUTPUT_QUADRUPLE_INT
1852 ASM_OUTPUT_QUADRUPLE_INT (asm_out_file
, x
);
1857 /* If we couldn't do it that way, there are two other possibilities: First,
1858 if the machine can output an explicit byte and this is a 1 byte constant,
1859 we can use ASM_OUTPUT_BYTE. */
1861 #ifdef ASM_OUTPUT_BYTE
1862 if (size
== 1 && GET_CODE (x
) == CONST_INT
)
1864 ASM_OUTPUT_BYTE (asm_out_file
, INTVAL (x
));
1869 /* Finally, if SIZE is larger than a single word, try to output the constant
1870 one word at a time. */
1872 if (size
> UNITS_PER_WORD
)
1875 enum machine_mode mode
1876 = mode_for_size (size
* BITS_PER_UNIT
, MODE_INT
, 0);
1879 for (i
= 0; i
< size
/ UNITS_PER_WORD
; i
++)
1881 word
= operand_subword (x
, i
, 0, mode
);
1886 if (! assemble_integer (word
, UNITS_PER_WORD
, 0))
1890 if (i
== size
/ UNITS_PER_WORD
)
1892 /* If we output at least one word and then could not finish,
1893 there is no valid way to continue. */
1904 /* Assemble the floating-point constant D into an object of size MODE. */
1907 assemble_real (d
, mode
)
1909 enum machine_mode mode
;
1911 jmp_buf output_constant_handler
;
1913 if (setjmp (output_constant_handler
))
1915 error ("floating point trap outputting a constant");
1916 #ifdef REAL_IS_NOT_DOUBLE
1917 bzero ((char *) &d
, sizeof d
);
1924 set_float_handler (output_constant_handler
);
1928 #ifdef ASM_OUTPUT_BYTE_FLOAT
1930 ASM_OUTPUT_BYTE_FLOAT (asm_out_file
, d
);
1933 #ifdef ASM_OUTPUT_SHORT_FLOAT
1935 ASM_OUTPUT_SHORT_FLOAT (asm_out_file
, d
);
1938 #ifdef ASM_OUTPUT_THREE_QUARTER_FLOAT
1940 ASM_OUTPUT_THREE_QUARTER_FLOAT (asm_out_file
, d
);
1943 #ifdef ASM_OUTPUT_FLOAT
1945 ASM_OUTPUT_FLOAT (asm_out_file
, d
);
1949 #ifdef ASM_OUTPUT_DOUBLE
1951 ASM_OUTPUT_DOUBLE (asm_out_file
, d
);
1955 #ifdef ASM_OUTPUT_LONG_DOUBLE
1958 ASM_OUTPUT_LONG_DOUBLE (asm_out_file
, d
);
1966 set_float_handler (NULL_PTR
);
1969 /* Here we combine duplicate floating constants to make
1970 CONST_DOUBLE rtx's, and force those out to memory when necessary. */
1972 /* Chain of all CONST_DOUBLE rtx's constructed for the current function.
1973 They are chained through the CONST_DOUBLE_CHAIN.
1974 A CONST_DOUBLE rtx has CONST_DOUBLE_MEM != cc0_rtx iff it is on this chain.
1975 In that case, CONST_DOUBLE_MEM is either a MEM,
1976 or const0_rtx if no MEM has been made for this CONST_DOUBLE yet.
1978 (CONST_DOUBLE_MEM is used only for top-level functions.
1979 See force_const_mem for explanation.) */
1981 static rtx const_double_chain
;
1983 /* Return a CONST_DOUBLE or CONST_INT for a value specified as a pair of ints.
1984 For an integer, I0 is the low-order word and I1 is the high-order word.
1985 For a real number, I0 is the word with the low address
1986 and I1 is the word with the high address. */
1989 immed_double_const (i0
, i1
, mode
)
1990 HOST_WIDE_INT i0
, i1
;
1991 enum machine_mode mode
;
1994 int in_current_obstack
;
1996 if (GET_MODE_CLASS (mode
) == MODE_INT
1997 || GET_MODE_CLASS (mode
) == MODE_PARTIAL_INT
)
1999 /* We clear out all bits that don't belong in MODE, unless they and our
2000 sign bit are all one. So we get either a reasonable negative value
2001 or a reasonable unsigned value for this mode. */
2002 int width
= GET_MODE_BITSIZE (mode
);
2003 if (width
< HOST_BITS_PER_WIDE_INT
2004 && ((i0
& ((HOST_WIDE_INT
) (-1) << (width
- 1)))
2005 != ((HOST_WIDE_INT
) (-1) << (width
- 1))))
2006 i0
&= ((HOST_WIDE_INT
) 1 << width
) - 1, i1
= 0;
2007 else if (width
== HOST_BITS_PER_WIDE_INT
2008 && ! (i1
== ~0 && i0
< 0))
2010 else if (width
> 2 * HOST_BITS_PER_WIDE_INT
)
2011 /* We cannot represent this value as a constant. */
2014 /* If this would be an entire word for the target, but is not for
2015 the host, then sign-extend on the host so that the number will look
2016 the same way on the host that it would on the target.
2018 For example, when building a 64 bit alpha hosted 32 bit sparc
2019 targeted compiler, then we want the 32 bit unsigned value -1 to be
2020 represented as a 64 bit value -1, and not as 0x00000000ffffffff.
2021 The later confuses the sparc backend. */
2023 if (BITS_PER_WORD
< HOST_BITS_PER_WIDE_INT
&& BITS_PER_WORD
== width
2024 && (i0
& ((HOST_WIDE_INT
) 1 << (width
- 1))))
2025 i0
|= ((HOST_WIDE_INT
) (-1) << width
);
2027 /* If MODE fits within HOST_BITS_PER_WIDE_INT, always use a CONST_INT.
2029 ??? Strictly speaking, this is wrong if we create a CONST_INT
2030 for a large unsigned constant with the size of MODE being
2031 HOST_BITS_PER_WIDE_INT and later try to interpret that constant in a
2032 wider mode. In that case we will mis-interpret it as a negative
2035 Unfortunately, the only alternative is to make a CONST_DOUBLE
2036 for any constant in any mode if it is an unsigned constant larger
2037 than the maximum signed integer in an int on the host. However,
2038 doing this will break everyone that always expects to see a CONST_INT
2039 for SImode and smaller.
2041 We have always been making CONST_INTs in this case, so nothing new
2044 if (width
<= HOST_BITS_PER_WIDE_INT
)
2045 i1
= (i0
< 0) ? ~0 : 0;
2047 /* If this integer fits in one word, return a CONST_INT. */
2048 if ((i1
== 0 && i0
>= 0)
2049 || (i1
== ~0 && i0
< 0))
2050 return GEN_INT (i0
);
2052 /* We use VOIDmode for integers. */
2056 /* Search the chain for an existing CONST_DOUBLE with the right value.
2057 If one is found, return it. */
2059 for (r
= const_double_chain
; r
; r
= CONST_DOUBLE_CHAIN (r
))
2060 if (CONST_DOUBLE_LOW (r
) == i0
&& CONST_DOUBLE_HIGH (r
) == i1
2061 && GET_MODE (r
) == mode
)
2064 /* No; make a new one and add it to the chain.
2066 We may be called by an optimizer which may be discarding any memory
2067 allocated during its processing (such as combine and loop). However,
2068 we will be leaving this constant on the chain, so we cannot tolerate
2069 freed memory. So switch to saveable_obstack for this allocation
2070 and then switch back if we were in current_obstack. */
2072 push_obstacks_nochange ();
2073 rtl_in_saveable_obstack ();
2074 r
= gen_rtx (CONST_DOUBLE
, mode
, 0, i0
, i1
);
2077 /* Don't touch const_double_chain in nested function; see force_const_mem.
2078 Also, don't touch it if not inside any function. */
2079 if (outer_function_chain
== 0 && current_function_decl
!= 0)
2081 CONST_DOUBLE_CHAIN (r
) = const_double_chain
;
2082 const_double_chain
= r
;
2085 /* Store const0_rtx in mem-slot since this CONST_DOUBLE is on the chain.
2086 Actual use of mem-slot is only through force_const_mem. */
2088 CONST_DOUBLE_MEM (r
) = const0_rtx
;
2093 /* Return a CONST_DOUBLE for a specified `double' value
2094 and machine mode. */
2097 immed_real_const_1 (d
, mode
)
2099 enum machine_mode mode
;
2101 union real_extract u
;
2103 int in_current_obstack
;
2105 /* Get the desired `double' value as a sequence of ints
2106 since that is how they are stored in a CONST_DOUBLE. */
2110 /* Detect special cases. */
2112 /* Avoid REAL_VALUES_EQUAL here in order to distinguish minus zero. */
2113 if (!bcmp ((char *) &dconst0
, (char *) &d
, sizeof d
))
2114 return CONST0_RTX (mode
);
2115 /* Check for NaN first, because some ports (specifically the i386) do not
2116 emit correct ieee-fp code by default, and thus will generate a core
2117 dump here if we pass a NaN to REAL_VALUES_EQUAL and if REAL_VALUES_EQUAL
2118 does a floating point comparison. */
2119 else if (! REAL_VALUE_ISNAN (d
) && REAL_VALUES_EQUAL (dconst1
, d
))
2120 return CONST1_RTX (mode
);
2122 if (sizeof u
== 2 * sizeof (HOST_WIDE_INT
))
2123 return immed_double_const (u
.i
[0], u
.i
[1], mode
);
2125 /* The rest of this function handles the case where
2126 a float value requires more than 2 ints of space.
2127 It will be deleted as dead code on machines that don't need it. */
2129 /* Search the chain for an existing CONST_DOUBLE with the right value.
2130 If one is found, return it. */
2132 for (r
= const_double_chain
; r
; r
= CONST_DOUBLE_CHAIN (r
))
2133 if (! bcmp ((char *) &CONST_DOUBLE_LOW (r
), (char *) &u
, sizeof u
)
2134 && GET_MODE (r
) == mode
)
2137 /* No; make a new one and add it to the chain.
2139 We may be called by an optimizer which may be discarding any memory
2140 allocated during its processing (such as combine and loop). However,
2141 we will be leaving this constant on the chain, so we cannot tolerate
2142 freed memory. So switch to saveable_obstack for this allocation
2143 and then switch back if we were in current_obstack. */
2145 push_obstacks_nochange ();
2146 rtl_in_saveable_obstack ();
2147 r
= rtx_alloc (CONST_DOUBLE
);
2149 bcopy ((char *) &u
, (char *) &CONST_DOUBLE_LOW (r
), sizeof u
);
2152 /* Don't touch const_double_chain in nested function; see force_const_mem.
2153 Also, don't touch it if not inside any function. */
2154 if (outer_function_chain
== 0 && current_function_decl
!= 0)
2156 CONST_DOUBLE_CHAIN (r
) = const_double_chain
;
2157 const_double_chain
= r
;
2160 /* Store const0_rtx in CONST_DOUBLE_MEM since this CONST_DOUBLE is on the
2161 chain, but has not been allocated memory. Actual use of CONST_DOUBLE_MEM
2162 is only through force_const_mem. */
2164 CONST_DOUBLE_MEM (r
) = const0_rtx
;
2169 /* Return a CONST_DOUBLE rtx for a value specified by EXP,
2170 which must be a REAL_CST tree node. */
2173 immed_real_const (exp
)
2176 return immed_real_const_1 (TREE_REAL_CST (exp
), TYPE_MODE (TREE_TYPE (exp
)));
2179 /* At the end of a function, forget the memory-constants
2180 previously made for CONST_DOUBLEs. Mark them as not on real_constant_chain.
2181 Also clear out real_constant_chain and clear out all the chain-pointers. */
2184 clear_const_double_mem ()
2186 register rtx r
, next
;
2188 /* Don't touch CONST_DOUBLE_MEM for nested functions.
2189 See force_const_mem for explanation. */
2190 if (outer_function_chain
!= 0)
2193 for (r
= const_double_chain
; r
; r
= next
)
2195 next
= CONST_DOUBLE_CHAIN (r
);
2196 CONST_DOUBLE_CHAIN (r
) = 0;
2197 CONST_DOUBLE_MEM (r
) = cc0_rtx
;
2199 const_double_chain
= 0;
2202 /* Given an expression EXP with a constant value,
2203 reduce it to the sum of an assembler symbol and an integer.
2204 Store them both in the structure *VALUE.
2205 Abort if EXP does not reduce. */
2210 HOST_WIDE_INT offset
;
2214 decode_addr_const (exp
, value
)
2216 struct addr_const
*value
;
2218 register tree target
= TREE_OPERAND (exp
, 0);
2219 register int offset
= 0;
2224 if (TREE_CODE (target
) == COMPONENT_REF
2225 && (TREE_CODE (DECL_FIELD_BITPOS (TREE_OPERAND (target
, 1)))
2228 offset
+= TREE_INT_CST_LOW (DECL_FIELD_BITPOS (TREE_OPERAND (target
, 1))) / BITS_PER_UNIT
;
2229 target
= TREE_OPERAND (target
, 0);
2231 else if (TREE_CODE (target
) == ARRAY_REF
)
2233 if (TREE_CODE (TREE_OPERAND (target
, 1)) != INTEGER_CST
2234 || TREE_CODE (TYPE_SIZE (TREE_TYPE (target
))) != INTEGER_CST
)
2236 offset
+= ((TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (target
)))
2237 * TREE_INT_CST_LOW (TREE_OPERAND (target
, 1)))
2239 target
= TREE_OPERAND (target
, 0);
2245 switch (TREE_CODE (target
))
2249 x
= DECL_RTL (target
);
2253 if (output_bytecode
)
2254 /* FIXME: this may not be correct, check it */
2255 x
= bc_gen_rtx (TREE_STRING_POINTER (target
), 0, (struct bc_label
*) 0);
2257 x
= gen_rtx (MEM
, FUNCTION_MODE
,
2258 gen_rtx (LABEL_REF
, VOIDmode
,
2259 label_rtx (TREE_OPERAND (exp
, 0))));
2266 x
= TREE_CST_RTL (target
);
2273 if (!output_bytecode
)
2275 if (GET_CODE (x
) != MEM
)
2281 value
->offset
= offset
;
2284 /* Uniquize all constants that appear in memory.
2285 Each constant in memory thus far output is recorded
2286 in `const_hash_table' with a `struct constant_descriptor'
2287 that contains a polish representation of the value of
2290 We cannot store the trees in the hash table
2291 because the trees may be temporary. */
2293 struct constant_descriptor
2295 struct constant_descriptor
*next
;
2301 #define MAX_HASH_TABLE 1009
2302 static struct constant_descriptor
*const_hash_table
[MAX_HASH_TABLE
];
2304 /* Compute a hash code for a constant expression. */
2311 register int len
, hi
, i
;
2312 register enum tree_code code
= TREE_CODE (exp
);
2314 if (code
== INTEGER_CST
)
2316 p
= (char *) &TREE_INT_CST_LOW (exp
);
2317 len
= 2 * sizeof TREE_INT_CST_LOW (exp
);
2319 else if (code
== REAL_CST
)
2321 p
= (char *) &TREE_REAL_CST (exp
);
2322 len
= sizeof TREE_REAL_CST (exp
);
2324 else if (code
== STRING_CST
)
2325 p
= TREE_STRING_POINTER (exp
), len
= TREE_STRING_LENGTH (exp
);
2326 else if (code
== COMPLEX_CST
)
2327 return const_hash (TREE_REALPART (exp
)) * 5
2328 + const_hash (TREE_IMAGPART (exp
));
2329 else if (code
== CONSTRUCTOR
&& TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2331 len
= int_size_in_bytes (TREE_TYPE (exp
));
2332 p
= (char *) alloca (len
);
2333 get_set_constructor_bytes (exp
, (unsigned char *) p
, len
);
2335 else if (code
== CONSTRUCTOR
)
2339 /* For record type, include the type in the hashing.
2340 We do not do so for array types
2341 because (1) the sizes of the elements are sufficient
2342 and (2) distinct array types can have the same constructor.
2343 Instead, we include the array size because the constructor could
2345 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
2346 hi
= ((HOST_WIDE_INT
) TREE_TYPE (exp
) & ((1 << HASHBITS
) - 1))
2349 hi
= ((5 + int_size_in_bytes (TREE_TYPE (exp
)))
2350 & ((1 << HASHBITS
) - 1)) % MAX_HASH_TABLE
;
2352 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2353 if (TREE_VALUE (link
))
2354 hi
= (hi
* 603 + const_hash (TREE_VALUE (link
))) % MAX_HASH_TABLE
;
2358 else if (code
== ADDR_EXPR
)
2360 struct addr_const value
;
2361 decode_addr_const (exp
, &value
);
2362 if (GET_CODE (value
.base
) == SYMBOL_REF
)
2364 /* Don't hash the address of the SYMBOL_REF;
2365 only use the offset and the symbol name. */
2367 p
= XSTR (value
.base
, 0);
2368 for (i
= 0; p
[i
] != 0; i
++)
2369 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2371 else if (GET_CODE (value
.base
) == LABEL_REF
)
2372 hi
= value
.offset
+ CODE_LABEL_NUMBER (XEXP (value
.base
, 0)) * 13;
2374 hi
&= (1 << HASHBITS
) - 1;
2375 hi
%= MAX_HASH_TABLE
;
2378 else if (code
== PLUS_EXPR
|| code
== MINUS_EXPR
)
2379 return const_hash (TREE_OPERAND (exp
, 0)) * 9
2380 + const_hash (TREE_OPERAND (exp
, 1));
2381 else if (code
== NOP_EXPR
|| code
== CONVERT_EXPR
)
2382 return const_hash (TREE_OPERAND (exp
, 0)) * 7 + 2;
2384 /* Compute hashing function */
2386 for (i
= 0; i
< len
; i
++)
2387 hi
= ((hi
* 613) + (unsigned) (p
[i
]));
2389 hi
&= (1 << HASHBITS
) - 1;
2390 hi
%= MAX_HASH_TABLE
;
2394 /* Compare a constant expression EXP with a constant-descriptor DESC.
2395 Return 1 if DESC describes a constant with the same value as EXP. */
2398 compare_constant (exp
, desc
)
2400 struct constant_descriptor
*desc
;
2402 return 0 != compare_constant_1 (exp
, desc
->contents
);
2405 /* Compare constant expression EXP with a substring P of a constant descriptor.
2406 If they match, return a pointer to the end of the substring matched.
2407 If they do not match, return 0.
2409 Since descriptors are written in polish prefix notation,
2410 this function can be used recursively to test one operand of EXP
2411 against a subdescriptor, and if it succeeds it returns the
2412 address of the subdescriptor for the next operand. */
2415 compare_constant_1 (exp
, p
)
2419 register char *strp
;
2421 register enum tree_code code
= TREE_CODE (exp
);
2423 if (code
!= (enum tree_code
) *p
++)
2426 if (code
== INTEGER_CST
)
2428 /* Integer constants are the same only if the same width of type. */
2429 if (*p
++ != TYPE_PRECISION (TREE_TYPE (exp
)))
2431 strp
= (char *) &TREE_INT_CST_LOW (exp
);
2432 len
= 2 * sizeof TREE_INT_CST_LOW (exp
);
2434 else if (code
== REAL_CST
)
2436 /* Real constants are the same only if the same width of type. */
2437 if (*p
++ != TYPE_PRECISION (TREE_TYPE (exp
)))
2439 strp
= (char *) &TREE_REAL_CST (exp
);
2440 len
= sizeof TREE_REAL_CST (exp
);
2442 else if (code
== STRING_CST
)
2444 if (flag_writable_strings
)
2446 strp
= TREE_STRING_POINTER (exp
);
2447 len
= TREE_STRING_LENGTH (exp
);
2448 if (bcmp ((char *) &TREE_STRING_LENGTH (exp
), p
,
2449 sizeof TREE_STRING_LENGTH (exp
)))
2451 p
+= sizeof TREE_STRING_LENGTH (exp
);
2453 else if (code
== COMPLEX_CST
)
2455 p
= compare_constant_1 (TREE_REALPART (exp
), p
);
2456 if (p
== 0) return 0;
2457 p
= compare_constant_1 (TREE_IMAGPART (exp
), p
);
2460 else if (code
== CONSTRUCTOR
&& TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2462 int xlen
= len
= int_size_in_bytes (TREE_TYPE (exp
));
2463 strp
= (char *) alloca (len
);
2464 get_set_constructor_bytes (exp
, (unsigned char *) strp
, len
);
2465 if (bcmp ((char *) &xlen
, p
, sizeof xlen
))
2469 else if (code
== CONSTRUCTOR
)
2472 int length
= list_length (CONSTRUCTOR_ELTS (exp
));
2475 if (bcmp ((char *) &length
, p
, sizeof length
))
2479 /* For record constructors, insist that the types match.
2480 For arrays, just verify both constructors are for arrays. */
2481 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
2482 type
= TREE_TYPE (exp
);
2485 if (bcmp ((char *) &type
, p
, sizeof type
))
2489 /* For arrays, insist that the size in bytes match. */
2490 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2492 int size
= int_size_in_bytes (TREE_TYPE (exp
));
2493 if (bcmp ((char *) &size
, p
, sizeof size
))
2498 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2500 if (TREE_VALUE (link
))
2502 if ((p
= compare_constant_1 (TREE_VALUE (link
), p
)) == 0)
2509 if (bcmp ((char *) &zero
, p
, sizeof zero
))
2517 else if (code
== ADDR_EXPR
)
2519 struct addr_const value
;
2520 decode_addr_const (exp
, &value
);
2521 strp
= (char *) &value
.offset
;
2522 len
= sizeof value
.offset
;
2523 /* Compare the offset. */
2525 if (*p
++ != *strp
++)
2527 /* Compare symbol name. */
2528 strp
= XSTR (value
.base
, 0);
2529 len
= strlen (strp
) + 1;
2531 else if (code
== PLUS_EXPR
|| code
== MINUS_EXPR
)
2533 p
= compare_constant_1 (TREE_OPERAND (exp
, 0), p
);
2534 if (p
== 0) return 0;
2535 p
= compare_constant_1 (TREE_OPERAND (exp
, 1), p
);
2538 else if (code
== NOP_EXPR
|| code
== CONVERT_EXPR
)
2540 p
= compare_constant_1 (TREE_OPERAND (exp
, 0), p
);
2544 /* Compare constant contents. */
2546 if (*p
++ != *strp
++)
2552 /* Construct a constant descriptor for the expression EXP.
2553 It is up to the caller to enter the descriptor in the hash table. */
2555 static struct constant_descriptor
*
2556 record_constant (exp
)
2559 struct constant_descriptor
*next
= 0;
2562 /* Make a struct constant_descriptor. The first two pointers will
2563 be filled in later. Here we just leave space for them. */
2565 obstack_grow (&permanent_obstack
, (char *) &next
, sizeof next
);
2566 obstack_grow (&permanent_obstack
, (char *) &label
, sizeof label
);
2567 record_constant_1 (exp
);
2568 return (struct constant_descriptor
*) obstack_finish (&permanent_obstack
);
2571 /* Add a description of constant expression EXP
2572 to the object growing in `permanent_obstack'.
2573 No need to return its address; the caller will get that
2574 from the obstack when the object is complete. */
2577 record_constant_1 (exp
)
2580 register char *strp
;
2582 register enum tree_code code
= TREE_CODE (exp
);
2584 obstack_1grow (&permanent_obstack
, (unsigned int) code
);
2589 obstack_1grow (&permanent_obstack
, TYPE_PRECISION (TREE_TYPE (exp
)));
2590 strp
= (char *) &TREE_INT_CST_LOW (exp
);
2591 len
= 2 * sizeof TREE_INT_CST_LOW (exp
);
2595 obstack_1grow (&permanent_obstack
, TYPE_PRECISION (TREE_TYPE (exp
)));
2596 strp
= (char *) &TREE_REAL_CST (exp
);
2597 len
= sizeof TREE_REAL_CST (exp
);
2601 if (flag_writable_strings
)
2604 strp
= TREE_STRING_POINTER (exp
);
2605 len
= TREE_STRING_LENGTH (exp
);
2606 obstack_grow (&permanent_obstack
, (char *) &TREE_STRING_LENGTH (exp
),
2607 sizeof TREE_STRING_LENGTH (exp
));
2611 record_constant_1 (TREE_REALPART (exp
));
2612 record_constant_1 (TREE_IMAGPART (exp
));
2616 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2618 int nbytes
= int_size_in_bytes (TREE_TYPE (exp
));
2619 obstack_grow (&permanent_obstack
, &nbytes
, sizeof (nbytes
));
2620 obstack_blank (&permanent_obstack
, nbytes
);
2621 get_set_constructor_bytes
2622 (exp
, (unsigned char *) permanent_obstack
.next_free
-nbytes
,
2629 int length
= list_length (CONSTRUCTOR_ELTS (exp
));
2632 obstack_grow (&permanent_obstack
, (char *) &length
, sizeof length
);
2634 /* For record constructors, insist that the types match.
2635 For arrays, just verify both constructors are for arrays. */
2636 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
2637 type
= TREE_TYPE (exp
);
2640 obstack_grow (&permanent_obstack
, (char *) &type
, sizeof type
);
2642 /* For arrays, insist that the size in bytes match. */
2643 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
2645 int size
= int_size_in_bytes (TREE_TYPE (exp
));
2646 obstack_grow (&permanent_obstack
, (char *) &size
, sizeof size
);
2649 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
2651 if (TREE_VALUE (link
))
2652 record_constant_1 (TREE_VALUE (link
));
2657 obstack_grow (&permanent_obstack
,
2658 (char *) &zero
, sizeof zero
);
2666 struct addr_const value
;
2668 decode_addr_const (exp
, &value
);
2669 /* Record the offset. */
2670 obstack_grow (&permanent_obstack
,
2671 (char *) &value
.offset
, sizeof value
.offset
);
2672 /* Record the symbol name. */
2673 obstack_grow (&permanent_obstack
, XSTR (value
.base
, 0),
2674 strlen (XSTR (value
.base
, 0)) + 1);
2680 record_constant_1 (TREE_OPERAND (exp
, 0));
2681 record_constant_1 (TREE_OPERAND (exp
, 1));
2686 case NON_LVALUE_EXPR
:
2687 record_constant_1 (TREE_OPERAND (exp
, 0));
2694 /* Record constant contents. */
2695 obstack_grow (&permanent_obstack
, strp
, len
);
2698 /* Record a list of constant expressions that were passed to
2699 output_constant_def but that could not be output right away. */
2701 struct deferred_constant
2703 struct deferred_constant
*next
;
2709 static struct deferred_constant
*deferred_constants
;
2711 /* Nonzero means defer output of addressed subconstants
2712 (i.e., those for which output_constant_def is called.) */
2713 static int defer_addressed_constants_flag
;
2715 /* Start deferring output of subconstants. */
2718 defer_addressed_constants ()
2720 defer_addressed_constants_flag
++;
2723 /* Stop deferring output of subconstants,
2724 and output now all those that have been deferred. */
2727 output_deferred_addressed_constants ()
2729 struct deferred_constant
*p
, *next
;
2731 defer_addressed_constants_flag
--;
2733 if (defer_addressed_constants_flag
> 0)
2736 for (p
= deferred_constants
; p
; p
= next
)
2738 output_constant_def_contents (p
->exp
, p
->reloc
, p
->labelno
);
2743 deferred_constants
= 0;
2746 /* Make a copy of the whole tree structure for a constant.
2747 This handles the same types of nodes that compare_constant
2748 and record_constant handle. */
2754 switch (TREE_CODE (exp
))
2757 /* For ADDR_EXPR, we do not want to copy the decl whose address
2758 is requested. We do want to copy constants though. */
2759 if (TREE_CODE_CLASS (TREE_CODE (TREE_OPERAND (exp
, 0))) == 'c')
2760 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2761 copy_constant (TREE_OPERAND (exp
, 0)));
2763 return copy_node (exp
);
2768 return copy_node (exp
);
2771 return build_complex (copy_constant (TREE_REALPART (exp
)),
2772 copy_constant (TREE_IMAGPART (exp
)));
2776 return build (TREE_CODE (exp
), TREE_TYPE (exp
),
2777 copy_constant (TREE_OPERAND (exp
, 0)),
2778 copy_constant (TREE_OPERAND (exp
, 1)));
2782 return build1 (TREE_CODE (exp
), TREE_TYPE (exp
),
2783 copy_constant (TREE_OPERAND (exp
, 0)));
2787 tree copy
= copy_node (exp
);
2788 tree list
= copy_list (CONSTRUCTOR_ELTS (exp
));
2791 CONSTRUCTOR_ELTS (copy
) = list
;
2792 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2793 TREE_VALUE (tail
) = copy_constant (TREE_VALUE (tail
));
2794 if (TREE_CODE (TREE_TYPE (exp
)) == SET_TYPE
)
2795 for (tail
= list
; tail
; tail
= TREE_CHAIN (tail
))
2796 TREE_PURPOSE (tail
) = copy_constant (TREE_PURPOSE (tail
));
2806 /* Return an rtx representing a reference to constant data in memory
2807 for the constant expression EXP.
2809 If assembler code for such a constant has already been output,
2810 return an rtx to refer to it.
2811 Otherwise, output such a constant in memory (or defer it for later)
2812 and generate an rtx for it.
2814 The TREE_CST_RTL of EXP is set up to point to that rtx.
2815 The const_hash_table records which constants already have label strings. */
2818 output_constant_def (exp
)
2822 register struct constant_descriptor
*desc
;
2828 if (TREE_CODE (exp
) == INTEGER_CST
)
2829 abort (); /* No TREE_CST_RTL slot in these. */
2831 if (TREE_CST_RTL (exp
))
2832 return TREE_CST_RTL (exp
);
2834 /* Make sure any other constants whose addresses appear in EXP
2835 are assigned label numbers. */
2837 reloc
= output_addressed_constants (exp
);
2839 /* Compute hash code of EXP. Search the descriptors for that hash code
2840 to see if any of them describes EXP. If yes, the descriptor records
2841 the label number already assigned. */
2843 hash
= const_hash (exp
) % MAX_HASH_TABLE
;
2845 for (desc
= const_hash_table
[hash
]; desc
; desc
= desc
->next
)
2846 if (compare_constant (exp
, desc
))
2848 found
= desc
->label
;
2854 /* No constant equal to EXP is known to have been output.
2855 Make a constant descriptor to enter EXP in the hash table.
2856 Assign the label number and record it in the descriptor for
2857 future calls to this function to find. */
2859 /* Create a string containing the label name, in LABEL. */
2860 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
2862 desc
= record_constant (exp
);
2863 desc
->next
= const_hash_table
[hash
];
2865 = (char *) obstack_copy0 (&permanent_obstack
, label
, strlen (label
));
2866 const_hash_table
[hash
] = desc
;
2870 /* Create a string containing the label name, in LABEL. */
2871 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
2874 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
2876 push_obstacks_nochange ();
2877 if (TREE_PERMANENT (exp
))
2878 end_temporary_allocation ();
2880 def
= gen_rtx (SYMBOL_REF
, Pmode
, desc
->label
);
2883 = gen_rtx (MEM
, TYPE_MODE (TREE_TYPE (exp
)), def
);
2884 RTX_UNCHANGING_P (TREE_CST_RTL (exp
)) = 1;
2885 if (AGGREGATE_TYPE_P (TREE_TYPE (exp
)))
2886 MEM_IN_STRUCT_P (TREE_CST_RTL (exp
)) = 1;
2890 /* Optionally set flags or add text to the name to record information
2891 such as that it is a function name. If the name is changed, the macro
2892 ASM_OUTPUT_LABELREF will have to know how to strip this information. */
2893 #ifdef ENCODE_SECTION_INFO
2894 ENCODE_SECTION_INFO (exp
);
2897 /* If this is the first time we've seen this particular constant,
2898 output it (or defer its output for later). */
2901 if (defer_addressed_constants_flag
)
2903 struct deferred_constant
*p
;
2904 p
= (struct deferred_constant
*) xmalloc (sizeof (struct deferred_constant
));
2906 push_obstacks_nochange ();
2907 suspend_momentary ();
2908 p
->exp
= copy_constant (exp
);
2911 p
->labelno
= const_labelno
++;
2912 p
->next
= deferred_constants
;
2913 deferred_constants
= p
;
2916 output_constant_def_contents (exp
, reloc
, const_labelno
++);
2919 return TREE_CST_RTL (exp
);
2922 /* Now output assembler code to define the label for EXP,
2923 and follow it with the data of EXP. */
2926 output_constant_def_contents (exp
, reloc
, labelno
)
2933 if (IN_NAMED_SECTION (exp
))
2934 named_section (exp
, NULL
);
2937 /* First switch to text section, except for writable strings. */
2938 #ifdef SELECT_SECTION
2939 SELECT_SECTION (exp
, reloc
);
2941 if (((TREE_CODE (exp
) == STRING_CST
) && flag_writable_strings
)
2942 || (flag_pic
&& reloc
))
2945 readonly_data_section ();
2949 /* Align the location counter as required by EXP's data type. */
2950 align
= TYPE_ALIGN (TREE_TYPE (exp
));
2951 #ifdef CONSTANT_ALIGNMENT
2952 align
= CONSTANT_ALIGNMENT (exp
, align
);
2955 if (align
> BITS_PER_UNIT
)
2957 if (!output_bytecode
)
2959 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2963 BC_OUTPUT_ALIGN (asm_out_file
, floor_log2 (align
/ BITS_PER_UNIT
));
2967 /* Output the label itself. */
2968 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LC", labelno
);
2970 /* Output the value of EXP. */
2971 output_constant (exp
,
2972 (TREE_CODE (exp
) == STRING_CST
2973 ? TREE_STRING_LENGTH (exp
)
2974 : int_size_in_bytes (TREE_TYPE (exp
))));
2978 /* Similar hash facility for making memory-constants
2979 from constant rtl-expressions. It is used on RISC machines
2980 where immediate integer arguments and constant addresses are restricted
2981 so that such constants must be stored in memory.
2983 This pool of constants is reinitialized for each function
2984 so each function gets its own constants-pool that comes right before it.
2986 All structures allocated here are discarded when functions are saved for
2987 inlining, so they do not need to be allocated permanently. */
2989 #define MAX_RTX_HASH_TABLE 61
2990 static struct constant_descriptor
**const_rtx_hash_table
;
2992 /* Structure to represent sufficient information about a constant so that
2993 it can be output when the constant pool is output, so that function
2994 integration can be done, and to simplify handling on machines that reference
2995 constant pool as base+displacement. */
2997 struct pool_constant
2999 struct constant_descriptor
*desc
;
3000 struct pool_constant
*next
;
3001 enum machine_mode mode
;
3008 /* Pointers to first and last constant in pool. */
3010 static struct pool_constant
*first_pool
, *last_pool
;
3012 /* Current offset in constant pool (does not include any machine-specific
3015 static int pool_offset
;
3017 /* Structure used to maintain hash table mapping symbols used to their
3018 corresponding constants. */
3023 struct pool_constant
*pool
;
3024 struct pool_sym
*next
;
3027 static struct pool_sym
**const_rtx_sym_hash_table
;
3029 /* Hash code for a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true.
3030 The argument is XSTR (... , 0) */
3032 #define SYMHASH(LABEL) \
3033 ((((HOST_WIDE_INT) (LABEL)) & ((1 << HASHBITS) - 1)) % MAX_RTX_HASH_TABLE)
3035 /* Initialize constant pool hashing for next function. */
3038 init_const_rtx_hash_table ()
3040 const_rtx_hash_table
3041 = ((struct constant_descriptor
**)
3042 oballoc (MAX_RTX_HASH_TABLE
* sizeof (struct constant_descriptor
*)));
3043 const_rtx_sym_hash_table
3044 = ((struct pool_sym
**)
3045 oballoc (MAX_RTX_HASH_TABLE
* sizeof (struct pool_sym
*)));
3046 bzero ((char *) const_rtx_hash_table
,
3047 MAX_RTX_HASH_TABLE
* sizeof (struct constant_descriptor
*));
3048 bzero ((char *) const_rtx_sym_hash_table
,
3049 MAX_RTX_HASH_TABLE
* sizeof (struct pool_sym
*));
3051 first_pool
= last_pool
= 0;
3055 /* Save and restore status for a nested function. */
3058 save_varasm_status (p
)
3061 p
->const_rtx_hash_table
= const_rtx_hash_table
;
3062 p
->const_rtx_sym_hash_table
= const_rtx_sym_hash_table
;
3063 p
->first_pool
= first_pool
;
3064 p
->last_pool
= last_pool
;
3065 p
->pool_offset
= pool_offset
;
3069 restore_varasm_status (p
)
3072 const_rtx_hash_table
= p
->const_rtx_hash_table
;
3073 const_rtx_sym_hash_table
= p
->const_rtx_sym_hash_table
;
3074 first_pool
= p
->first_pool
;
3075 last_pool
= p
->last_pool
;
3076 pool_offset
= p
->pool_offset
;
3079 enum kind
{ RTX_DOUBLE
, RTX_INT
};
3083 #ifdef ONLY_INT_FIELDS
3084 unsigned int kind
: 16;
3085 unsigned int mode
: 16;
3087 enum kind kind
: 16;
3088 enum machine_mode mode
: 16;
3091 union real_extract du
;
3092 struct addr_const addr
;
3093 struct {HOST_WIDE_INT high
, low
;} di
;
3097 /* Express an rtx for a constant integer (perhaps symbolic)
3098 as the sum of a symbol or label plus an explicit integer.
3099 They are stored into VALUE. */
3102 decode_rtx_const (mode
, x
, value
)
3103 enum machine_mode mode
;
3105 struct rtx_const
*value
;
3107 /* Clear the whole structure, including any gaps. */
3110 int *p
= (int *) value
;
3111 int *end
= (int *) (value
+ 1);
3116 value
->kind
= RTX_INT
; /* Most usual kind. */
3119 switch (GET_CODE (x
))
3122 value
->kind
= RTX_DOUBLE
;
3123 if (GET_MODE (x
) != VOIDmode
)
3125 value
->mode
= GET_MODE (x
);
3126 bcopy ((char *) &CONST_DOUBLE_LOW (x
),
3127 (char *) &value
->un
.du
, sizeof value
->un
.du
);
3131 value
->un
.di
.low
= CONST_DOUBLE_LOW (x
);
3132 value
->un
.di
.high
= CONST_DOUBLE_HIGH (x
);
3137 value
->un
.addr
.offset
= INTVAL (x
);
3143 value
->un
.addr
.base
= x
;
3148 if (GET_CODE (x
) == PLUS
)
3150 value
->un
.addr
.base
= XEXP (x
, 0);
3151 if (GET_CODE (XEXP (x
, 1)) != CONST_INT
)
3153 value
->un
.addr
.offset
= INTVAL (XEXP (x
, 1));
3155 else if (GET_CODE (x
) == MINUS
)
3157 value
->un
.addr
.base
= XEXP (x
, 0);
3158 if (GET_CODE (XEXP (x
, 1)) != CONST_INT
)
3160 value
->un
.addr
.offset
= - INTVAL (XEXP (x
, 1));
3170 if (value
->kind
== RTX_INT
&& value
->un
.addr
.base
!= 0)
3171 switch (GET_CODE (value
->un
.addr
.base
))
3175 /* Use the string's address, not the SYMBOL_REF's address,
3176 for the sake of addresses of library routines.
3177 For a LABEL_REF, compare labels. */
3178 value
->un
.addr
.base
= XEXP (value
->un
.addr
.base
, 0);
3182 /* Given a MINUS expression, simplify it if both sides
3183 include the same symbol. */
3186 simplify_subtraction (x
)
3189 struct rtx_const val0
, val1
;
3191 decode_rtx_const (GET_MODE (x
), XEXP (x
, 0), &val0
);
3192 decode_rtx_const (GET_MODE (x
), XEXP (x
, 1), &val1
);
3194 if (val0
.un
.addr
.base
== val1
.un
.addr
.base
)
3195 return GEN_INT (val0
.un
.addr
.offset
- val1
.un
.addr
.offset
);
3199 /* Compute a hash code for a constant RTL expression. */
3202 const_hash_rtx (mode
, x
)
3203 enum machine_mode mode
;
3208 struct rtx_const value
;
3209 decode_rtx_const (mode
, x
, &value
);
3211 /* Compute hashing function */
3213 for (i
= 0; i
< sizeof value
/ sizeof (int); i
++)
3214 hi
+= ((int *) &value
)[i
];
3216 hi
&= (1 << HASHBITS
) - 1;
3217 hi
%= MAX_RTX_HASH_TABLE
;
3221 /* Compare a constant rtl object X with a constant-descriptor DESC.
3222 Return 1 if DESC describes a constant with the same value as X. */
3225 compare_constant_rtx (mode
, x
, desc
)
3226 enum machine_mode mode
;
3228 struct constant_descriptor
*desc
;
3230 register int *p
= (int *) desc
->contents
;
3233 struct rtx_const value
;
3235 decode_rtx_const (mode
, x
, &value
);
3236 strp
= (int *) &value
;
3237 len
= sizeof value
/ sizeof (int);
3239 /* Compare constant contents. */
3241 if (*p
++ != *strp
++)
3247 /* Construct a constant descriptor for the rtl-expression X.
3248 It is up to the caller to enter the descriptor in the hash table. */
3250 static struct constant_descriptor
*
3251 record_constant_rtx (mode
, x
)
3252 enum machine_mode mode
;
3255 struct constant_descriptor
*ptr
;
3257 struct rtx_const value
;
3259 decode_rtx_const (mode
, x
, &value
);
3261 /* Put these things in the saveable obstack so we can ensure it won't
3262 be freed if we are called from combine or some other phase that discards
3263 memory allocated from function_obstack (current_obstack). */
3264 obstack_grow (saveable_obstack
, &ptr
, sizeof ptr
);
3265 obstack_grow (saveable_obstack
, &label
, sizeof label
);
3267 /* Record constant contents. */
3268 obstack_grow (saveable_obstack
, &value
, sizeof value
);
3270 return (struct constant_descriptor
*) obstack_finish (saveable_obstack
);
3273 /* Given a constant rtx X, make (or find) a memory constant for its value
3274 and return a MEM rtx to refer to it in memory. */
3277 force_const_mem (mode
, x
)
3278 enum machine_mode mode
;
3282 register struct constant_descriptor
*desc
;
3287 /* If we want this CONST_DOUBLE in the same mode as it is in memory
3288 (this will always be true for floating CONST_DOUBLEs that have been
3289 placed in memory, but not for VOIDmode (integer) CONST_DOUBLEs),
3290 use the previous copy. Otherwise, make a new one. Note that in
3291 the unlikely event that this same CONST_DOUBLE is used in two different
3292 modes in an alternating fashion, we will allocate a lot of different
3293 memory locations, but this should be extremely rare. */
3295 /* Don't use CONST_DOUBLE_MEM in a nested function.
3296 Nested functions have their own constant pools,
3297 so they can't share the same values in CONST_DOUBLE_MEM
3298 with the containing function. */
3299 if (outer_function_chain
== 0)
3300 if (GET_CODE (x
) == CONST_DOUBLE
3301 && GET_CODE (CONST_DOUBLE_MEM (x
)) == MEM
3302 && GET_MODE (CONST_DOUBLE_MEM (x
)) == mode
)
3303 return CONST_DOUBLE_MEM (x
);
3305 /* Compute hash code of X. Search the descriptors for that hash code
3306 to see if any of them describes X. If yes, the descriptor records
3307 the label number already assigned. */
3309 hash
= const_hash_rtx (mode
, x
);
3311 for (desc
= const_rtx_hash_table
[hash
]; desc
; desc
= desc
->next
)
3312 if (compare_constant_rtx (mode
, x
, desc
))
3314 found
= desc
->label
;
3320 register struct pool_constant
*pool
;
3321 register struct pool_sym
*sym
;
3324 /* No constant equal to X is known to have been output.
3325 Make a constant descriptor to enter X in the hash table.
3326 Assign the label number and record it in the descriptor for
3327 future calls to this function to find. */
3329 desc
= record_constant_rtx (mode
, x
);
3330 desc
->next
= const_rtx_hash_table
[hash
];
3331 const_rtx_hash_table
[hash
] = desc
;
3333 /* Align the location counter as required by EXP's data type. */
3334 align
= (mode
== VOIDmode
) ? UNITS_PER_WORD
: GET_MODE_SIZE (mode
);
3335 if (align
> BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
)
3336 align
= BIGGEST_ALIGNMENT
/ BITS_PER_UNIT
;
3338 pool_offset
+= align
- 1;
3339 pool_offset
&= ~ (align
- 1);
3341 /* If RTL is not being placed into the saveable obstack, make a
3342 copy of X that is in the saveable obstack in case we are being
3343 called from combine or some other phase that discards memory
3344 it allocates. We need only do this if it is a CONST, since
3345 no other RTX should be allocated in this situation. */
3346 if (rtl_obstack
!= saveable_obstack
3347 && GET_CODE (x
) == CONST
)
3349 push_obstacks_nochange ();
3350 rtl_in_saveable_obstack ();
3352 x
= gen_rtx (CONST
, GET_MODE (x
),
3353 gen_rtx (PLUS
, GET_MODE (x
),
3354 XEXP (XEXP (x
, 0), 0), XEXP (XEXP (x
, 0), 1)));
3358 /* Allocate a pool constant descriptor, fill it in, and chain it in. */
3360 pool
= (struct pool_constant
*) savealloc (sizeof (struct pool_constant
));
3364 pool
->labelno
= const_labelno
;
3365 pool
->align
= align
;
3366 pool
->offset
= pool_offset
;
3372 last_pool
->next
= pool
;
3375 pool_offset
+= GET_MODE_SIZE (mode
);
3377 /* Create a string containing the label name, in LABEL. */
3378 ASM_GENERATE_INTERNAL_LABEL (label
, "LC", const_labelno
);
3383 = (char *) obstack_copy0 (saveable_obstack
, label
, strlen (label
));
3385 /* Add label to symbol hash table. */
3386 hash
= SYMHASH (found
);
3387 sym
= (struct pool_sym
*) savealloc (sizeof (struct pool_sym
));
3390 sym
->next
= const_rtx_sym_hash_table
[hash
];
3391 const_rtx_sym_hash_table
[hash
] = sym
;
3394 /* We have a symbol name; construct the SYMBOL_REF and the MEM. */
3396 def
= gen_rtx (MEM
, mode
, gen_rtx (SYMBOL_REF
, Pmode
, found
));
3398 RTX_UNCHANGING_P (def
) = 1;
3399 /* Mark the symbol_ref as belonging to this constants pool. */
3400 CONSTANT_POOL_ADDRESS_P (XEXP (def
, 0)) = 1;
3401 current_function_uses_const_pool
= 1;
3403 if (outer_function_chain
== 0)
3404 if (GET_CODE (x
) == CONST_DOUBLE
)
3406 if (CONST_DOUBLE_MEM (x
) == cc0_rtx
)
3408 CONST_DOUBLE_CHAIN (x
) = const_double_chain
;
3409 const_double_chain
= x
;
3411 CONST_DOUBLE_MEM (x
) = def
;
3417 /* Given a SYMBOL_REF with CONSTANT_POOL_ADDRESS_P true, return a pointer to
3418 the corresponding pool_constant structure. */
3420 static struct pool_constant
*
3421 find_pool_constant (addr
)
3424 struct pool_sym
*sym
;
3425 char *label
= XSTR (addr
, 0);
3427 for (sym
= const_rtx_sym_hash_table
[SYMHASH (label
)]; sym
; sym
= sym
->next
)
3428 if (sym
->label
== label
)
3434 /* Given a constant pool SYMBOL_REF, return the corresponding constant. */
3437 get_pool_constant (addr
)
3440 return (find_pool_constant (addr
))->constant
;
3443 /* Similar, return the mode. */
3446 get_pool_mode (addr
)
3449 return (find_pool_constant (addr
))->mode
;
3452 /* Similar, return the offset in the constant pool. */
3455 get_pool_offset (addr
)
3458 return (find_pool_constant (addr
))->offset
;
3461 /* Return the size of the constant pool. */
3469 /* Write all the constants in the constant pool. */
3472 output_constant_pool (fnname
, fndecl
)
3476 struct pool_constant
*pool
;
3478 union real_extract u
;
3480 #ifdef ASM_OUTPUT_POOL_PROLOGUE
3481 ASM_OUTPUT_POOL_PROLOGUE (asm_out_file
, fnname
, fndecl
, pool_offset
);
3484 for (pool
= first_pool
; pool
; pool
= pool
->next
)
3488 /* See if X is a LABEL_REF (or a CONST referring to a LABEL_REF)
3489 whose CODE_LABEL has been deleted. This can occur if a jump table
3490 is eliminated by optimization. If so, write a constant of zero
3491 instead. Note that this can also happen by turning the
3492 CODE_LABEL into a NOTE. */
3493 if (((GET_CODE (x
) == LABEL_REF
3494 && (INSN_DELETED_P (XEXP (x
, 0))
3495 || GET_CODE (XEXP (x
, 0)) == NOTE
)))
3496 || (GET_CODE (x
) == CONST
&& GET_CODE (XEXP (x
, 0)) == PLUS
3497 && GET_CODE (XEXP (XEXP (x
, 0), 0)) == LABEL_REF
3498 && (INSN_DELETED_P (XEXP (XEXP (XEXP (x
, 0), 0), 0))
3499 || GET_CODE (XEXP (XEXP (XEXP (x
, 0), 0), 0)) == NOTE
)))
3502 /* First switch to correct section. */
3503 #ifdef SELECT_RTX_SECTION
3504 SELECT_RTX_SECTION (pool
->mode
, x
);
3506 readonly_data_section ();
3509 #ifdef ASM_OUTPUT_SPECIAL_POOL_ENTRY
3510 ASM_OUTPUT_SPECIAL_POOL_ENTRY (asm_out_file
, x
, pool
->mode
,
3511 pool
->align
, pool
->labelno
, done
);
3514 if (pool
->align
> 1)
3515 ASM_OUTPUT_ALIGN (asm_out_file
, exact_log2 (pool
->align
));
3517 /* Output the label. */
3518 ASM_OUTPUT_INTERNAL_LABEL (asm_out_file
, "LC", pool
->labelno
);
3520 /* Output the value of the constant itself. */
3521 switch (GET_MODE_CLASS (pool
->mode
))
3524 if (GET_CODE (x
) != CONST_DOUBLE
)
3527 bcopy ((char *) &CONST_DOUBLE_LOW (x
), (char *) &u
, sizeof u
);
3528 assemble_real (u
.d
, pool
->mode
);
3532 case MODE_PARTIAL_INT
:
3533 assemble_integer (x
, GET_MODE_SIZE (pool
->mode
), 1);
3543 /* Done with this pool. */
3544 first_pool
= last_pool
= 0;
3547 /* Find all the constants whose addresses are referenced inside of EXP,
3548 and make sure assembler code with a label has been output for each one.
3549 Indicate whether an ADDR_EXPR has been encountered. */
3552 output_addressed_constants (exp
)
3557 switch (TREE_CODE (exp
))
3561 register tree constant
= TREE_OPERAND (exp
, 0);
3563 while (TREE_CODE (constant
) == COMPONENT_REF
)
3565 constant
= TREE_OPERAND (constant
, 0);
3568 if (TREE_CODE_CLASS (TREE_CODE (constant
)) == 'c'
3569 || TREE_CODE (constant
) == CONSTRUCTOR
)
3570 /* No need to do anything here
3571 for addresses of variables or functions. */
3572 output_constant_def (constant
);
3579 reloc
= output_addressed_constants (TREE_OPERAND (exp
, 0));
3580 reloc
|= output_addressed_constants (TREE_OPERAND (exp
, 1));
3585 case NON_LVALUE_EXPR
:
3586 reloc
= output_addressed_constants (TREE_OPERAND (exp
, 0));
3592 for (link
= CONSTRUCTOR_ELTS (exp
); link
; link
= TREE_CHAIN (link
))
3593 if (TREE_VALUE (link
) != 0)
3594 reloc
|= output_addressed_constants (TREE_VALUE (link
));
3604 /* Output assembler code for constant EXP to FILE, with no label.
3605 This includes the pseudo-op such as ".int" or ".byte", and a newline.
3606 Assumes output_addressed_constants has been done on EXP already.
3608 Generate exactly SIZE bytes of assembler data, padding at the end
3609 with zeros if necessary. SIZE must always be specified.
3611 SIZE is important for structure constructors,
3612 since trailing members may have been omitted from the constructor.
3613 It is also important for initialization of arrays from string constants
3614 since the full length of the string constant might not be wanted.
3615 It is also needed for initialization of unions, where the initializer's
3616 type is just one member, and that may not be as long as the union.
3618 There a case in which we would fail to output exactly SIZE bytes:
3619 for a structure constructor that wants to produce more than SIZE bytes.
3620 But such constructors will never be generated for any possible input. */
3623 output_constant (exp
, size
)
3627 register enum tree_code code
= TREE_CODE (TREE_TYPE (exp
));
3633 /* Eliminate the NON_LVALUE_EXPR_EXPR that makes a cast not be an lvalue.
3634 That way we get the constant (we hope) inside it. Also, strip off any
3635 NOP_EXPR that converts between two record, union, array, or set types. */
3636 while ((TREE_CODE (exp
) == NOP_EXPR
3637 && (TREE_TYPE (exp
) == TREE_TYPE (TREE_OPERAND (exp
, 0))
3638 || AGGREGATE_TYPE_P (TREE_TYPE (exp
))))
3639 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
3640 exp
= TREE_OPERAND (exp
, 0);
3642 /* Allow a constructor with no elements for any data type.
3643 This means to fill the space with zeros. */
3644 if (TREE_CODE (exp
) == CONSTRUCTOR
&& CONSTRUCTOR_ELTS (exp
) == 0)
3646 if (output_bytecode
)
3647 bc_emit_const_skip (size
);
3649 assemble_zeros (size
);
3660 case REFERENCE_TYPE
:
3661 /* ??? What about (int)((float)(int)&foo + 4) */
3662 while (TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
3663 || TREE_CODE (exp
) == NON_LVALUE_EXPR
)
3664 exp
= TREE_OPERAND (exp
, 0);
3666 if (! assemble_integer (expand_expr (exp
, NULL_RTX
, VOIDmode
,
3667 EXPAND_INITIALIZER
),
3669 error ("initializer for integer value is too complicated");
3674 if (TREE_CODE (exp
) != REAL_CST
)
3675 error ("initializer for floating value is not a floating constant");
3677 assemble_real (TREE_REAL_CST (exp
),
3678 mode_for_size (size
* BITS_PER_UNIT
, MODE_FLOAT
, 0));
3683 output_constant (TREE_REALPART (exp
), size
/ 2);
3684 output_constant (TREE_IMAGPART (exp
), size
/ 2);
3685 size
-= (size
/ 2) * 2;
3689 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3691 output_constructor (exp
, size
);
3694 else if (TREE_CODE (exp
) == STRING_CST
)
3698 if (size
> TREE_STRING_LENGTH (exp
))
3700 excess
= size
- TREE_STRING_LENGTH (exp
);
3701 size
= TREE_STRING_LENGTH (exp
);
3704 assemble_string (TREE_STRING_POINTER (exp
), size
);
3713 if (TREE_CODE (exp
) == CONSTRUCTOR
)
3714 output_constructor (exp
, size
);
3720 if (TREE_CODE (exp
) == INTEGER_CST
)
3721 assemble_integer (expand_expr (exp
, NULL_RTX
,
3722 VOIDmode
, EXPAND_INITIALIZER
),
3724 else if (TREE_CODE (exp
) == CONSTRUCTOR
)
3726 unsigned char *buffer
= (unsigned char *) alloca (size
);
3727 if (get_set_constructor_bytes (exp
, buffer
, size
))
3729 assemble_string ((char *) buffer
, size
);
3732 error ("unknown set constructor type");
3737 assemble_zeros (size
);
3740 /* Bytecode specific code to output assembler for integer. */
3743 bc_assemble_integer (exp
, size
)
3751 /* FIXME: is this fold() business going to be as good as the
3752 expand_expr() using EXPAND_SUM above in the RTL case? I
3754 FIXME: Copied as is from BC-GCC1; may need work. Don't hate. -bson */
3758 while (TREE_CODE (exp
) == NOP_EXPR
|| TREE_CODE (exp
) == CONVERT_EXPR
)
3759 exp
= TREE_OPERAND (exp
, 0);
3760 if (TREE_CODE (exp
) == INTEGER_CST
)
3765 else if (TREE_CODE (exp
) == PLUS_EXPR
)
3767 const_part
= TREE_OPERAND (exp
, 0);
3768 while (TREE_CODE (const_part
) == NOP_EXPR
3769 || TREE_CODE (const_part
) == CONVERT_EXPR
)
3770 const_part
= TREE_OPERAND (const_part
, 0);
3771 addr_part
= TREE_OPERAND (exp
, 1);
3772 while (TREE_CODE (addr_part
) == NOP_EXPR
3773 || TREE_CODE (addr_part
) == CONVERT_EXPR
)
3774 addr_part
= TREE_OPERAND (addr_part
, 0);
3775 if (TREE_CODE (const_part
) != INTEGER_CST
)
3776 tmp
= const_part
, const_part
= addr_part
, addr_part
= tmp
;
3777 if (TREE_CODE (const_part
) != INTEGER_CST
3778 || TREE_CODE (addr_part
) != ADDR_EXPR
)
3779 abort (); /* FIXME: we really haven't considered
3780 all the possible cases here. */
3782 else if (TREE_CODE (exp
) == ADDR_EXPR
)
3784 const_part
= integer_zero_node
;
3788 abort (); /* FIXME: ditto previous. */
3794 char c
= TREE_INT_CST_LOW (const_part
);
3800 short s
= TREE_INT_CST_LOW (const_part
);
3801 bc_emit ((char *) &s
, 2);
3806 int i
= TREE_INT_CST_LOW (const_part
);
3807 bc_emit ((char *) &i
, 4);
3812 if (WORDS_BIG_ENDIAN
)
3814 int i
= TREE_INT_CST_HIGH (const_part
);
3815 bc_emit ((char *) &i
, 4);
3816 i
= TREE_INT_CST_LOW (const_part
);
3817 bc_emit ((char *) &i
, 4);
3821 int i
= TREE_INT_CST_LOW (const_part
);
3822 bc_emit ((char *) &i
, 4);
3823 i
= TREE_INT_CST_HIGH (const_part
);
3824 bc_emit ((char *) &i
, 4);
3831 && TREE_CODE (TREE_OPERAND (addr_part
, 0)) == VAR_DECL
)
3832 bc_emit_labelref (IDENTIFIER_POINTER
3833 (DECL_ASSEMBLER_NAME (TREE_OPERAND (addr_part
, 0))),
3834 TREE_INT_CST_LOW (const_part
));
3836 abort (); /* FIXME: there may be more cases. */
3839 /* Subroutine of output_constant, used for CONSTRUCTORs
3840 (aggregate constants).
3841 Generate at least SIZE bytes, padding if necessary. */
3844 output_constructor (exp
, size
)
3848 register tree link
, field
= 0;
3849 HOST_WIDE_INT min_index
= 0;
3850 /* Number of bytes output or skipped so far.
3851 In other words, current position within the constructor. */
3852 int total_bytes
= 0;
3853 /* Non-zero means BYTE contains part of a byte, to be output. */
3854 int byte_buffer_in_use
= 0;
3857 if (HOST_BITS_PER_WIDE_INT
< BITS_PER_UNIT
)
3860 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
)
3861 field
= TYPE_FIELDS (TREE_TYPE (exp
));
3863 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
3864 && TYPE_DOMAIN (TREE_TYPE (exp
)) != 0)
3866 = TREE_INT_CST_LOW (TYPE_MIN_VALUE (TYPE_DOMAIN (TREE_TYPE (exp
))));
3868 /* As LINK goes through the elements of the constant,
3869 FIELD goes through the structure fields, if the constant is a structure.
3870 if the constant is a union, then we override this,
3871 by getting the field from the TREE_LIST element.
3872 But the constant could also be an array. Then FIELD is zero. */
3873 for (link
= CONSTRUCTOR_ELTS (exp
);
3875 link
= TREE_CHAIN (link
),
3876 field
= field
? TREE_CHAIN (field
) : 0)
3878 tree val
= TREE_VALUE (link
);
3881 /* the element in a union constructor specifies the proper field. */
3883 if (TREE_CODE (TREE_TYPE (exp
)) == RECORD_TYPE
3884 || TREE_CODE (TREE_TYPE (exp
)) == UNION_TYPE
)
3886 /* if available, use the type given by link */
3887 if (TREE_PURPOSE (link
) != 0)
3888 field
= TREE_PURPOSE (link
);
3891 if (TREE_CODE (TREE_TYPE (exp
)) == ARRAY_TYPE
)
3892 index
= TREE_PURPOSE (link
);
3894 /* Eliminate the marker that makes a cast not be an lvalue. */
3898 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
3900 register int fieldsize
3901 = int_size_in_bytes (TREE_TYPE (TREE_TYPE (exp
)));
3902 HOST_WIDE_INT lo_index
= TREE_INT_CST_LOW (TREE_OPERAND (index
, 0));
3903 HOST_WIDE_INT hi_index
= TREE_INT_CST_LOW (TREE_OPERAND (index
, 1));
3904 HOST_WIDE_INT index
;
3905 for (index
= lo_index
; index
<= hi_index
; index
++)
3907 /* Output the element's initial value. */
3909 assemble_zeros (fieldsize
);
3911 output_constant (val
, fieldsize
);
3913 /* Count its size. */
3914 total_bytes
+= fieldsize
;
3917 else if (field
== 0 || !DECL_BIT_FIELD (field
))
3919 /* An element that is not a bit-field. */
3921 register int fieldsize
;
3922 /* Since this structure is static,
3923 we know the positions are constant. */
3924 int bitpos
= (field
? (TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field
))
3928 bitpos
= (TREE_INT_CST_LOW (TYPE_SIZE (TREE_TYPE (val
)))
3930 * (TREE_INT_CST_LOW (index
) - min_index
));
3932 /* Output any buffered-up bit-fields preceding this element. */
3933 if (byte_buffer_in_use
)
3935 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
3937 byte_buffer_in_use
= 0;
3940 /* Advance to offset of this element.
3941 Note no alignment needed in an array, since that is guaranteed
3942 if each element has the proper size. */
3943 if ((field
!= 0 || index
!= 0) && bitpos
!= total_bytes
)
3945 if (!output_bytecode
)
3946 assemble_zeros (bitpos
- total_bytes
);
3948 bc_emit_const_skip (bitpos
- total_bytes
);
3949 total_bytes
= bitpos
;
3952 /* Determine size this element should occupy. */
3955 if (TREE_CODE (DECL_SIZE (field
)) != INTEGER_CST
)
3957 if (TREE_INT_CST_LOW (DECL_SIZE (field
)) > 100000)
3959 /* This avoids overflow trouble. */
3960 tree size_tree
= size_binop (CEIL_DIV_EXPR
,
3962 size_int (BITS_PER_UNIT
));
3963 fieldsize
= TREE_INT_CST_LOW (size_tree
);
3967 fieldsize
= TREE_INT_CST_LOW (DECL_SIZE (field
));
3968 fieldsize
= (fieldsize
+ BITS_PER_UNIT
- 1) / BITS_PER_UNIT
;
3972 fieldsize
= int_size_in_bytes (TREE_TYPE (TREE_TYPE (exp
)));
3974 /* Output the element's initial value. */
3976 assemble_zeros (fieldsize
);
3978 output_constant (val
, fieldsize
);
3980 /* Count its size. */
3981 total_bytes
+= fieldsize
;
3983 else if (val
!= 0 && TREE_CODE (val
) != INTEGER_CST
)
3984 error ("invalid initial value for member `%s'",
3985 IDENTIFIER_POINTER (DECL_NAME (field
)));
3988 /* Element that is a bit-field. */
3990 int next_offset
= TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field
));
3992 = (next_offset
+ TREE_INT_CST_LOW (DECL_SIZE (field
)));
3995 val
= integer_zero_node
;
3997 /* If this field does not start in this (or, next) byte,
3999 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4001 /* Output remnant of any bit field in previous bytes. */
4002 if (byte_buffer_in_use
)
4004 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4006 byte_buffer_in_use
= 0;
4009 /* If still not at proper byte, advance to there. */
4010 if (next_offset
/ BITS_PER_UNIT
!= total_bytes
)
4012 assemble_zeros (next_offset
/ BITS_PER_UNIT
- total_bytes
);
4013 total_bytes
= next_offset
/ BITS_PER_UNIT
;
4017 if (! byte_buffer_in_use
)
4020 /* We must split the element into pieces that fall within
4021 separate bytes, and combine each byte with previous or
4022 following bit-fields. */
4024 /* next_offset is the offset n fbits from the beginning of
4025 the structure to the next bit of this element to be processed.
4026 end_offset is the offset of the first bit past the end of
4028 while (next_offset
< end_offset
)
4032 HOST_WIDE_INT value
;
4033 int next_byte
= next_offset
/ BITS_PER_UNIT
;
4034 int next_bit
= next_offset
% BITS_PER_UNIT
;
4036 /* Advance from byte to byte
4037 within this element when necessary. */
4038 while (next_byte
!= total_bytes
)
4040 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4045 /* Number of bits we can process at once
4046 (all part of the same byte). */
4047 this_time
= MIN (end_offset
- next_offset
,
4048 BITS_PER_UNIT
- next_bit
);
4049 if (BYTES_BIG_ENDIAN
)
4051 /* On big-endian machine, take the most significant bits
4052 first (of the bits that are significant)
4053 and put them into bytes from the most significant end. */
4054 shift
= end_offset
- next_offset
- this_time
;
4055 /* Don't try to take a bunch of bits that cross
4056 the word boundary in the INTEGER_CST. */
4057 if (shift
< HOST_BITS_PER_WIDE_INT
4058 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4060 this_time
-= (HOST_BITS_PER_WIDE_INT
- shift
);
4061 shift
= HOST_BITS_PER_WIDE_INT
;
4064 /* Now get the bits from the appropriate constant word. */
4065 if (shift
< HOST_BITS_PER_WIDE_INT
)
4067 value
= TREE_INT_CST_LOW (val
);
4069 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4071 value
= TREE_INT_CST_HIGH (val
);
4072 shift
-= HOST_BITS_PER_WIDE_INT
;
4076 byte
|= (((value
>> shift
)
4077 & (((HOST_WIDE_INT
) 1 << this_time
) - 1))
4078 << (BITS_PER_UNIT
- this_time
- next_bit
));
4082 /* On little-endian machines,
4083 take first the least significant bits of the value
4084 and pack them starting at the least significant
4085 bits of the bytes. */
4086 shift
= (next_offset
4087 - TREE_INT_CST_LOW (DECL_FIELD_BITPOS (field
)));
4088 /* Don't try to take a bunch of bits that cross
4089 the word boundary in the INTEGER_CST. */
4090 if (shift
< HOST_BITS_PER_WIDE_INT
4091 && shift
+ this_time
> HOST_BITS_PER_WIDE_INT
)
4093 this_time
-= (HOST_BITS_PER_WIDE_INT
- shift
);
4094 shift
= HOST_BITS_PER_WIDE_INT
;
4097 /* Now get the bits from the appropriate constant word. */
4098 if (shift
< HOST_BITS_PER_INT
)
4099 value
= TREE_INT_CST_LOW (val
);
4100 else if (shift
< 2 * HOST_BITS_PER_WIDE_INT
)
4102 value
= TREE_INT_CST_HIGH (val
);
4103 shift
-= HOST_BITS_PER_WIDE_INT
;
4107 byte
|= (((value
>> shift
)
4108 & (((HOST_WIDE_INT
) 1 << this_time
) - 1))
4111 next_offset
+= this_time
;
4112 byte_buffer_in_use
= 1;
4116 if (byte_buffer_in_use
)
4118 ASM_OUTPUT_BYTE (asm_out_file
, byte
);
4121 if (total_bytes
< size
)
4122 assemble_zeros (size
- total_bytes
);
4125 /* Output asm to handle ``#pragma weak'' */
4128 handle_pragma_weak (what
, name
, value
)
4129 enum pragma_state what
;
4132 #ifdef HANDLE_PRAGMA_WEAK
4133 if (what
== ps_name
|| what
== ps_value
)
4135 struct weak_syms
*weak
=
4136 (struct weak_syms
*)permalloc (sizeof (struct weak_syms
));
4137 weak
->next
= weak_decls
;
4138 weak
->name
= permalloc (strlen (name
) + 1);
4139 strcpy (weak
->name
, name
);
4141 if (what
!= ps_value
)
4142 weak
->value
= NULL_PTR
;
4146 weak
->value
= permalloc (strlen (value
) + 1);
4147 strcpy (weak
->value
, value
);
4152 else if (! (what
== ps_done
|| what
== ps_start
))
4153 warning ("malformed `#pragma weak'");
4154 #endif /* HANDLE_PRAGMA_WEAK */
4157 /* Declare DECL to be a weak symbol. */
4163 if (! TREE_PUBLIC (decl
))
4164 error_with_decl (decl
, "weak declaration of `%s' must be public");
4165 else if (TREE_ASM_WRITTEN (decl
))
4166 error_with_decl (decl
, "weak declaration of `%s' must precede definition");
4167 else if (SUPPORTS_WEAK
)
4168 DECL_WEAK (decl
) = 1;
4171 /* Emit any pending weak declarations. */
4176 #ifdef HANDLE_PRAGMA_WEAK
4177 if (HANDLE_PRAGMA_WEAK
)
4179 struct weak_syms
*t
;
4180 for (t
= weak_decls
; t
; t
= t
->next
)
4182 ASM_WEAKEN_LABEL (asm_out_file
, t
->name
);
4184 ASM_OUTPUT_DEF (asm_out_file
, t
->name
, t
->value
);
4191 assemble_alias (decl
, target
)
4194 #ifdef ASM_OUTPUT_DEF
4197 make_decl_rtl (decl
, (char *) 0, 1);
4198 name
= XSTR (XEXP (DECL_RTL (decl
), 0), 0);
4200 /* Make name accessible from other files, if appropriate. */
4202 if (TREE_PUBLIC (decl
))
4204 #ifdef ASM_WEAKEN_LABEL
4205 if (DECL_WEAK (decl
))
4206 ASM_WEAKEN_LABEL (asm_out_file
, name
);
4209 if (output_bytecode
)
4210 BC_GLOBALIZE_LABEL (asm_out_file
, name
);
4212 ASM_GLOBALIZE_LABEL (asm_out_file
, name
);
4215 ASM_OUTPUT_DEF (asm_out_file
, name
, IDENTIFIER_POINTER (target
));
4216 TREE_ASM_WRITTEN (decl
) = 1;
4218 warning ("alias definitions not supported in this configuration");