1 /* Solaris support needed only by C/C++ frontends.
2 Copyright (C) 2004-2018 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)
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/>. */
23 #include "coretypes.h"
25 #include "c-family/c-common.h"
26 #include "stringpool.h"
29 #include "c-family/c-format.h"
32 #include "c-family/c-pragma.h"
34 /* cmn_err only accepts "l" and "ll". */
35 static const format_length_info cmn_err_length_specs
[] =
37 { "l", FMT_LEN_l
, STD_C89
, "ll", FMT_LEN_ll
, STD_C89
, 0 },
38 { NULL
, FMT_LEN_none
, STD_C89
, NULL
, FMT_LEN_none
, STD_C89
, 0 }
41 static const format_flag_spec cmn_err_flag_specs
[] =
43 { 'w', 0, 0, 0, N_("field width"), N_("field width in printf format"), STD_C89
},
44 { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89
},
45 { 0, 0, 0, 0, NULL
, NULL
, STD_C89
}
49 static const format_flag_pair cmn_err_flag_pairs
[] =
54 static const format_char_info bitfield_string_type
=
55 { "b", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "", "cR", NULL
};
57 static const format_char_info cmn_err_char_table
[] =
59 /* C89 conversion specifiers. */
60 { "dD", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, T89_L
, T9L_LL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "", NULL
},
61 { "oOxX",0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "", NULL
},
62 { "u", 0, STD_C89
, { T89_UI
, BADLEN
, BADLEN
, T89_UL
, T9L_ULL
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "", NULL
},
63 { "c", 0, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "", NULL
},
64 { "p", 1, STD_C89
, { T89_V
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "c", NULL
},
65 { "s", 1, STD_C89
, { T89_C
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "cR", NULL
},
66 { "b", 0, STD_C89
, { T89_I
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
, BADLEN
}, "w", "", &bitfield_string_type
},
67 { NULL
, 0, STD_C89
, NOLENGTHS
, NULL
, NULL
, NULL
}
70 EXPORTED_CONST format_kind_info solaris_format_types
[] = {
71 { "cmn_err", cmn_err_length_specs
, cmn_err_char_table
, "", NULL
,
72 cmn_err_flag_specs
, cmn_err_flag_pairs
,
73 FMT_FLAG_ARG_CONVERT
|FMT_FLAG_EMPTY_PREC_OK
,
75 &integer_type_node
, &integer_type_node
79 /* Handle #pragma align ALIGNMENT (VAR [, VAR]...) */
82 solaris_pragma_align (cpp_reader
*pfile ATTRIBUTE_UNUSED
)
86 unsigned HOST_WIDE_INT low
;
88 if (pragma_lex (&x
) != CPP_NUMBER
89 || pragma_lex (&t
) != CPP_OPEN_PAREN
)
91 warning (0, "malformed %<#pragma align%>, ignoring");
95 low
= TREE_INT_CST_LOW (x
);
96 if (!tree_fits_uhwi_p (x
)
97 || (low
!= 1 && low
!= 2 && low
!= 4 && low
!= 8 && low
!= 16
98 && low
!= 32 && low
!= 64 && low
!= 128))
100 warning (0, "invalid alignment for %<#pragma align%>, ignoring");
104 ttype
= pragma_lex (&t
);
105 if (ttype
!= CPP_NAME
)
107 warning (0, "malformed %<#pragma align%>, ignoring");
113 tree decl
= identifier_global_value (t
);
114 if (decl
&& DECL_P (decl
))
115 warning (0, "%<#pragma align%> must appear before the declaration of "
116 "%qD, ignoring", decl
);
118 solaris_pending_aligns
= tree_cons (t
, build_tree_list (NULL
, x
),
119 solaris_pending_aligns
);
121 ttype
= pragma_lex (&t
);
122 if (ttype
== CPP_COMMA
)
124 ttype
= pragma_lex (&t
);
125 if (ttype
!= CPP_NAME
)
127 warning (0, "malformed %<#pragma align%>");
131 else if (ttype
== CPP_CLOSE_PAREN
)
133 if (pragma_lex (&t
) != CPP_EOF
)
134 warning (0, "junk at end of %<#pragma align%>");
139 warning (0, "malformed %<#pragma align%>");
145 /* Handle #pragma init (function [, function]...) */
148 solaris_pragma_init (cpp_reader
*pfile ATTRIBUTE_UNUSED
)
151 enum cpp_ttype ttype
;
153 if (pragma_lex (&t
) != CPP_OPEN_PAREN
)
155 warning (0, "malformed %<#pragma init%>, ignoring");
159 ttype
= pragma_lex (&t
);
160 if (ttype
!= CPP_NAME
)
162 warning (0, "malformed %<#pragma init%>, ignoring");
168 tree decl
= identifier_global_value (t
);
169 if (decl
&& DECL_P (decl
))
171 tree attrs
= build_tree_list (get_identifier ("init"),
173 TREE_USED (decl
) = 1;
174 DECL_PRESERVE_P (decl
) = 1;
175 decl_attributes (&decl
, attrs
, 0);
178 solaris_pending_inits
= tree_cons (t
, NULL
, solaris_pending_inits
);
180 ttype
= pragma_lex (&t
);
181 if (ttype
== CPP_COMMA
)
183 ttype
= pragma_lex (&t
);
184 if (ttype
!= CPP_NAME
)
186 warning (0, "malformed %<#pragma init%>");
190 else if (ttype
== CPP_CLOSE_PAREN
)
192 if (pragma_lex (&t
) != CPP_EOF
)
193 warning (0, "junk at end of %<#pragma init%>");
198 warning (0, "malformed %<#pragma init%>");
204 /* Handle #pragma fini (function [, function]...) */
207 solaris_pragma_fini (cpp_reader
*pfile ATTRIBUTE_UNUSED
)
210 enum cpp_ttype ttype
;
212 if (pragma_lex (&t
) != CPP_OPEN_PAREN
)
214 warning (0, "malformed %<#pragma fini%>, ignoring");
218 ttype
= pragma_lex (&t
);
219 if (ttype
!= CPP_NAME
)
221 warning (0, "malformed %<#pragma fini%>, ignoring");
227 tree decl
= identifier_global_value (t
);
228 if (decl
&& DECL_P (decl
))
230 tree attrs
= build_tree_list (get_identifier ("fini"),
232 TREE_USED (decl
) = 1;
233 DECL_PRESERVE_P (decl
) = 1;
234 decl_attributes (&decl
, attrs
, 0);
237 solaris_pending_finis
= tree_cons (t
, NULL
, solaris_pending_finis
);
239 ttype
= pragma_lex (&t
);
240 if (ttype
== CPP_COMMA
)
242 ttype
= pragma_lex (&t
);
243 if (ttype
!= CPP_NAME
)
245 warning (0, "malformed %<#pragma fini%>");
249 else if (ttype
== CPP_CLOSE_PAREN
)
251 if (pragma_lex (&t
) != CPP_EOF
)
252 warning (0, "junk at end of %<#pragma fini%>");
257 warning (0, "malformed %<#pragma fini%>");
263 /* Register Solaris-specific #pragma directives. */
266 solaris_register_pragmas (void)
268 c_register_pragma_with_expansion (0, "align", solaris_pragma_align
);
269 c_register_pragma (0, "init", solaris_pragma_init
);
270 c_register_pragma (0, "fini", solaris_pragma_fini
);