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