Fix type in the changelog entry,
[official-gcc.git] / gcc / config / sol2-c.c
blobfe36eb913725d66fa7e97e6e6101c8a002f422f1
1 /* Solaris support needed only by C/C++ frontends.
2 Copyright (C) 2004-2015 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 "alias.h"
25 #include "tree.h"
26 #include "options.h"
27 #include "stringpool.h"
28 #include "attribs.h"
29 #include "tm.h"
30 #include "tm_p.h"
32 #include "c-family/c-format.h"
33 #include "intl.h"
35 #include "cpplib.h"
36 #include "c-family/c-pragma.h"
37 #include "c-family/c-common.h"
39 /* cmn_err only accepts "l" and "ll". */
40 static const format_length_info cmn_err_length_specs[] =
42 { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C89, 0 },
43 { NULL, FMT_LEN_none, STD_C89, NULL, FMT_LEN_none, STD_C89, 0 }
46 static const format_flag_spec cmn_err_flag_specs[] =
48 { 'w', 0, 0, N_("field width"), N_("field width in printf format"), STD_C89 },
49 { 'L', 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89 },
50 { 0, 0, 0, NULL, NULL, STD_C89 }
54 static const format_flag_pair cmn_err_flag_pairs[] =
56 { 0, 0, 0, 0 }
59 static const format_char_info bitfield_string_type =
60 { "b", 1, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "", "cR", NULL };
62 static const format_char_info cmn_err_char_table[] =
64 /* C89 conversion specifiers. */
65 { "dD", 0, STD_C89, { T89_I, BADLEN, BADLEN, T89_L, T9L_LL, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "", NULL },
66 { "oOxX",0, STD_C89, { T89_UI, BADLEN, BADLEN, T89_UL, T9L_ULL, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "", NULL },
67 { "u", 0, STD_C89, { T89_UI, BADLEN, BADLEN, T89_UL, T9L_ULL, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "", NULL },
68 { "c", 0, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "", NULL },
69 { "p", 1, STD_C89, { T89_V, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "c", NULL },
70 { "s", 1, STD_C89, { T89_C, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "cR", NULL },
71 { "b", 0, STD_C89, { T89_I, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN, BADLEN }, "w", "", &bitfield_string_type },
72 { NULL, 0, STD_C89, NOLENGTHS, NULL, NULL, NULL }
75 EXPORTED_CONST format_kind_info solaris_format_types[] = {
76 { "cmn_err", cmn_err_length_specs, cmn_err_char_table, "", NULL,
77 cmn_err_flag_specs, cmn_err_flag_pairs,
78 FMT_FLAG_ARG_CONVERT|FMT_FLAG_EMPTY_PREC_OK,
79 'w', 0, 0, 0, 'L', 0,
80 &integer_type_node, &integer_type_node
84 /* Handle #pragma align ALIGNMENT (VAR [, VAR]...) */
86 static void
87 solaris_pragma_align (cpp_reader *pfile ATTRIBUTE_UNUSED)
89 tree t, x;
90 enum cpp_ttype ttype;
91 unsigned HOST_WIDE_INT low;
93 if (pragma_lex (&x) != CPP_NUMBER
94 || pragma_lex (&t) != CPP_OPEN_PAREN)
96 warning (0, "malformed %<#pragma align%>, ignoring");
97 return;
100 low = TREE_INT_CST_LOW (x);
101 if (!tree_fits_uhwi_p (x)
102 || (low != 1 && low != 2 && low != 4 && low != 8 && low != 16
103 && low != 32 && low != 64 && low != 128))
105 warning (0, "invalid alignment for %<#pragma align%>, ignoring");
106 return;
109 ttype = pragma_lex (&t);
110 if (ttype != CPP_NAME)
112 warning (0, "malformed %<#pragma align%>, ignoring");
113 return;
116 while (1)
118 tree decl = identifier_global_value (t);
119 if (decl && DECL_P (decl))
120 warning (0, "%<#pragma align%> must appear before the declaration of "
121 "%D, ignoring", decl);
122 else
123 solaris_pending_aligns = tree_cons (t, build_tree_list (NULL, x),
124 solaris_pending_aligns);
126 ttype = pragma_lex (&t);
127 if (ttype == CPP_COMMA)
129 ttype = pragma_lex (&t);
130 if (ttype != CPP_NAME)
132 warning (0, "malformed %<#pragma align%>");
133 return;
136 else if (ttype == CPP_CLOSE_PAREN)
138 if (pragma_lex (&t) != CPP_EOF)
139 warning (0, "junk at end of %<#pragma align%>");
140 return;
142 else
144 warning (0, "malformed %<#pragma align%>");
145 return;
150 /* Handle #pragma init (function [, function]...) */
152 static void
153 solaris_pragma_init (cpp_reader *pfile ATTRIBUTE_UNUSED)
155 tree t;
156 enum cpp_ttype ttype;
158 if (pragma_lex (&t) != CPP_OPEN_PAREN)
160 warning (0, "malformed %<#pragma init%>, ignoring");
161 return;
164 ttype = pragma_lex (&t);
165 if (ttype != CPP_NAME)
167 warning (0, "malformed %<#pragma init%>, ignoring");
168 return;
171 while (1)
173 tree decl = identifier_global_value (t);
174 if (decl && DECL_P (decl))
176 tree attrs = build_tree_list (get_identifier ("init"),
177 NULL);
178 TREE_USED (decl) = 1;
179 DECL_PRESERVE_P (decl) = 1;
180 decl_attributes (&decl, attrs, 0);
182 else
183 solaris_pending_inits = tree_cons (t, NULL, solaris_pending_inits);
185 ttype = pragma_lex (&t);
186 if (ttype == CPP_COMMA)
188 ttype = pragma_lex (&t);
189 if (ttype != CPP_NAME)
191 warning (0, "malformed %<#pragma init%>");
192 return;
195 else if (ttype == CPP_CLOSE_PAREN)
197 if (pragma_lex (&t) != CPP_EOF)
198 warning (0, "junk at end of %<#pragma init%>");
199 return;
201 else
203 warning (0, "malformed %<#pragma init%>");
204 return;
209 /* Handle #pragma fini (function [, function]...) */
211 static void
212 solaris_pragma_fini (cpp_reader *pfile ATTRIBUTE_UNUSED)
214 tree t;
215 enum cpp_ttype ttype;
217 if (pragma_lex (&t) != CPP_OPEN_PAREN)
219 warning (0, "malformed %<#pragma fini%>, ignoring");
220 return;
223 ttype = pragma_lex (&t);
224 if (ttype != CPP_NAME)
226 warning (0, "malformed %<#pragma fini%>, ignoring");
227 return;
230 while (1)
232 tree decl = identifier_global_value (t);
233 if (decl && DECL_P (decl))
235 tree attrs = build_tree_list (get_identifier ("fini"),
236 NULL);
237 TREE_USED (decl) = 1;
238 DECL_PRESERVE_P (decl) = 1;
239 decl_attributes (&decl, attrs, 0);
241 else
242 solaris_pending_finis = tree_cons (t, NULL, solaris_pending_finis);
244 ttype = pragma_lex (&t);
245 if (ttype == CPP_COMMA)
247 ttype = pragma_lex (&t);
248 if (ttype != CPP_NAME)
250 warning (0, "malformed %<#pragma fini%>");
251 return;
254 else if (ttype == CPP_CLOSE_PAREN)
256 if (pragma_lex (&t) != CPP_EOF)
257 warning (0, "junk at end of %<#pragma fini%>");
258 return;
260 else
262 warning (0, "malformed %<#pragma fini%>");
263 return;
268 /* Register Solaris-specific #pragma directives. */
270 void
271 solaris_register_pragmas (void)
273 c_register_pragma_with_expansion (0, "align", solaris_pragma_align);
274 c_register_pragma (0, "init", solaris_pragma_init);
275 c_register_pragma (0, "fini", solaris_pragma_fini);