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