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