]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/attribs.c
Fix my changelog entry for PR target/83758
[thirdparty/gcc.git] / gcc / attribs.c
CommitLineData
bb9f8221 1/* Functions dealing with attribute handling, used by most front ends.
85ec4feb 2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
bb9f8221
RK
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
9dcd6f09 8Software Foundation; either version 3, or (at your option) any later
bb9f8221
RK
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
9dcd6f09
NC
17along with GCC; see the file COPYING3. If not see
18<http://www.gnu.org/licenses/>. */
bb9f8221
RK
19
20#include "config.h"
21#include "system.h"
4977bab6 22#include "coretypes.h"
957060b5 23#include "target.h"
bb9f8221 24#include "tree.h"
d8a2d370 25#include "stringpool.h"
957060b5 26#include "diagnostic-core.h"
d8a2d370
DN
27#include "attribs.h"
28#include "stor-layout.h"
7ffb4fd2 29#include "langhooks.h"
d1c8e08a 30#include "plugin.h"
5d9ae53d
MS
31#include "selftest.h"
32#include "hash-set.h"
bb9f8221 33
349ae713 34/* Table of the tables of attributes (common, language, format, machine)
bb9f8221
RK
35 searched. */
36static const struct attribute_spec *attribute_tables[4];
37
23b43207
JH
38/* Substring representation. */
39
40struct substring
41{
42 const char *str;
43 int length;
44};
45
4a8fb1a1
LC
46/* Simple hash function to avoid need to scan whole string. */
47
48static inline hashval_t
49substring_hash (const char *str, int l)
50{
51 return str[0] + str[l - 1] * 256 + l * 65536;
52}
53
54/* Used for attribute_hash. */
55
8d67ee55 56struct attribute_hasher : nofree_ptr_hash <attribute_spec>
4a8fb1a1 57{
67f58944
TS
58 typedef substring *compare_type;
59 static inline hashval_t hash (const attribute_spec *);
60 static inline bool equal (const attribute_spec *, const substring *);
4a8fb1a1
LC
61};
62
63inline hashval_t
67f58944 64attribute_hasher::hash (const attribute_spec *spec)
4a8fb1a1
LC
65{
66 const int l = strlen (spec->name);
67 return substring_hash (spec->name, l);
68}
69
70inline bool
67f58944 71attribute_hasher::equal (const attribute_spec *spec, const substring *str)
4a8fb1a1
LC
72{
73 return (strncmp (spec->name, str->str, str->length) == 0
74 && !spec->name[str->length]);
75}
76
e28d52cf
DS
77/* Scoped attribute name representation. */
78
79struct scoped_attributes
80{
81 const char *ns;
9771b263 82 vec<attribute_spec> attributes;
c203e8a7 83 hash_table<attribute_hasher> *attribute_hash;
e28d52cf
DS
84};
85
e28d52cf 86/* The table of scope attributes. */
9771b263 87static vec<scoped_attributes> attributes_table;
e28d52cf
DS
88
89static scoped_attributes* find_attribute_namespace (const char*);
90static void register_scoped_attribute (const struct attribute_spec *,
91 scoped_attributes *);
92
bb9f8221
RK
93static bool attributes_initialized = false;
94
bb9f8221 95/* Default empty table of attributes. */
23b43207 96
bb9f8221
RK
97static const struct attribute_spec empty_attribute_table[] =
98{
4849deb1 99 { NULL, 0, 0, false, false, false, false, NULL, NULL }
bb9f8221
RK
100};
101
23b43207
JH
102/* Return base name of the attribute. Ie '__attr__' is turned into 'attr'.
103 To avoid need for copying, we simply return length of the string. */
104
105static void
106extract_attribute_substring (struct substring *str)
107{
108 if (str->length > 4 && str->str[0] == '_' && str->str[1] == '_'
109 && str->str[str->length - 1] == '_' && str->str[str->length - 2] == '_')
110 {
111 str->length -= 4;
112 str->str += 2;
113 }
114}
115
e28d52cf
DS
116/* Insert an array of attributes ATTRIBUTES into a namespace. This
117 array must be NULL terminated. NS is the name of attribute
118 namespace. The function returns the namespace into which the
119 attributes have been registered. */
120
4849deb1
JJ
121scoped_attributes *
122register_scoped_attributes (const struct attribute_spec *attributes,
123 const char *ns)
e28d52cf
DS
124{
125 scoped_attributes *result = NULL;
126
127 /* See if we already have attributes in the namespace NS. */
128 result = find_attribute_namespace (ns);
129
130 if (result == NULL)
131 {
132 /* We don't have any namespace NS yet. Create one. */
133 scoped_attributes sa;
134
d067e05f 135 if (attributes_table.is_empty ())
9771b263 136 attributes_table.create (64);
e28d52cf
DS
137
138 memset (&sa, 0, sizeof (sa));
139 sa.ns = ns;
9771b263
DN
140 sa.attributes.create (64);
141 result = attributes_table.safe_push (sa);
c203e8a7 142 result->attribute_hash = new hash_table<attribute_hasher> (200);
e28d52cf
DS
143 }
144
145 /* Really add the attributes to their namespace now. */
146 for (unsigned i = 0; attributes[i].name != NULL; ++i)
147 {
9771b263 148 result->attributes.safe_push (attributes[i]);
e28d52cf
DS
149 register_scoped_attribute (&attributes[i], result);
150 }
151
152 gcc_assert (result != NULL);
153
154 return result;
155}
156
157/* Return the namespace which name is NS, NULL if none exist. */
158
159static scoped_attributes*
160find_attribute_namespace (const char* ns)
161{
162 unsigned ix;
163 scoped_attributes *iter;
164
9771b263 165 FOR_EACH_VEC_ELT (attributes_table, ix, iter)
e28d52cf
DS
166 if (ns == iter->ns
167 || (iter->ns != NULL
168 && ns != NULL
169 && !strcmp (iter->ns, ns)))
170 return iter;
171 return NULL;
172}
173
b2b29377
MM
174/* Make some sanity checks on the attribute tables. */
175
176static void
177check_attribute_tables (void)
178{
179 for (size_t i = 0; i < ARRAY_SIZE (attribute_tables); i++)
180 for (size_t j = 0; attribute_tables[i][j].name != NULL; j++)
181 {
182 /* The name must not begin and end with __. */
183 const char *name = attribute_tables[i][j].name;
184 int len = strlen (name);
185
186 gcc_assert (!(name[0] == '_' && name[1] == '_'
187 && name[len - 1] == '_' && name[len - 2] == '_'));
188
189 /* The minimum and maximum lengths must be consistent. */
190 gcc_assert (attribute_tables[i][j].min_length >= 0);
191
192 gcc_assert (attribute_tables[i][j].max_length == -1
193 || (attribute_tables[i][j].max_length
194 >= attribute_tables[i][j].min_length));
195
196 /* An attribute cannot require both a DECL and a TYPE. */
197 gcc_assert (!attribute_tables[i][j].decl_required
198 || !attribute_tables[i][j].type_required);
199
200 /* If an attribute requires a function type, in particular
201 it requires a type. */
202 gcc_assert (!attribute_tables[i][j].function_type_required
203 || attribute_tables[i][j].type_required);
204 }
205
206 /* Check that each name occurs just once in each table. */
207 for (size_t i = 0; i < ARRAY_SIZE (attribute_tables); i++)
208 for (size_t j = 0; attribute_tables[i][j].name != NULL; j++)
209 for (size_t k = j + 1; attribute_tables[i][k].name != NULL; k++)
210 gcc_assert (strcmp (attribute_tables[i][j].name,
211 attribute_tables[i][k].name));
212
213 /* Check that no name occurs in more than one table. Names that
214 begin with '*' are exempt, and may be overridden. */
215 for (size_t i = 0; i < ARRAY_SIZE (attribute_tables); i++)
216 for (size_t j = i + 1; j < ARRAY_SIZE (attribute_tables); j++)
217 for (size_t k = 0; attribute_tables[i][k].name != NULL; k++)
218 for (size_t l = 0; attribute_tables[j][l].name != NULL; l++)
219 gcc_assert (attribute_tables[i][k].name[0] == '*'
220 || strcmp (attribute_tables[i][k].name,
221 attribute_tables[j][l].name));
222}
223
224/* Initialize attribute tables, and make some sanity checks if checking is
225 enabled. */
bb9f8221 226
8dd00781 227void
4682ae04 228init_attributes (void)
bb9f8221 229{
ca7558fc 230 size_t i;
bb9f8221 231
8dd00781
JJ
232 if (attributes_initialized)
233 return;
234
349ae713
NB
235 attribute_tables[0] = lang_hooks.common_attribute_table;
236 attribute_tables[1] = lang_hooks.attribute_table;
237 attribute_tables[2] = lang_hooks.format_attribute_table;
bb9f8221
RK
238 attribute_tables[3] = targetm.attribute_table;
239
349ae713
NB
240 /* Translate NULL pointers to pointers to the empty table. */
241 for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
242 if (attribute_tables[i] == NULL)
243 attribute_tables[i] = empty_attribute_table;
244
b2b29377
MM
245 if (flag_checking)
246 check_attribute_tables ();
bb9f8221 247
e28d52cf
DS
248 for (i = 0; i < ARRAY_SIZE (attribute_tables); ++i)
249 /* Put all the GNU attributes into the "gnu" namespace. */
250 register_scoped_attributes (attribute_tables[i], "gnu");
251
d1c8e08a
TG
252 invoke_plugin_callbacks (PLUGIN_ATTRIBUTES, NULL);
253 attributes_initialized = true;
254}
255
256/* Insert a single ATTR into the attribute table. */
257
258void
b8698a0f 259register_attribute (const struct attribute_spec *attr)
e28d52cf
DS
260{
261 register_scoped_attribute (attr, find_attribute_namespace ("gnu"));
262}
263
264/* Insert a single attribute ATTR into a namespace of attributes. */
265
266static void
267register_scoped_attribute (const struct attribute_spec *attr,
268 scoped_attributes *name_space)
d1c8e08a 269{
16f7ad42 270 struct substring str;
4a8fb1a1 271 attribute_spec **slot;
16f7ad42 272
e28d52cf
DS
273 gcc_assert (attr != NULL && name_space != NULL);
274
c203e8a7 275 gcc_assert (name_space->attribute_hash);
e28d52cf 276
16f7ad42
TG
277 str.str = attr->name;
278 str.length = strlen (str.str);
70e41a6a
NP
279
280 /* Attribute names in the table must be in the form 'text' and not
281 in the form '__text__'. */
282 gcc_assert (str.length > 0 && str.str[0] != '_');
283
4a8fb1a1 284 slot = name_space->attribute_hash
c203e8a7
TS
285 ->find_slot_with_hash (&str, substring_hash (str.str, str.length),
286 INSERT);
0a35513e 287 gcc_assert (!*slot || attr->name[0] == '*');
4a8fb1a1 288 *slot = CONST_CAST (struct attribute_spec *, attr);
bb9f8221 289}
a7f6bc8c 290
e28d52cf
DS
291/* Return the spec for the scoped attribute with namespace NS and
292 name NAME. */
a7f6bc8c 293
862d0b35 294static const struct attribute_spec *
e28d52cf 295lookup_scoped_attribute_spec (const_tree ns, const_tree name)
a7f6bc8c
JM
296{
297 struct substring attr;
e28d52cf
DS
298 scoped_attributes *attrs;
299
300 const char *ns_str = (ns != NULL_TREE) ? IDENTIFIER_POINTER (ns): NULL;
301
302 attrs = find_attribute_namespace (ns_str);
303
304 if (attrs == NULL)
305 return NULL;
a7f6bc8c
JM
306
307 attr.str = IDENTIFIER_POINTER (name);
308 attr.length = IDENTIFIER_LENGTH (name);
309 extract_attribute_substring (&attr);
c203e8a7
TS
310 return attrs->attribute_hash->find_with_hash (&attr,
311 substring_hash (attr.str,
312 attr.length));
a7f6bc8c 313}
e28d52cf 314
7dbb85a7
JM
315/* Return the spec for the attribute named NAME. If NAME is a TREE_LIST,
316 it also specifies the attribute namespace. */
e28d52cf
DS
317
318const struct attribute_spec *
319lookup_attribute_spec (const_tree name)
320{
7dbb85a7
JM
321 tree ns;
322 if (TREE_CODE (name) == TREE_LIST)
323 {
324 ns = TREE_PURPOSE (name);
325 name = TREE_VALUE (name);
326 }
327 else
328 ns = get_identifier ("gnu");
329 return lookup_scoped_attribute_spec (ns, name);
e28d52cf
DS
330}
331
862d0b35
DN
332
333/* Return the namespace of the attribute ATTR. This accessor works on
334 GNU and C++11 (scoped) attributes. On GNU attributes,
335 it returns an identifier tree for the string "gnu".
336
337 Please read the comments of cxx11_attribute_p to understand the
338 format of attributes. */
339
340static tree
341get_attribute_namespace (const_tree attr)
342{
343 if (cxx11_attribute_p (attr))
344 return TREE_PURPOSE (TREE_PURPOSE (attr));
345 return get_identifier ("gnu");
346}
347
5d9ae53d
MS
348/* Check LAST_DECL and NODE of the same symbol for attributes that are
349 recorded in SPEC to be mutually exclusive with ATTRNAME, diagnose
350 them, and return true if any have been found. NODE can be a DECL
351 or a TYPE. */
352
353static bool
354diag_attr_exclusions (tree last_decl, tree node, tree attrname,
355 const attribute_spec *spec)
356{
357 const attribute_spec::exclusions *excl = spec->exclude;
358
359 tree_code code = TREE_CODE (node);
360
361 if ((code == FUNCTION_DECL && !excl->function
362 && (!excl->type || !spec->affects_type_identity))
363 || (code == VAR_DECL && !excl->variable
364 && (!excl->type || !spec->affects_type_identity))
365 || (((code == TYPE_DECL || RECORD_OR_UNION_TYPE_P (node)) && !excl->type)))
366 return false;
367
368 /* True if an attribute that's mutually exclusive with ATTRNAME
369 has been found. */
370 bool found = false;
371
372 if (last_decl && last_decl != node && TREE_TYPE (last_decl) != node)
373 {
374 /* Check both the last DECL and its type for conflicts with
375 the attribute being added to the current decl or type. */
376 found |= diag_attr_exclusions (last_decl, last_decl, attrname, spec);
377 tree decl_type = TREE_TYPE (last_decl);
378 found |= diag_attr_exclusions (last_decl, decl_type, attrname, spec);
379 }
380
381 /* NODE is either the current DECL to which the attribute is being
382 applied or its TYPE. For the former, consider the attributes on
383 both the DECL and its type. */
384 tree attrs[2];
385
386 if (DECL_P (node))
387 {
388 attrs[0] = DECL_ATTRIBUTES (node);
389 attrs[1] = TYPE_ATTRIBUTES (TREE_TYPE (node));
390 }
391 else
392 {
393 attrs[0] = TYPE_ATTRIBUTES (node);
394 attrs[1] = NULL_TREE;
395 }
396
397 /* Iterate over the mutually exclusive attribute names and verify
398 that the symbol doesn't contain it. */
399 for (unsigned i = 0; i != sizeof attrs / sizeof *attrs; ++i)
400 {
401 if (!attrs[i])
402 continue;
403
404 for ( ; excl->name; ++excl)
405 {
406 /* Avoid checking the attribute against itself. */
407 if (is_attribute_p (excl->name, attrname))
408 continue;
409
410 if (!lookup_attribute (excl->name, attrs[i]))
411 continue;
412
fba303ed
MS
413 /* An exclusion may apply either to a function declaration,
414 type declaration, or a field/variable declaration, or
415 any subset of the three. */
416 if (TREE_CODE (node) == FUNCTION_DECL
417 && !excl->function)
418 continue;
419
420 if (TREE_CODE (node) == TYPE_DECL
421 && !excl->type)
422 continue;
423
424 if ((TREE_CODE (node) == FIELD_DECL
425 || TREE_CODE (node) == VAR_DECL)
426 && !excl->variable)
427 continue;
428
5d9ae53d
MS
429 found = true;
430
431 /* Print a note? */
432 bool note = last_decl != NULL_TREE;
433
434 if (TREE_CODE (node) == FUNCTION_DECL
435 && DECL_BUILT_IN (node))
436 note &= warning (OPT_Wattributes,
437 "ignoring attribute %qE in declaration of "
438 "a built-in function %qD because it conflicts "
439 "with attribute %qs",
440 attrname, node, excl->name);
441 else
442 note &= warning (OPT_Wattributes,
443 "ignoring attribute %qE because "
444 "it conflicts with attribute %qs",
445 attrname, excl->name);
446
447 if (note)
448 inform (DECL_SOURCE_LOCATION (last_decl),
449 "previous declaration here");
450 }
451 }
452
453 return found;
454}
862d0b35 455
bb9f8221
RK
456/* Process the attributes listed in ATTRIBUTES and install them in *NODE,
457 which is either a DECL (including a TYPE_DECL) or a TYPE. If a DECL,
458 it should be modified in place; if a TYPE, a copy should be created
459 unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS. FLAGS gives further
460 information, in the form of a bitwise OR of flags in enum attribute_flags
461 from tree.h. Depending on these flags, some attributes may be
462 returned to be applied at a later stage (for example, to apply
03aa99d4 463 a decl attribute to the declaration rather than to its type). */
bb9f8221
RK
464
465tree
5d9ae53d
MS
466decl_attributes (tree *node, tree attributes, int flags,
467 tree last_decl /* = NULL_TREE */)
bb9f8221
RK
468{
469 tree a;
470 tree returned_attrs = NULL_TREE;
471
e28d52cf 472 if (TREE_TYPE (*node) == error_mark_node || attributes == error_mark_node)
21516d64
VR
473 return NULL_TREE;
474
bb9f8221
RK
475 if (!attributes_initialized)
476 init_attributes ();
477
ab442df7
MM
478 /* If this is a function and the user used #pragma GCC optimize, add the
479 options to the attribute((optimize(...))) list. */
480 if (TREE_CODE (*node) == FUNCTION_DECL && current_optimize_pragma)
481 {
482 tree cur_attr = lookup_attribute ("optimize", attributes);
483 tree opts = copy_list (current_optimize_pragma);
484
485 if (! cur_attr)
486 attributes
487 = tree_cons (get_identifier ("optimize"), opts, attributes);
488 else
489 TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
490 }
491
492 if (TREE_CODE (*node) == FUNCTION_DECL
493 && optimization_current_node != optimization_default_node
494 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node))
495 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node) = optimization_current_node;
496
5779e713
MM
497 /* If this is a function and the user used #pragma GCC target, add the
498 options to the attribute((target(...))) list. */
ab442df7 499 if (TREE_CODE (*node) == FUNCTION_DECL
5779e713 500 && current_target_pragma
ab442df7 501 && targetm.target_option.valid_attribute_p (*node, NULL_TREE,
5779e713 502 current_target_pragma, 0))
ab442df7 503 {
5779e713
MM
504 tree cur_attr = lookup_attribute ("target", attributes);
505 tree opts = copy_list (current_target_pragma);
ab442df7
MM
506
507 if (! cur_attr)
5779e713 508 attributes = tree_cons (get_identifier ("target"), opts, attributes);
ab442df7
MM
509 else
510 TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
511 }
512
61044492
JZ
513 /* A "naked" function attribute implies "noinline" and "noclone" for
514 those targets that support it. */
515 if (TREE_CODE (*node) == FUNCTION_DECL
70e41a6a 516 && attributes
036ea399
JJ
517 && lookup_attribute ("naked", attributes) != NULL
518 && lookup_attribute_spec (get_identifier ("naked")))
61044492
JZ
519 {
520 if (lookup_attribute ("noinline", attributes) == NULL)
521 attributes = tree_cons (get_identifier ("noinline"), NULL, attributes);
522
523 if (lookup_attribute ("noclone", attributes) == NULL)
524 attributes = tree_cons (get_identifier ("noclone"), NULL, attributes);
525 }
526
036ea399
JJ
527 /* A "noipa" function attribute implies "noinline", "noclone" and "no_icf"
528 for those targets that support it. */
529 if (TREE_CODE (*node) == FUNCTION_DECL
530 && attributes
531 && lookup_attribute ("noipa", attributes) != NULL
532 && lookup_attribute_spec (get_identifier ("noipa")))
533 {
534 if (lookup_attribute ("noinline", attributes) == NULL)
535 attributes = tree_cons (get_identifier ("noinline"), NULL, attributes);
536
537 if (lookup_attribute ("noclone", attributes) == NULL)
538 attributes = tree_cons (get_identifier ("noclone"), NULL, attributes);
539
540 if (lookup_attribute ("no_icf", attributes) == NULL)
541 attributes = tree_cons (get_identifier ("no_icf"), NULL, attributes);
542 }
543
5fd9b178 544 targetm.insert_attributes (*node, &attributes);
bb9f8221 545
5d9ae53d
MS
546 /* Note that attributes on the same declaration are not necessarily
547 in the same order as in the source. */
bb9f8221
RK
548 for (a = attributes; a; a = TREE_CHAIN (a))
549 {
e28d52cf
DS
550 tree ns = get_attribute_namespace (a);
551 tree name = get_attribute_name (a);
bb9f8221
RK
552 tree args = TREE_VALUE (a);
553 tree *anode = node;
4849deb1
JJ
554 const struct attribute_spec *spec
555 = lookup_scoped_attribute_spec (ns, name);
f9ceed32 556 int fn_ptr_quals = 0;
3acef2ae 557 tree fn_ptr_tmp = NULL_TREE;
bb9f8221
RK
558
559 if (spec == NULL)
560 {
e384e6b5 561 if (!(flags & (int) ATTR_FLAG_BUILT_IN))
e28d52cf
DS
562 {
563 if (ns == NULL_TREE || !cxx11_attribute_p (a))
564 warning (OPT_Wattributes, "%qE attribute directive ignored",
565 name);
566 else
567 warning (OPT_Wattributes,
568 "%<%E::%E%> scoped attribute directive ignored",
569 ns, name);
570 }
bb9f8221
RK
571 continue;
572 }
573 else if (list_length (args) < spec->min_length
574 || (spec->max_length >= 0
575 && list_length (args) > spec->max_length))
576 {
4f1e4960
JM
577 error ("wrong number of arguments specified for %qE attribute",
578 name);
bb9f8221
RK
579 continue;
580 }
23b43207 581 gcc_assert (is_attribute_p (spec->name, name));
bb9f8221 582
e28d52cf
DS
583 if (TYPE_P (*node)
584 && cxx11_attribute_p (a)
585 && !(flags & ATTR_FLAG_TYPE_IN_PLACE))
586 {
587 /* This is a c++11 attribute that appertains to a
588 type-specifier, outside of the definition of, a class
589 type. Ignore it. */
fe6f27c7
PC
590 if (warning (OPT_Wattributes, "attribute ignored"))
591 inform (input_location,
592 "an attribute that appertains to a type-specifier "
593 "is ignored");
e28d52cf
DS
594 continue;
595 }
596
bb9f8221
RK
597 if (spec->decl_required && !DECL_P (*anode))
598 {
599 if (flags & ((int) ATTR_FLAG_DECL_NEXT
600 | (int) ATTR_FLAG_FUNCTION_NEXT
601 | (int) ATTR_FLAG_ARRAY_NEXT))
602 {
603 /* Pass on this attribute to be tried again. */
5d9ae53d
MS
604 tree attr = tree_cons (name, args, NULL_TREE);
605 returned_attrs = chainon (returned_attrs, attr);
bb9f8221
RK
606 continue;
607 }
608 else
609 {
4f1e4960
JM
610 warning (OPT_Wattributes, "%qE attribute does not apply to types",
611 name);
bb9f8221
RK
612 continue;
613 }
614 }
615
dd4dc3cd
RK
616 /* If we require a type, but were passed a decl, set up to make a
617 new type and update the one in the decl. ATTR_FLAG_TYPE_IN_PLACE
618 would have applied if we'd been passed a type, but we cannot modify
619 the decl's type in place here. */
bb9f8221 620 if (spec->type_required && DECL_P (*anode))
dd4dc3cd
RK
621 {
622 anode = &TREE_TYPE (*anode);
26c87b1a 623 flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
dd4dc3cd 624 }
bb9f8221
RK
625
626 if (spec->function_type_required && TREE_CODE (*anode) != FUNCTION_TYPE
627 && TREE_CODE (*anode) != METHOD_TYPE)
628 {
629 if (TREE_CODE (*anode) == POINTER_TYPE
630 && (TREE_CODE (TREE_TYPE (*anode)) == FUNCTION_TYPE
631 || TREE_CODE (TREE_TYPE (*anode)) == METHOD_TYPE))
632 {
3acef2ae
JM
633 /* OK, this is a bit convoluted. We can't just make a copy
634 of the pointer type and modify its TREE_TYPE, because if
635 we change the attributes of the target type the pointer
636 type needs to have a different TYPE_MAIN_VARIANT. So we
637 pull out the target type now, frob it as appropriate, and
638 rebuild the pointer type later.
639
c22cacf3
MS
640 This would all be simpler if attributes were part of the
641 declarator, grumble grumble. */
3acef2ae 642 fn_ptr_tmp = TREE_TYPE (*anode);
f9ceed32 643 fn_ptr_quals = TYPE_QUALS (*anode);
3acef2ae
JM
644 anode = &fn_ptr_tmp;
645 flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
bb9f8221
RK
646 }
647 else if (flags & (int) ATTR_FLAG_FUNCTION_NEXT)
648 {
649 /* Pass on this attribute to be tried again. */
5d9ae53d
MS
650 tree attr = tree_cons (name, args, NULL_TREE);
651 returned_attrs = chainon (returned_attrs, attr);
bb9f8221
RK
652 continue;
653 }
654
655 if (TREE_CODE (*anode) != FUNCTION_TYPE
656 && TREE_CODE (*anode) != METHOD_TYPE)
657 {
5c498b10 658 warning (OPT_Wattributes,
4f1e4960
JM
659 "%qE attribute only applies to function types",
660 name);
bb9f8221
RK
661 continue;
662 }
663 }
664
b9e75696
JM
665 if (TYPE_P (*anode)
666 && (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
667 && TYPE_SIZE (*anode) != NULL_TREE)
668 {
669 warning (OPT_Wattributes, "type attributes ignored after type is already defined");
670 continue;
671 }
672
5d9ae53d
MS
673 bool no_add_attrs = false;
674
bb9f8221 675 if (spec->handler != NULL)
e28d52cf
DS
676 {
677 int cxx11_flag =
678 cxx11_attribute_p (a) ? ATTR_FLAG_CXX11 : 0;
679
5d9ae53d
MS
680 /* Pass in an array of the current declaration followed
681 by the last pushed/merged declaration if one exists.
682 If the handler changes CUR_AND_LAST_DECL[0] replace
683 *ANODE with its value. */
684 tree cur_and_last_decl[] = { *anode, last_decl };
685 tree ret = (spec->handler) (cur_and_last_decl, name, args,
686 flags|cxx11_flag, &no_add_attrs);
687
688 *anode = cur_and_last_decl[0];
689 if (ret == error_mark_node)
690 {
691 warning (OPT_Wattributes, "%qE attribute ignored", name);
692 no_add_attrs = true;
693 }
694 else
695 returned_attrs = chainon (ret, returned_attrs);
696 }
697
698 /* If the attribute was successfully handled on its own and is
699 about to be added check for exclusions with other attributes
700 on the current declation as well as the last declaration of
701 the same symbol already processed (if one exists). */
702 bool built_in = flags & ATTR_FLAG_BUILT_IN;
703 if (spec->exclude
704 && !no_add_attrs
705 && (flag_checking || !built_in))
706 {
707 /* Always check attributes on user-defined functions.
708 Check them on built-ins only when -fchecking is set.
709 Ignore __builtin_unreachable -- it's both const and
710 noreturn. */
711
712 if (!built_in
713 || !DECL_P (*anode)
714 || (DECL_FUNCTION_CODE (*anode) != BUILT_IN_UNREACHABLE
715 && (DECL_FUNCTION_CODE (*anode)
716 != BUILT_IN_UBSAN_HANDLE_BUILTIN_UNREACHABLE)))
717 {
718 bool no_add = diag_attr_exclusions (last_decl, *anode, name, spec);
719 if (!no_add && anode != node)
720 no_add = diag_attr_exclusions (last_decl, *node, name, spec);
721 no_add_attrs |= no_add;
722 }
e28d52cf 723 }
1b9191d2
AH
724
725 /* Layout the decl in case anything changed. */
726 if (spec->type_required && DECL_P (*node)
8813a647 727 && (VAR_P (*node)
67282790
JM
728 || TREE_CODE (*node) == PARM_DECL
729 || TREE_CODE (*node) == RESULT_DECL))
d1838621 730 relayout_decl (*node);
1b9191d2 731
bb9f8221
RK
732 if (!no_add_attrs)
733 {
734 tree old_attrs;
735 tree a;
736
737 if (DECL_P (*anode))
738 old_attrs = DECL_ATTRIBUTES (*anode);
739 else
740 old_attrs = TYPE_ATTRIBUTES (*anode);
741
742 for (a = lookup_attribute (spec->name, old_attrs);
743 a != NULL_TREE;
744 a = lookup_attribute (spec->name, TREE_CHAIN (a)))
745 {
746 if (simple_cst_equal (TREE_VALUE (a), args) == 1)
747 break;
748 }
749
750 if (a == NULL_TREE)
751 {
752 /* This attribute isn't already in the list. */
753 if (DECL_P (*anode))
754 DECL_ATTRIBUTES (*anode) = tree_cons (name, args, old_attrs);
755 else if (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
67214984
JM
756 {
757 TYPE_ATTRIBUTES (*anode) = tree_cons (name, args, old_attrs);
758 /* If this is the main variant, also push the attributes
759 out to the other variants. */
760 if (*anode == TYPE_MAIN_VARIANT (*anode))
761 {
762 tree variant;
763 for (variant = *anode; variant;
764 variant = TYPE_NEXT_VARIANT (variant))
765 {
766 if (TYPE_ATTRIBUTES (variant) == old_attrs)
767 TYPE_ATTRIBUTES (variant)
768 = TYPE_ATTRIBUTES (*anode);
769 else if (!lookup_attribute
770 (spec->name, TYPE_ATTRIBUTES (variant)))
771 TYPE_ATTRIBUTES (variant) = tree_cons
772 (name, args, TYPE_ATTRIBUTES (variant));
773 }
774 }
775 }
bb9f8221
RK
776 else
777 *anode = build_type_attribute_variant (*anode,
778 tree_cons (name, args,
779 old_attrs));
780 }
781 }
3acef2ae
JM
782
783 if (fn_ptr_tmp)
784 {
785 /* Rebuild the function pointer type and put it in the
786 appropriate place. */
787 fn_ptr_tmp = build_pointer_type (fn_ptr_tmp);
f9ceed32
MM
788 if (fn_ptr_quals)
789 fn_ptr_tmp = build_qualified_type (fn_ptr_tmp, fn_ptr_quals);
3acef2ae
JM
790 if (DECL_P (*node))
791 TREE_TYPE (*node) = fn_ptr_tmp;
3acef2ae 792 else
298e6adc
NS
793 {
794 gcc_assert (TREE_CODE (*node) == POINTER_TYPE);
795 *node = fn_ptr_tmp;
796 }
3acef2ae 797 }
bb9f8221
RK
798 }
799
800 return returned_attrs;
801}
0a35513e 802
e28d52cf
DS
803/* Return TRUE iff ATTR has been parsed by the front-end as a C++-11
804 attribute.
805
806 When G++ parses a C++11 attribute, it is represented as
807 a TREE_LIST which TREE_PURPOSE is itself a TREE_LIST. TREE_PURPOSE
808 (TREE_PURPOSE (ATTR)) is the namespace of the attribute, and the
809 TREE_VALUE (TREE_PURPOSE (ATTR)) is its non-qualified name. Please
810 use get_attribute_namespace and get_attribute_name to retrieve the
811 namespace and name of the attribute, as these accessors work with
812 GNU attributes as well. */
813
814bool
815cxx11_attribute_p (const_tree attr)
816{
817 if (attr == NULL_TREE
818 || TREE_CODE (attr) != TREE_LIST)
819 return false;
820
821 return (TREE_CODE (TREE_PURPOSE (attr)) == TREE_LIST);
822}
823
824/* Return the name of the attribute ATTR. This accessor works on GNU
825 and C++11 (scoped) attributes.
826
827 Please read the comments of cxx11_attribute_p to understand the
828 format of attributes. */
829
830tree
831get_attribute_name (const_tree attr)
832{
833 if (cxx11_attribute_p (attr))
834 return TREE_VALUE (TREE_PURPOSE (attr));
835 return TREE_PURPOSE (attr);
836}
837
0a35513e
AH
838/* Subroutine of set_method_tm_attributes. Apply TM attribute ATTR
839 to the method FNDECL. */
840
841void
842apply_tm_attr (tree fndecl, tree attr)
843{
844 decl_attributes (&TREE_TYPE (fndecl), tree_cons (attr, NULL, NULL), 0);
845}
3b1661a9
ES
846
847/* Makes a function attribute of the form NAME(ARG_NAME) and chains
848 it to CHAIN. */
849
850tree
851make_attribute (const char *name, const char *arg_name, tree chain)
852{
853 tree attr_name;
854 tree attr_arg_name;
855 tree attr_args;
856 tree attr;
857
858 attr_name = get_identifier (name);
859 attr_arg_name = build_string (strlen (arg_name), arg_name);
860 attr_args = tree_cons (NULL_TREE, attr_arg_name, NULL_TREE);
861 attr = tree_cons (attr_name, attr_args, chain);
862 return attr;
863}
1b062c1a
MM
864
865\f
866/* Common functions used for target clone support. */
867
868/* Comparator function to be used in qsort routine to sort attribute
869 specification strings to "target". */
870
871static int
872attr_strcmp (const void *v1, const void *v2)
873{
874 const char *c1 = *(char *const*)v1;
875 const char *c2 = *(char *const*)v2;
876 return strcmp (c1, c2);
877}
878
879/* ARGLIST is the argument to target attribute. This function tokenizes
880 the comma separated arguments, sorts them and returns a string which
881 is a unique identifier for the comma separated arguments. It also
882 replaces non-identifier characters "=,-" with "_". */
883
884char *
885sorted_attr_string (tree arglist)
886{
887 tree arg;
888 size_t str_len_sum = 0;
889 char **args = NULL;
890 char *attr_str, *ret_str;
891 char *attr = NULL;
892 unsigned int argnum = 1;
893 unsigned int i;
894
895 for (arg = arglist; arg; arg = TREE_CHAIN (arg))
896 {
897 const char *str = TREE_STRING_POINTER (TREE_VALUE (arg));
898 size_t len = strlen (str);
899 str_len_sum += len + 1;
900 if (arg != arglist)
901 argnum++;
902 for (i = 0; i < strlen (str); i++)
903 if (str[i] == ',')
904 argnum++;
905 }
906
907 attr_str = XNEWVEC (char, str_len_sum);
908 str_len_sum = 0;
909 for (arg = arglist; arg; arg = TREE_CHAIN (arg))
910 {
911 const char *str = TREE_STRING_POINTER (TREE_VALUE (arg));
912 size_t len = strlen (str);
913 memcpy (attr_str + str_len_sum, str, len);
914 attr_str[str_len_sum + len] = TREE_CHAIN (arg) ? ',' : '\0';
915 str_len_sum += len + 1;
916 }
917
918 /* Replace "=,-" with "_". */
919 for (i = 0; i < strlen (attr_str); i++)
920 if (attr_str[i] == '=' || attr_str[i]== '-')
921 attr_str[i] = '_';
922
923 if (argnum == 1)
924 return attr_str;
925
926 args = XNEWVEC (char *, argnum);
927
928 i = 0;
929 attr = strtok (attr_str, ",");
930 while (attr != NULL)
931 {
932 args[i] = attr;
933 i++;
934 attr = strtok (NULL, ",");
935 }
936
937 qsort (args, argnum, sizeof (char *), attr_strcmp);
938
939 ret_str = XNEWVEC (char, str_len_sum);
940 str_len_sum = 0;
941 for (i = 0; i < argnum; i++)
942 {
943 size_t len = strlen (args[i]);
944 memcpy (ret_str + str_len_sum, args[i], len);
945 ret_str[str_len_sum + len] = i < argnum - 1 ? '_' : '\0';
946 str_len_sum += len + 1;
947 }
948
949 XDELETEVEC (args);
950 XDELETEVEC (attr_str);
951 return ret_str;
952}
953
954
955/* This function returns true if FN1 and FN2 are versions of the same function,
956 that is, the target strings of the function decls are different. This assumes
957 that FN1 and FN2 have the same signature. */
958
959bool
960common_function_versions (tree fn1, tree fn2)
961{
962 tree attr1, attr2;
963 char *target1, *target2;
964 bool result;
965
966 if (TREE_CODE (fn1) != FUNCTION_DECL
967 || TREE_CODE (fn2) != FUNCTION_DECL)
968 return false;
969
970 attr1 = lookup_attribute ("target", DECL_ATTRIBUTES (fn1));
971 attr2 = lookup_attribute ("target", DECL_ATTRIBUTES (fn2));
972
973 /* At least one function decl should have the target attribute specified. */
974 if (attr1 == NULL_TREE && attr2 == NULL_TREE)
975 return false;
976
977 /* Diagnose missing target attribute if one of the decls is already
978 multi-versioned. */
979 if (attr1 == NULL_TREE || attr2 == NULL_TREE)
980 {
981 if (DECL_FUNCTION_VERSIONED (fn1) || DECL_FUNCTION_VERSIONED (fn2))
982 {
983 if (attr2 != NULL_TREE)
984 {
985 std::swap (fn1, fn2);
986 attr1 = attr2;
987 }
988 error_at (DECL_SOURCE_LOCATION (fn2),
989 "missing %<target%> attribute for multi-versioned %qD",
990 fn2);
991 inform (DECL_SOURCE_LOCATION (fn1),
992 "previous declaration of %qD", fn1);
993 /* Prevent diagnosing of the same error multiple times. */
994 DECL_ATTRIBUTES (fn2)
995 = tree_cons (get_identifier ("target"),
996 copy_node (TREE_VALUE (attr1)),
997 DECL_ATTRIBUTES (fn2));
998 }
999 return false;
1000 }
1001
1002 target1 = sorted_attr_string (TREE_VALUE (attr1));
1003 target2 = sorted_attr_string (TREE_VALUE (attr2));
1004
1005 /* The sorted target strings must be different for fn1 and fn2
1006 to be versions. */
1007 if (strcmp (target1, target2) == 0)
1008 result = false;
1009 else
1010 result = true;
1011
1012 XDELETEVEC (target1);
1013 XDELETEVEC (target2);
1014
1015 return result;
1016}
1017
1018/* Return a new name by appending SUFFIX to the DECL name. If make_unique
1019 is true, append the full path name of the source file. */
1020
1021char *
1022make_unique_name (tree decl, const char *suffix, bool make_unique)
1023{
1024 char *global_var_name;
1025 int name_len;
1026 const char *name;
1027 const char *unique_name = NULL;
1028
1029 name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
1030
1031 /* Get a unique name that can be used globally without any chances
1032 of collision at link time. */
1033 if (make_unique)
1034 unique_name = IDENTIFIER_POINTER (get_file_function_name ("\0"));
1035
1036 name_len = strlen (name) + strlen (suffix) + 2;
1037
1038 if (make_unique)
1039 name_len += strlen (unique_name) + 1;
1040 global_var_name = XNEWVEC (char, name_len);
1041
1042 /* Use '.' to concatenate names as it is demangler friendly. */
1043 if (make_unique)
1044 snprintf (global_var_name, name_len, "%s.%s.%s", name, unique_name,
1045 suffix);
1046 else
1047 snprintf (global_var_name, name_len, "%s.%s", name, suffix);
1048
1049 return global_var_name;
1050}
1051
1052/* Make a dispatcher declaration for the multi-versioned function DECL.
1053 Calls to DECL function will be replaced with calls to the dispatcher
1054 by the front-end. Return the decl created. */
1055
1056tree
1057make_dispatcher_decl (const tree decl)
1058{
1059 tree func_decl;
1060 char *func_name;
1061 tree fn_type, func_type;
1b062c1a 1062
871cc215 1063 func_name = xstrdup (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
1b062c1a
MM
1064
1065 fn_type = TREE_TYPE (decl);
1066 func_type = build_function_type (TREE_TYPE (fn_type),
1067 TYPE_ARG_TYPES (fn_type));
1068
1069 func_decl = build_fn_decl (func_name, func_type);
1070 XDELETEVEC (func_name);
1071 TREE_USED (func_decl) = 1;
1072 DECL_CONTEXT (func_decl) = NULL_TREE;
1073 DECL_INITIAL (func_decl) = error_mark_node;
1074 DECL_ARTIFICIAL (func_decl) = 1;
1075 /* Mark this func as external, the resolver will flip it again if
1076 it gets generated. */
1077 DECL_EXTERNAL (func_decl) = 1;
1078 /* This will be of type IFUNCs have to be externally visible. */
1079 TREE_PUBLIC (func_decl) = 1;
1080
1081 return func_decl;
1082}
1083
1084/* Returns true if decl is multi-versioned and DECL is the default function,
1085 that is it is not tagged with target specific optimization. */
1086
1087bool
1088is_function_default_version (const tree decl)
1089{
1090 if (TREE_CODE (decl) != FUNCTION_DECL
1091 || !DECL_FUNCTION_VERSIONED (decl))
1092 return false;
1093 tree attr = lookup_attribute ("target", DECL_ATTRIBUTES (decl));
1094 gcc_assert (attr);
1095 attr = TREE_VALUE (TREE_VALUE (attr));
1096 return (TREE_CODE (attr) == STRING_CST
1097 && strcmp (TREE_STRING_POINTER (attr), "default") == 0);
1098}
314e6352
ML
1099
1100/* Return a declaration like DDECL except that its DECL_ATTRIBUTES
1101 is ATTRIBUTE. */
1102
1103tree
1104build_decl_attribute_variant (tree ddecl, tree attribute)
1105{
1106 DECL_ATTRIBUTES (ddecl) = attribute;
1107 return ddecl;
1108}
1109
1110/* Return a type like TTYPE except that its TYPE_ATTRIBUTE
1111 is ATTRIBUTE and its qualifiers are QUALS.
1112
1113 Record such modified types already made so we don't make duplicates. */
1114
1115tree
27c825c5 1116build_type_attribute_qual_variant (tree otype, tree attribute, int quals)
314e6352 1117{
27c825c5 1118 tree ttype = otype;
314e6352
ML
1119 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
1120 {
1121 tree ntype;
1122
1123 /* Building a distinct copy of a tagged type is inappropriate; it
1124 causes breakage in code that expects there to be a one-to-one
1125 relationship between a struct and its fields.
1126 build_duplicate_type is another solution (as used in
1127 handle_transparent_union_attribute), but that doesn't play well
1128 with the stronger C++ type identity model. */
1129 if (TREE_CODE (ttype) == RECORD_TYPE
1130 || TREE_CODE (ttype) == UNION_TYPE
1131 || TREE_CODE (ttype) == QUAL_UNION_TYPE
1132 || TREE_CODE (ttype) == ENUMERAL_TYPE)
1133 {
1134 warning (OPT_Wattributes,
1135 "ignoring attributes applied to %qT after definition",
1136 TYPE_MAIN_VARIANT (ttype));
1137 return build_qualified_type (ttype, quals);
1138 }
1139
1140 ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
27c825c5
JM
1141 if (lang_hooks.types.copy_lang_qualifiers
1142 && otype != TYPE_MAIN_VARIANT (otype))
1143 ttype = (lang_hooks.types.copy_lang_qualifiers
1144 (ttype, TYPE_MAIN_VARIANT (otype)));
1145
314e6352
ML
1146 ntype = build_distinct_type_copy (ttype);
1147
1148 TYPE_ATTRIBUTES (ntype) = attribute;
1149
1150 hashval_t hash = type_hash_canon_hash (ntype);
1151 ntype = type_hash_canon (hash, ntype);
1152
1153 /* If the target-dependent attributes make NTYPE different from
1154 its canonical type, we will need to use structural equality
1155 checks for this type. */
1156 if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
1157 || !comp_type_attributes (ntype, ttype))
1158 SET_TYPE_STRUCTURAL_EQUALITY (ntype);
1159 else if (TYPE_CANONICAL (ntype) == ntype)
1160 TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
1161
1162 ttype = build_qualified_type (ntype, quals);
27c825c5
JM
1163 if (lang_hooks.types.copy_lang_qualifiers
1164 && otype != TYPE_MAIN_VARIANT (otype))
1165 ttype = lang_hooks.types.copy_lang_qualifiers (ttype, otype);
314e6352
ML
1166 }
1167 else if (TYPE_QUALS (ttype) != quals)
1168 ttype = build_qualified_type (ttype, quals);
1169
1170 return ttype;
1171}
1172
1173/* Compare two identifier nodes representing attributes.
1174 Return true if they are the same, false otherwise. */
1175
1176static bool
1177cmp_attrib_identifiers (const_tree attr1, const_tree attr2)
1178{
1179 /* Make sure we're dealing with IDENTIFIER_NODEs. */
1180 gcc_checking_assert (TREE_CODE (attr1) == IDENTIFIER_NODE
1181 && TREE_CODE (attr2) == IDENTIFIER_NODE);
1182
1183 /* Identifiers can be compared directly for equality. */
1184 if (attr1 == attr2)
1185 return true;
1186
1187 return cmp_attribs (IDENTIFIER_POINTER (attr1), IDENTIFIER_LENGTH (attr1),
1188 IDENTIFIER_POINTER (attr2), IDENTIFIER_LENGTH (attr2));
1189}
1190
1191/* Compare two constructor-element-type constants. Return 1 if the lists
1192 are known to be equal; otherwise return 0. */
1193
1194static bool
1195simple_cst_list_equal (const_tree l1, const_tree l2)
1196{
1197 while (l1 != NULL_TREE && l2 != NULL_TREE)
1198 {
1199 if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
1200 return false;
1201
1202 l1 = TREE_CHAIN (l1);
1203 l2 = TREE_CHAIN (l2);
1204 }
1205
1206 return l1 == l2;
1207}
1208
1209/* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
1210 the same. */
1211
1212static bool
1213omp_declare_simd_clauses_equal (tree clauses1, tree clauses2)
1214{
1215 tree cl1, cl2;
1216 for (cl1 = clauses1, cl2 = clauses2;
1217 cl1 && cl2;
1218 cl1 = OMP_CLAUSE_CHAIN (cl1), cl2 = OMP_CLAUSE_CHAIN (cl2))
1219 {
1220 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_CODE (cl2))
1221 return false;
1222 if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_SIMDLEN)
1223 {
1224 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1),
1225 OMP_CLAUSE_DECL (cl2)) != 1)
1226 return false;
1227 }
1228 switch (OMP_CLAUSE_CODE (cl1))
1229 {
1230 case OMP_CLAUSE_ALIGNED:
1231 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1),
1232 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2)) != 1)
1233 return false;
1234 break;
1235 case OMP_CLAUSE_LINEAR:
1236 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1),
1237 OMP_CLAUSE_LINEAR_STEP (cl2)) != 1)
1238 return false;
1239 break;
1240 case OMP_CLAUSE_SIMDLEN:
1241 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1),
1242 OMP_CLAUSE_SIMDLEN_EXPR (cl2)) != 1)
1243 return false;
1244 default:
1245 break;
1246 }
1247 }
1248 return true;
1249}
1250
1251
1252/* Compare two attributes for their value identity. Return true if the
1253 attribute values are known to be equal; otherwise return false. */
1254
1255bool
1256attribute_value_equal (const_tree attr1, const_tree attr2)
1257{
1258 if (TREE_VALUE (attr1) == TREE_VALUE (attr2))
1259 return true;
1260
1261 if (TREE_VALUE (attr1) != NULL_TREE
1262 && TREE_CODE (TREE_VALUE (attr1)) == TREE_LIST
1263 && TREE_VALUE (attr2) != NULL_TREE
1264 && TREE_CODE (TREE_VALUE (attr2)) == TREE_LIST)
1265 {
1266 /* Handle attribute format. */
1267 if (is_attribute_p ("format", get_attribute_name (attr1)))
1268 {
1269 attr1 = TREE_VALUE (attr1);
1270 attr2 = TREE_VALUE (attr2);
1271 /* Compare the archetypes (printf/scanf/strftime/...). */
1272 if (!cmp_attrib_identifiers (TREE_VALUE (attr1), TREE_VALUE (attr2)))
1273 return false;
1274 /* Archetypes are the same. Compare the rest. */
1275 return (simple_cst_list_equal (TREE_CHAIN (attr1),
1276 TREE_CHAIN (attr2)) == 1);
1277 }
1278 return (simple_cst_list_equal (TREE_VALUE (attr1),
1279 TREE_VALUE (attr2)) == 1);
1280 }
1281
bc1a75dd 1282 if (TREE_VALUE (attr1)
314e6352 1283 && TREE_CODE (TREE_VALUE (attr1)) == OMP_CLAUSE
bc1a75dd 1284 && TREE_VALUE (attr2)
314e6352
ML
1285 && TREE_CODE (TREE_VALUE (attr2)) == OMP_CLAUSE)
1286 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1),
1287 TREE_VALUE (attr2));
1288
1289 return (simple_cst_equal (TREE_VALUE (attr1), TREE_VALUE (attr2)) == 1);
1290}
1291
1292/* Return 0 if the attributes for two types are incompatible, 1 if they
1293 are compatible, and 2 if they are nearly compatible (which causes a
1294 warning to be generated). */
1295int
1296comp_type_attributes (const_tree type1, const_tree type2)
1297{
1298 const_tree a1 = TYPE_ATTRIBUTES (type1);
1299 const_tree a2 = TYPE_ATTRIBUTES (type2);
1300 const_tree a;
1301
1302 if (a1 == a2)
1303 return 1;
1304 for (a = a1; a != NULL_TREE; a = TREE_CHAIN (a))
1305 {
1306 const struct attribute_spec *as;
1307 const_tree attr;
1308
1309 as = lookup_attribute_spec (get_attribute_name (a));
1310 if (!as || as->affects_type_identity == false)
1311 continue;
1312
1313 attr = lookup_attribute (as->name, CONST_CAST_TREE (a2));
1314 if (!attr || !attribute_value_equal (a, attr))
1315 break;
1316 }
1317 if (!a)
1318 {
1319 for (a = a2; a != NULL_TREE; a = TREE_CHAIN (a))
1320 {
1321 const struct attribute_spec *as;
1322
1323 as = lookup_attribute_spec (get_attribute_name (a));
1324 if (!as || as->affects_type_identity == false)
1325 continue;
1326
1327 if (!lookup_attribute (as->name, CONST_CAST_TREE (a1)))
1328 break;
1329 /* We don't need to compare trees again, as we did this
1330 already in first loop. */
1331 }
1332 /* All types - affecting identity - are equal, so
1333 there is no need to call target hook for comparison. */
1334 if (!a)
1335 return 1;
1336 }
1337 if (lookup_attribute ("transaction_safe", CONST_CAST_TREE (a)))
1338 return 0;
5c5f0b65
IT
1339 if ((lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (type1)) != NULL)
1340 ^ (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (type2)) != NULL))
1341 return 0;
314e6352
ML
1342 /* As some type combinations - like default calling-convention - might
1343 be compatible, we have to call the target hook to get the final result. */
1344 return targetm.comp_type_attributes (type1, type2);
1345}
1346
1347/* Return a type like TTYPE except that its TYPE_ATTRIBUTE
1348 is ATTRIBUTE.
1349
1350 Record such modified types already made so we don't make duplicates. */
1351
1352tree
1353build_type_attribute_variant (tree ttype, tree attribute)
1354{
1355 return build_type_attribute_qual_variant (ttype, attribute,
1356 TYPE_QUALS (ttype));
1357}
1358\f
1359/* A variant of lookup_attribute() that can be used with an identifier
1360 as the first argument, and where the identifier can be either
1361 'text' or '__text__'.
1362
1363 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
1364 return a pointer to the attribute's list element if the attribute
1365 is part of the list, or NULL_TREE if not found. If the attribute
1366 appears more than once, this only returns the first occurrence; the
1367 TREE_CHAIN of the return value should be passed back in if further
1368 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
1369 can be in the form 'text' or '__text__'. */
1370static tree
1371lookup_ident_attribute (tree attr_identifier, tree list)
1372{
1373 gcc_checking_assert (TREE_CODE (attr_identifier) == IDENTIFIER_NODE);
1374
1375 while (list)
1376 {
1377 gcc_checking_assert (TREE_CODE (get_attribute_name (list))
1378 == IDENTIFIER_NODE);
1379
1380 if (cmp_attrib_identifiers (attr_identifier,
1381 get_attribute_name (list)))
1382 /* Found it. */
1383 break;
1384 list = TREE_CHAIN (list);
1385 }
1386
1387 return list;
1388}
1389
1390/* Remove any instances of attribute ATTR_NAME in LIST and return the
1391 modified list. */
1392
1393tree
1394remove_attribute (const char *attr_name, tree list)
1395{
1396 tree *p;
1397 gcc_checking_assert (attr_name[0] != '_');
1398
1399 for (p = &list; *p;)
1400 {
1401 tree l = *p;
1402
1403 tree attr = get_attribute_name (l);
1404 if (is_attribute_p (attr_name, attr))
1405 *p = TREE_CHAIN (l);
1406 else
1407 p = &TREE_CHAIN (l);
1408 }
1409
1410 return list;
1411}
1412
1413/* Return an attribute list that is the union of a1 and a2. */
1414
1415tree
1416merge_attributes (tree a1, tree a2)
1417{
1418 tree attributes;
1419
1420 /* Either one unset? Take the set one. */
1421
1422 if ((attributes = a1) == 0)
1423 attributes = a2;
1424
1425 /* One that completely contains the other? Take it. */
1426
1427 else if (a2 != 0 && ! attribute_list_contained (a1, a2))
1428 {
1429 if (attribute_list_contained (a2, a1))
1430 attributes = a2;
1431 else
1432 {
1433 /* Pick the longest list, and hang on the other list. */
1434
1435 if (list_length (a1) < list_length (a2))
1436 attributes = a2, a2 = a1;
1437
1438 for (; a2 != 0; a2 = TREE_CHAIN (a2))
1439 {
1440 tree a;
1441 for (a = lookup_ident_attribute (get_attribute_name (a2),
1442 attributes);
1443 a != NULL_TREE && !attribute_value_equal (a, a2);
1444 a = lookup_ident_attribute (get_attribute_name (a2),
1445 TREE_CHAIN (a)))
1446 ;
1447 if (a == NULL_TREE)
1448 {
1449 a1 = copy_node (a2);
1450 TREE_CHAIN (a1) = attributes;
1451 attributes = a1;
1452 }
1453 }
1454 }
1455 }
1456 return attributes;
1457}
1458
1459/* Given types T1 and T2, merge their attributes and return
1460 the result. */
1461
1462tree
1463merge_type_attributes (tree t1, tree t2)
1464{
1465 return merge_attributes (TYPE_ATTRIBUTES (t1),
1466 TYPE_ATTRIBUTES (t2));
1467}
1468
1469/* Given decls OLDDECL and NEWDECL, merge their attributes and return
1470 the result. */
1471
1472tree
1473merge_decl_attributes (tree olddecl, tree newdecl)
1474{
1475 return merge_attributes (DECL_ATTRIBUTES (olddecl),
1476 DECL_ATTRIBUTES (newdecl));
1477}
1478
bc1a75dd
JJ
1479/* Duplicate all attributes with name NAME in ATTR list to *ATTRS if
1480 they are missing there. */
1481
1482void
1483duplicate_one_attribute (tree *attrs, tree attr, const char *name)
1484{
1485 attr = lookup_attribute (name, attr);
1486 if (!attr)
1487 return;
1488 tree a = lookup_attribute (name, *attrs);
1489 while (attr)
1490 {
1491 tree a2;
1492 for (a2 = a; a2; a2 = lookup_attribute (name, TREE_CHAIN (a2)))
1493 if (attribute_value_equal (attr, a2))
1494 break;
1495 if (!a2)
1496 {
1497 a2 = copy_node (attr);
1498 TREE_CHAIN (a2) = *attrs;
1499 *attrs = a2;
1500 }
1501 attr = lookup_attribute (name, TREE_CHAIN (attr));
1502 }
1503}
1504
1505/* Duplicate all attributes from user DECL to the corresponding
1506 builtin that should be propagated. */
1507
1508void
1509copy_attributes_to_builtin (tree decl)
1510{
1511 tree b = builtin_decl_explicit (DECL_FUNCTION_CODE (decl));
1512 if (b)
1513 duplicate_one_attribute (&DECL_ATTRIBUTES (b),
1514 DECL_ATTRIBUTES (decl), "omp declare simd");
1515}
1516
314e6352
ML
1517#if TARGET_DLLIMPORT_DECL_ATTRIBUTES
1518
1519/* Specialization of merge_decl_attributes for various Windows targets.
1520
1521 This handles the following situation:
1522
1523 __declspec (dllimport) int foo;
1524 int foo;
1525
1526 The second instance of `foo' nullifies the dllimport. */
1527
1528tree
1529merge_dllimport_decl_attributes (tree old, tree new_tree)
1530{
1531 tree a;
1532 int delete_dllimport_p = 1;
1533
1534 /* What we need to do here is remove from `old' dllimport if it doesn't
1535 appear in `new'. dllimport behaves like extern: if a declaration is
1536 marked dllimport and a definition appears later, then the object
1537 is not dllimport'd. We also remove a `new' dllimport if the old list
1538 contains dllexport: dllexport always overrides dllimport, regardless
1539 of the order of declaration. */
1540 if (!VAR_OR_FUNCTION_DECL_P (new_tree))
1541 delete_dllimport_p = 0;
1542 else if (DECL_DLLIMPORT_P (new_tree)
1543 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
1544 {
1545 DECL_DLLIMPORT_P (new_tree) = 0;
1546 warning (OPT_Wattributes, "%q+D already declared with dllexport "
1547 "attribute: dllimport ignored", new_tree);
1548 }
1549 else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
1550 {
1551 /* Warn about overriding a symbol that has already been used, e.g.:
1552 extern int __attribute__ ((dllimport)) foo;
1553 int* bar () {return &foo;}
1554 int foo;
1555 */
1556 if (TREE_USED (old))
1557 {
1558 warning (0, "%q+D redeclared without dllimport attribute "
1559 "after being referenced with dll linkage", new_tree);
1560 /* If we have used a variable's address with dllimport linkage,
1561 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
1562 decl may already have had TREE_CONSTANT computed.
1563 We still remove the attribute so that assembler code refers
1564 to '&foo rather than '_imp__foo'. */
1565 if (VAR_P (old) && TREE_ADDRESSABLE (old))
1566 DECL_DLLIMPORT_P (new_tree) = 1;
1567 }
1568
1569 /* Let an inline definition silently override the external reference,
1570 but otherwise warn about attribute inconsistency. */
1571 else if (VAR_P (new_tree) || !DECL_DECLARED_INLINE_P (new_tree))
1572 warning (OPT_Wattributes, "%q+D redeclared without dllimport "
1573 "attribute: previous dllimport ignored", new_tree);
1574 }
1575 else
1576 delete_dllimport_p = 0;
1577
1578 a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
1579
1580 if (delete_dllimport_p)
1581 a = remove_attribute ("dllimport", a);
1582
1583 return a;
1584}
1585
1586/* Handle a "dllimport" or "dllexport" attribute; arguments as in
1587 struct attribute_spec.handler. */
1588
1589tree
1590handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
1591 bool *no_add_attrs)
1592{
1593 tree node = *pnode;
1594 bool is_dllimport;
1595
1596 /* These attributes may apply to structure and union types being created,
1597 but otherwise should pass to the declaration involved. */
1598 if (!DECL_P (node))
1599 {
1600 if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
1601 | (int) ATTR_FLAG_ARRAY_NEXT))
1602 {
1603 *no_add_attrs = true;
1604 return tree_cons (name, args, NULL_TREE);
1605 }
1606 if (TREE_CODE (node) == RECORD_TYPE
1607 || TREE_CODE (node) == UNION_TYPE)
1608 {
1609 node = TYPE_NAME (node);
1610 if (!node)
1611 return NULL_TREE;
1612 }
1613 else
1614 {
1615 warning (OPT_Wattributes, "%qE attribute ignored",
1616 name);
1617 *no_add_attrs = true;
1618 return NULL_TREE;
1619 }
1620 }
1621
1622 if (!VAR_OR_FUNCTION_DECL_P (node) && TREE_CODE (node) != TYPE_DECL)
1623 {
1624 *no_add_attrs = true;
1625 warning (OPT_Wattributes, "%qE attribute ignored",
1626 name);
1627 return NULL_TREE;
1628 }
1629
1630 if (TREE_CODE (node) == TYPE_DECL
1631 && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
1632 && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
1633 {
1634 *no_add_attrs = true;
1635 warning (OPT_Wattributes, "%qE attribute ignored",
1636 name);
1637 return NULL_TREE;
1638 }
1639
1640 is_dllimport = is_attribute_p ("dllimport", name);
1641
1642 /* Report error on dllimport ambiguities seen now before they cause
1643 any damage. */
1644 if (is_dllimport)
1645 {
1646 /* Honor any target-specific overrides. */
1647 if (!targetm.valid_dllimport_attribute_p (node))
1648 *no_add_attrs = true;
1649
1650 else if (TREE_CODE (node) == FUNCTION_DECL
1651 && DECL_DECLARED_INLINE_P (node))
1652 {
1653 warning (OPT_Wattributes, "inline function %q+D declared as "
1654 " dllimport: attribute ignored", node);
1655 *no_add_attrs = true;
1656 }
1657 /* Like MS, treat definition of dllimported variables and
1658 non-inlined functions on declaration as syntax errors. */
1659 else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
1660 {
1661 error ("function %q+D definition is marked dllimport", node);
1662 *no_add_attrs = true;
1663 }
1664
1665 else if (VAR_P (node))
1666 {
1667 if (DECL_INITIAL (node))
1668 {
1669 error ("variable %q+D definition is marked dllimport",
1670 node);
1671 *no_add_attrs = true;
1672 }
1673
1674 /* `extern' needn't be specified with dllimport.
1675 Specify `extern' now and hope for the best. Sigh. */
1676 DECL_EXTERNAL (node) = 1;
1677 /* Also, implicitly give dllimport'd variables declared within
1678 a function global scope, unless declared static. */
1679 if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
1680 TREE_PUBLIC (node) = 1;
1681 }
1682
1683 if (*no_add_attrs == false)
1684 DECL_DLLIMPORT_P (node) = 1;
1685 }
1686 else if (TREE_CODE (node) == FUNCTION_DECL
1687 && DECL_DECLARED_INLINE_P (node)
1688 && flag_keep_inline_dllexport)
1689 /* An exported function, even if inline, must be emitted. */
1690 DECL_EXTERNAL (node) = 0;
1691
1692 /* Report error if symbol is not accessible at global scope. */
1693 if (!TREE_PUBLIC (node) && VAR_OR_FUNCTION_DECL_P (node))
1694 {
1695 error ("external linkage required for symbol %q+D because of "
1696 "%qE attribute", node, name);
1697 *no_add_attrs = true;
1698 }
1699
1700 /* A dllexport'd entity must have default visibility so that other
1701 program units (shared libraries or the main executable) can see
1702 it. A dllimport'd entity must have default visibility so that
1703 the linker knows that undefined references within this program
1704 unit can be resolved by the dynamic linker. */
1705 if (!*no_add_attrs)
1706 {
1707 if (DECL_VISIBILITY_SPECIFIED (node)
1708 && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
1709 error ("%qE implies default visibility, but %qD has already "
1710 "been declared with a different visibility",
1711 name, node);
1712 DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
1713 DECL_VISIBILITY_SPECIFIED (node) = 1;
1714 }
1715
1716 return NULL_TREE;
1717}
1718
1719#endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
1720
1721/* Given two lists of attributes, return true if list l2 is
1722 equivalent to l1. */
1723
1724int
1725attribute_list_equal (const_tree l1, const_tree l2)
1726{
1727 if (l1 == l2)
1728 return 1;
1729
1730 return attribute_list_contained (l1, l2)
1731 && attribute_list_contained (l2, l1);
1732}
1733
1734/* Given two lists of attributes, return true if list L2 is
1735 completely contained within L1. */
1736/* ??? This would be faster if attribute names were stored in a canonicalized
1737 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
1738 must be used to show these elements are equivalent (which they are). */
1739/* ??? It's not clear that attributes with arguments will always be handled
1740 correctly. */
1741
1742int
1743attribute_list_contained (const_tree l1, const_tree l2)
1744{
1745 const_tree t1, t2;
1746
1747 /* First check the obvious, maybe the lists are identical. */
1748 if (l1 == l2)
1749 return 1;
1750
1751 /* Maybe the lists are similar. */
1752 for (t1 = l1, t2 = l2;
1753 t1 != 0 && t2 != 0
1754 && get_attribute_name (t1) == get_attribute_name (t2)
1755 && TREE_VALUE (t1) == TREE_VALUE (t2);
1756 t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
1757 ;
1758
1759 /* Maybe the lists are equal. */
1760 if (t1 == 0 && t2 == 0)
1761 return 1;
1762
1763 for (; t2 != 0; t2 = TREE_CHAIN (t2))
1764 {
1765 const_tree attr;
1766 /* This CONST_CAST is okay because lookup_attribute does not
1767 modify its argument and the return value is assigned to a
1768 const_tree. */
1769 for (attr = lookup_ident_attribute (get_attribute_name (t2),
1770 CONST_CAST_TREE (l1));
1771 attr != NULL_TREE && !attribute_value_equal (t2, attr);
1772 attr = lookup_ident_attribute (get_attribute_name (t2),
1773 TREE_CHAIN (attr)))
1774 ;
1775
1776 if (attr == NULL_TREE)
1777 return 0;
1778 }
1779
1780 return 1;
1781}
13bdca74
ML
1782
1783/* The backbone of lookup_attribute(). ATTR_LEN is the string length
1784 of ATTR_NAME, and LIST is not NULL_TREE.
1785
1786 The function is called from lookup_attribute in order to optimize
1787 for size. */
1788
1789tree
1790private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
1791{
1792 while (list)
1793 {
1794 tree attr = get_attribute_name (list);
1795 size_t ident_len = IDENTIFIER_LENGTH (attr);
1796 if (cmp_attribs (attr_name, attr_len, IDENTIFIER_POINTER (attr),
1797 ident_len))
1798 break;
1799 list = TREE_CHAIN (list);
1800 }
1801
1802 return list;
1803}
5d9ae53d
MS
1804
1805#if CHECKING_P
1806
1807namespace selftest
1808{
1809
1810/* Helper types to verify the consistency attribute exclusions. */
1811
1812typedef std::pair<const char *, const char *> excl_pair;
1813
1814struct excl_hash_traits: typed_noop_remove<excl_pair>
1815{
1816 typedef excl_pair value_type;
1817 typedef value_type compare_type;
1818
1819 static hashval_t hash (const value_type &x)
1820 {
1821 hashval_t h1 = htab_hash_string (x.first);
1822 hashval_t h2 = htab_hash_string (x.second);
1823 return h1 ^ h2;
1824 }
1825
1826 static bool equal (const value_type &x, const value_type &y)
1827 {
1828 return !strcmp (x.first, y.first) && !strcmp (x.second, y.second);
1829 }
1830
1831 static void mark_deleted (value_type &x)
1832 {
1833 x = value_type (NULL, NULL);
1834 }
1835
1836 static void mark_empty (value_type &x)
1837 {
1838 x = value_type ("", "");
1839 }
1840
1841 static bool is_deleted (const value_type &x)
1842 {
1843 return !x.first && !x.second;
1844 }
1845
1846 static bool is_empty (const value_type &x)
1847 {
1848 return !*x.first && !*x.second;
1849 }
1850};
1851
1852
1853/* Self-test to verify that each attribute exclusion is symmetric,
1854 meaning that if attribute A is encoded as incompatible with
1855 attribute B then the opposite relationship is also encoded.
1856 This test also detects most cases of misspelled attribute names
1857 in exclusions. */
1858
1859static void
1860test_attribute_exclusions ()
1861{
1862 /* Iterate over the array of attribute tables first (with TI0 as
1863 the index) and over the array of attribute_spec in each table
1864 (with SI0 as the index). */
1865 const size_t ntables = ARRAY_SIZE (attribute_tables);
1866
1867 /* Set of pairs of mutually exclusive attributes. */
1868 typedef hash_set<excl_pair, excl_hash_traits> exclusion_set;
1869 exclusion_set excl_set;
1870
1871 for (size_t ti0 = 0; ti0 != ntables; ++ti0)
1872 for (size_t s0 = 0; attribute_tables[ti0][s0].name; ++s0)
1873 {
1874 const attribute_spec::exclusions *excl
1875 = attribute_tables[ti0][s0].exclude;
1876
1877 /* Skip each attribute that doesn't define exclusions. */
1878 if (!excl)
1879 continue;
1880
1881 const char *attr_name = attribute_tables[ti0][s0].name;
1882
1883 /* Iterate over the set of exclusions for every attribute
1884 (with EI0 as the index) adding the exclusions defined
1885 for each to the set. */
1886 for (size_t ei0 = 0; excl[ei0].name; ++ei0)
1887 {
1888 const char *excl_name = excl[ei0].name;
1889
1890 if (!strcmp (attr_name, excl_name))
1891 continue;
1892
1893 excl_set.add (excl_pair (attr_name, excl_name));
1894 }
1895 }
1896
1897 /* Traverse the set of mutually exclusive pairs of attributes
1898 and verify that they are symmetric. */
1899 for (exclusion_set::iterator it = excl_set.begin ();
1900 it != excl_set.end ();
1901 ++it)
1902 {
1903 if (!excl_set.contains (excl_pair ((*it).second, (*it).first)))
1904 {
1905 /* An exclusion for an attribute has been found that
1906 doesn't have a corresponding exclusion in the opposite
1907 direction. */
1908 char desc[120];
1909 sprintf (desc, "'%s' attribute exclusion '%s' must be symmetric",
1910 (*it).first, (*it).second);
1911 fail (SELFTEST_LOCATION, desc);
1912 }
1913 }
1914}
1915
1916void
1917attribute_c_tests ()
1918{
1919 test_attribute_exclusions ();
1920}
1921
1922} /* namespace selftest */
1923
1924#endif /* CHECKING_P */