* pt.c (lookup_template_class_1): Splice out abi_tag attribute if
[official-gcc.git] / gcc / config / sol2.c
blobc7764b1993dd3242391375f37e2b260c67d940a1
1 /* General Solaris system support.
2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
3 Contributed by CodeSourcery, LLC.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "tree.h"
25 #include "stringpool.h"
26 #include "varasm.h"
27 #include "output.h"
28 #include "tm.h"
29 #include "rtl.h"
30 #include "target.h"
31 #include "tm_p.h"
32 #include "diagnostic-core.h"
33 #include "ggc.h"
34 #include "hash-table.h"
36 tree solaris_pending_aligns, solaris_pending_inits, solaris_pending_finis;
38 /* Attach any pending attributes for DECL to the list in *ATTRIBUTES.
39 Pending attributes come from #pragma or _Pragma, so this code is
40 only useful in the C family front ends, but it is included in
41 all languages to avoid changing the target machine initializer
42 depending on the language. */
44 void
45 solaris_insert_attributes (tree decl, tree *attributes)
47 tree *x, next;
49 if (solaris_pending_aligns != NULL && TREE_CODE (decl) == VAR_DECL)
50 for (x = &solaris_pending_aligns; *x; x = &TREE_CHAIN (*x))
52 tree name = TREE_PURPOSE (*x);
53 tree value = TREE_VALUE (*x);
54 if (DECL_NAME (decl) == name)
56 if (lookup_attribute ("aligned", DECL_ATTRIBUTES (decl))
57 || lookup_attribute ("aligned", *attributes))
58 warning (0, "ignoring %<#pragma align%> for explicitly "
59 "aligned %q+D", decl);
60 else
61 *attributes = tree_cons (get_identifier ("aligned"), value,
62 *attributes);
63 next = TREE_CHAIN (*x);
64 ggc_free (*x);
65 *x = next;
66 break;
70 if (solaris_pending_inits != NULL && TREE_CODE (decl) == FUNCTION_DECL)
71 for (x = &solaris_pending_inits; *x; x = &TREE_CHAIN (*x))
73 tree name = TREE_PURPOSE (*x);
74 if (DECL_NAME (decl) == name)
76 *attributes = tree_cons (get_identifier ("init"), NULL,
77 *attributes);
78 TREE_USED (decl) = 1;
79 DECL_PRESERVE_P (decl) = 1;
80 next = TREE_CHAIN (*x);
81 ggc_free (*x);
82 *x = next;
83 break;
87 if (solaris_pending_finis != NULL && TREE_CODE (decl) == FUNCTION_DECL)
88 for (x = &solaris_pending_finis; *x; x = &TREE_CHAIN (*x))
90 tree name = TREE_PURPOSE (*x);
91 if (DECL_NAME (decl) == name)
93 *attributes = tree_cons (get_identifier ("fini"), NULL,
94 *attributes);
95 TREE_USED (decl) = 1;
96 DECL_PRESERVE_P (decl) = 1;
97 next = TREE_CHAIN (*x);
98 ggc_free (*x);
99 *x = next;
100 break;
105 /* Output initializer or finalizer entries for DECL to FILE. */
107 void
108 solaris_output_init_fini (FILE *file, tree decl)
110 if (lookup_attribute ("init", DECL_ATTRIBUTES (decl)))
112 fprintf (file, "\t.pushsection\t" SECTION_NAME_FORMAT "\n", ".init");
113 ASM_OUTPUT_CALL (file, decl);
114 fprintf (file, "\t.popsection\n");
117 if (lookup_attribute ("fini", DECL_ATTRIBUTES (decl)))
119 fprintf (file, "\t.pushsection\t" SECTION_NAME_FORMAT "\n", ".fini");
120 ASM_OUTPUT_CALL (file, decl);
121 fprintf (file, "\t.popsection\n");
125 /* Emit an assembler directive to set symbol for DECL visibility to
126 the visibility type VIS, which must not be VISIBILITY_DEFAULT. */
128 void
129 solaris_assemble_visibility (tree decl, int vis ATTRIBUTE_UNUSED)
131 #ifdef HAVE_GAS_HIDDEN
132 /* Sun as uses .symbolic for STV_PROTECTED. STV_INTERNAL is marked as
133 `currently reserved', but the linker treats it like STV_HIDDEN. Sun
134 Studio 12.1 cc emits .hidden instead.
136 There are 3 Sun extensions GCC doesn't yet know about: STV_EXPORTED,
137 STV_SINGLETON, and STV_ELIMINATE.
139 See Linker and Libraries Guide, Ch. 2, Link-Editor, Defining
140 Additional Symbols, and Ch. 7, Object-File Format, Symbol Table
141 Section. */
143 static const char * const visibility_types[] = {
144 NULL, "symbolic", "hidden", "hidden"
147 const char *name, *type;
149 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
150 type = visibility_types[vis];
152 fprintf (asm_out_file, "\t.%s\t", type);
153 assemble_name (asm_out_file, name);
154 fprintf (asm_out_file, "\n");
155 #else
156 if (!DECL_ARTIFICIAL (decl))
157 warning (OPT_Wattributes, "visibility attribute not supported "
158 "in this configuration; ignored");
159 #endif
162 /* Group section information entry stored in solaris_comdat_htab. */
164 typedef struct comdat_entry
166 const char *name;
167 unsigned int flags;
168 tree decl;
169 const char *sig;
170 } comdat_entry;
172 /* Helpers for maintaining solaris_comdat_htab. */
174 struct comdat_entry_hasher : typed_noop_remove <comdat_entry>
176 typedef comdat_entry value_type;
177 typedef comdat_entry compare_type;
178 static inline hashval_t hash (const value_type *);
179 static inline bool equal (const value_type *, const compare_type *);
180 static inline void remove (value_type *);
183 inline hashval_t
184 comdat_entry_hasher::hash (const value_type *entry)
186 return htab_hash_string (entry->sig);
189 inline bool
190 comdat_entry_hasher::equal (const value_type *entry1,
191 const compare_type *entry2)
193 return strcmp (entry1->sig, entry2->sig) == 0;
196 /* Hash table of group signature symbols. */
198 static hash_table<comdat_entry_hasher> *solaris_comdat_htab;
200 /* Output assembly to switch to COMDAT group section NAME with attributes
201 FLAGS and group signature symbol DECL, using Sun as syntax. */
203 void
204 solaris_elf_asm_comdat_section (const char *name, unsigned int flags, tree decl)
206 const char *signature;
207 char *section;
208 comdat_entry entry, **slot;
210 if (TREE_CODE (decl) == IDENTIFIER_NODE)
211 signature = IDENTIFIER_POINTER (decl);
212 else
213 signature = IDENTIFIER_POINTER (DECL_COMDAT_GROUP (decl));
215 /* Sun as requires group sections to be fragmented, i.e. to have names of
216 the form <section>%<fragment>. Strictly speaking this is only
217 necessary to support cc -xF, but is enforced globally in violation of
218 the ELF gABI. We keep the section names generated by GCC (generally
219 of the form .text.<signature>) and append %<signature> to pacify as,
220 despite the redundancy. */
221 section = concat (name, "%", signature, NULL);
223 /* Clear SECTION_LINKONCE flag so targetm.asm_out.named_section only
224 emits this as a regular section. Emit section before .group
225 directive since Sun as treats undeclared sections as @progbits,
226 which conflicts with .bss* sections which are @nobits. */
227 targetm.asm_out.named_section (section, flags & ~SECTION_LINKONCE, decl);
229 /* Sun as separates declaration of a group section and of the group
230 itself, using the .group directive and the #comdat flag. */
231 fprintf (asm_out_file, "\t.group\t%s," SECTION_NAME_FORMAT ",#comdat\n",
232 signature, section);
234 /* Unlike GNU as, group signature symbols need to be defined explicitly
235 for Sun as. With a few exceptions, this is already the case. To
236 identify the missing ones without changing the affected frontents,
237 remember the signature symbols and emit those not marked
238 TREE_SYMBOL_REFERENCED in solaris_file_end. */
239 if (!solaris_comdat_htab)
240 solaris_comdat_htab = new hash_table<comdat_entry_hasher> (37);
242 entry.sig = signature;
243 slot = solaris_comdat_htab->find_slot (&entry, INSERT);
245 if (*slot == NULL)
247 *slot = XCNEW (comdat_entry);
248 /* Remember fragmented section name. */
249 (*slot)->name = section;
250 /* Emit as regular section, .group declaration has already been done. */
251 (*slot)->flags = flags & ~SECTION_LINKONCE;
252 (*slot)->decl = decl;
253 (*slot)->sig = signature;
257 /* Define unreferenced COMDAT group signature symbol corresponding to SLOT. */
260 solaris_define_comdat_signature (comdat_entry **slot,
261 void *aux ATTRIBUTE_UNUSED)
263 comdat_entry *entry = *slot;
264 tree decl = entry->decl;
266 if (TREE_CODE (decl) != IDENTIFIER_NODE)
267 decl = DECL_COMDAT_GROUP (decl);
269 if (!TREE_SYMBOL_REFERENCED (decl))
271 /* Switch to group section, otherwise Sun as complains
272 `Group Id symbol defined outside of group'. */
273 switch_to_section (get_section (entry->name, entry->flags, entry->decl));
275 ASM_OUTPUT_LABEL (asm_out_file, entry->sig);
278 /* Continue with scan. */
279 return 1;
282 /* Emit unreferenced COMDAT group signature symbols for Sun as. */
284 void
285 solaris_file_end (void)
287 if (!solaris_comdat_htab)
288 return;
290 solaris_comdat_htab->traverse <void *, solaris_define_comdat_signature>
291 (NULL);
294 void
295 solaris_override_options (void)
297 /* Older versions of Solaris ld cannot handle CIE version 3 in .eh_frame.
298 Don't emit DWARF3/4 unless specifically selected if so. */
299 if (!HAVE_LD_EH_FRAME_CIEV3 && !global_options_set.x_dwarf_version)
300 dwarf_version = 2;