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