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