Branch data Line data Source code
1 : : /* Functions dealing with attribute handling, used by most front ends.
2 : : Copyright (C) 1992-2025 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify it under
7 : : the terms of the GNU General Public License as published by the Free
8 : : Software Foundation; either version 3, or (at your option) any later
9 : : version.
10 : :
11 : : GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 : : WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 : : FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 : : for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : #define INCLUDE_STRING
21 : : #include "config.h"
22 : : #include "system.h"
23 : : #include "coretypes.h"
24 : : #include "target.h"
25 : : #include "tree.h"
26 : : #include "stringpool.h"
27 : : #include "diagnostic-core.h"
28 : : #include "attribs.h"
29 : : #include "fold-const.h"
30 : : #include "ipa-strub.h"
31 : : #include "stor-layout.h"
32 : : #include "langhooks.h"
33 : : #include "plugin.h"
34 : : #include "selftest.h"
35 : : #include "hash-set.h"
36 : : #include "diagnostic.h"
37 : : #include "pretty-print.h"
38 : : #include "pretty-print-markup.h"
39 : : #include "tree-pretty-print.h"
40 : : #include "intl.h"
41 : : #include "gcc-urlifier.h"
42 : : #include "cgraph.h"
43 : :
44 : : /* Table of the tables of attributes (common, language, format, machine)
45 : : searched. */
46 : : static array_slice<const scoped_attribute_specs *const> attribute_tables[2];
47 : :
48 : : /* Substring representation. */
49 : :
50 : : struct substring
51 : : {
52 : : const char *str;
53 : : int length;
54 : : };
55 : :
56 : : /* Simple hash function to avoid need to scan whole string. */
57 : :
58 : : static inline hashval_t
59 : 13076547143 : substring_hash (const char *str, int l)
60 : : {
61 : 13076547143 : return str[0] + str[l - 1] * 256 + l * 65536;
62 : : }
63 : :
64 : : /* Used for attribute_hash. */
65 : :
66 : : struct attribute_hasher : nofree_ptr_hash <attribute_spec>
67 : : {
68 : : typedef substring *compare_type;
69 : : static inline hashval_t hash (const attribute_spec *);
70 : : static inline bool equal (const attribute_spec *, const substring *);
71 : : };
72 : :
73 : : inline hashval_t
74 : 11068945721 : attribute_hasher::hash (const attribute_spec *spec)
75 : : {
76 : 11068945721 : const int l = strlen (spec->name);
77 : 11068945721 : return substring_hash (spec->name, l);
78 : : }
79 : :
80 : : inline bool
81 : 13536114200 : attribute_hasher::equal (const attribute_spec *spec, const substring *str)
82 : : {
83 : 13536114200 : return (strncmp (spec->name, str->str, str->length) == 0
84 : 13536114200 : && !spec->name[str->length]);
85 : : }
86 : :
87 : : /* Scoped attribute name representation. */
88 : :
89 : : struct scoped_attributes
90 : : {
91 : : const char *ns;
92 : : vec<attribute_spec> attributes;
93 : : hash_table<attribute_hasher> *attribute_hash;
94 : : /* True if we should not warn about unknown attributes in this NS. */
95 : : bool ignored_p;
96 : : };
97 : :
98 : : /* The table of scope attributes. */
99 : : static vec<scoped_attributes> attributes_table;
100 : :
101 : : static scoped_attributes* find_attribute_namespace (const char*);
102 : : static void register_scoped_attribute (const struct attribute_spec *,
103 : : scoped_attributes *);
104 : : static const struct attribute_spec *lookup_scoped_attribute_spec (const_tree,
105 : : const_tree);
106 : :
107 : : static bool attributes_initialized = false;
108 : :
109 : : /* Do not use directly; go through get_gnu_namespace instead. */
110 : : static GTY(()) tree gnu_namespace_cache;
111 : :
112 : : /* Return the IDENTIFIER_NODE for the gnu namespace. */
113 : :
114 : : static tree
115 : 2777017102 : get_gnu_namespace ()
116 : : {
117 : 2777017102 : if (!gnu_namespace_cache)
118 : 288705 : gnu_namespace_cache = get_identifier ("gnu");
119 : 2777017102 : return gnu_namespace_cache;
120 : : }
121 : :
122 : : /* Insert SPECS into its namespace. IGNORED_P is true iff all unknown
123 : : attributes in this namespace should be ignored for the purposes of
124 : : -Wattributes. The function returns the namespace into which the
125 : : attributes have been registered. */
126 : :
127 : : scoped_attributes *
128 : 1412418 : register_scoped_attributes (const scoped_attribute_specs &specs,
129 : : bool ignored_p /*=false*/)
130 : : {
131 : 1412418 : scoped_attributes *result = NULL;
132 : :
133 : : /* See if we already have attributes in the namespace NS. */
134 : 1412418 : result = find_attribute_namespace (specs.ns);
135 : :
136 : 1412418 : if (result == NULL)
137 : : {
138 : : /* We don't have any namespace NS yet. Create one. */
139 : 808177 : scoped_attributes sa;
140 : :
141 : 808177 : if (attributes_table.is_empty ())
142 : 288870 : attributes_table.create (64);
143 : :
144 : 808177 : memset (&sa, 0, sizeof (sa));
145 : 808177 : sa.ns = specs.ns;
146 : 808177 : sa.attributes.create (64);
147 : 808177 : sa.ignored_p = ignored_p;
148 : 808177 : result = attributes_table.safe_push (sa);
149 : 808177 : result->attribute_hash = new hash_table<attribute_hasher> (200);
150 : : }
151 : : else
152 : 604241 : result->ignored_p |= ignored_p;
153 : :
154 : : /* Really add the attributes to their namespace now. */
155 : 42005965 : for (const attribute_spec &attribute : specs.attributes)
156 : : {
157 : 40593547 : result->attributes.safe_push (attribute);
158 : 40593547 : register_scoped_attribute (&attribute, result);
159 : : }
160 : :
161 : 1412418 : gcc_assert (result != NULL);
162 : :
163 : 1412418 : return result;
164 : : }
165 : :
166 : : /* Return the namespace which name is NS, NULL if none exist. */
167 : :
168 : : static scoped_attributes*
169 : 1968684504 : find_attribute_namespace (const char* ns)
170 : : {
171 : 7709348717 : for (scoped_attributes &iter : attributes_table)
172 : 3772004341 : if (ns == iter.ns
173 : 3747971727 : || (iter.ns != NULL
174 : 1948046044 : && ns != NULL
175 : 1948046044 : && !strcmp (iter.ns, ns)))
176 : : return &iter;
177 : : return NULL;
178 : : }
179 : :
180 : : /* Make some sanity checks on the attribute tables. */
181 : :
182 : : static void
183 : 288851 : check_attribute_tables (void)
184 : : {
185 : 288851 : hash_set<pair_hash<nofree_string_hash, nofree_string_hash>> names;
186 : :
187 : 866553 : for (auto scoped_array : attribute_tables)
188 : 1989859 : for (auto scoped_attributes : scoped_array)
189 : 42002188 : for (const attribute_spec &attribute : scoped_attributes->attributes)
190 : : {
191 : : /* The name must not begin and end with __. */
192 : 40590031 : const char *name = attribute.name;
193 : 40590031 : int len = strlen (name);
194 : :
195 : 40590031 : gcc_assert (!(name[0] == '_' && name[1] == '_'
196 : : && name[len - 1] == '_' && name[len - 2] == '_'));
197 : :
198 : : /* The minimum and maximum lengths must be consistent. */
199 : 40590031 : gcc_assert (attribute.min_length >= 0);
200 : :
201 : 40590031 : gcc_assert (attribute.max_length == -1
202 : : || attribute.max_length >= attribute.min_length);
203 : :
204 : : /* An attribute cannot require both a DECL and a TYPE. */
205 : 40590031 : gcc_assert (!attribute.decl_required
206 : : || !attribute.type_required);
207 : :
208 : : /* If an attribute requires a function type, in particular
209 : : it requires a type. */
210 : 40590031 : gcc_assert (!attribute.function_type_required
211 : : || attribute.type_required);
212 : :
213 : : /* Check that no name occurs more than once. Names that
214 : : begin with '*' are exempt, and may be overridden. */
215 : 40590031 : const char *ns = scoped_attributes->ns;
216 : 42569389 : if (name[0] != '*' && names.add ({ ns ? ns : "", name }))
217 : 0 : gcc_unreachable ();
218 : : }
219 : 288851 : }
220 : :
221 : : /* Used to stash pointers to allocated memory so that we can free them at
222 : : the end of parsing of all TUs. */
223 : : static vec<attribute_spec *> ignored_attributes_table;
224 : :
225 : : /* Parse arguments V of -Wno-attributes=.
226 : : Currently we accept:
227 : : vendor::attr
228 : : vendor::
229 : : This functions also registers the parsed attributes so that we don't
230 : : warn that we don't recognize them. */
231 : :
232 : : void
233 : 288914 : handle_ignored_attributes_option (vec<char *> *v)
234 : : {
235 : 288914 : if (v == nullptr)
236 : : return;
237 : :
238 : 330 : for (auto opt : v)
239 : : {
240 : 184 : char *cln = strstr (opt, "::");
241 : : /* We don't accept '::attr'. */
242 : 184 : if (cln == nullptr || cln == opt)
243 : : {
244 : 0 : auto_diagnostic_group d;
245 : 0 : error ("wrong argument to ignored attributes");
246 : 0 : inform (input_location, "valid format is %<ns::attr%> or %<ns::%>");
247 : 0 : continue;
248 : 0 : }
249 : 184 : const char *vendor_start = opt;
250 : 184 : ptrdiff_t vendor_len = cln - opt;
251 : 184 : const char *attr_start = cln + 2;
252 : : /* This could really use rawmemchr :(. */
253 : 184 : ptrdiff_t attr_len = strchr (attr_start, '\0') - attr_start;
254 : : /* Verify that they look valid. */
255 : 501 : auto valid_p = [](const char *const s, ptrdiff_t len) {
256 : 317 : bool ok = false;
257 : :
258 : 1596 : for (int i = 0; i < len; ++i)
259 : 1287 : if (ISALNUM (s[i]))
260 : : ok = true;
261 : 182 : else if (s[i] != '_')
262 : : return false;
263 : :
264 : : return ok;
265 : : };
266 : 184 : if (!valid_p (vendor_start, vendor_len))
267 : : {
268 : 12 : error ("wrong argument to ignored attributes");
269 : 12 : continue;
270 : : }
271 : 172 : canonicalize_attr_name (vendor_start, vendor_len);
272 : : /* We perform all this hijinks so that we don't have to copy OPT. */
273 : 172 : tree vendor_id = get_identifier_with_length (vendor_start, vendor_len);
274 : 172 : array_slice<const attribute_spec> attrs;
275 : : /* In the "vendor::" case, we should ignore *any* attribute coming
276 : : from this attribute namespace. */
277 : 172 : if (attr_len > 0)
278 : : {
279 : 133 : if (!valid_p (attr_start, attr_len))
280 : : {
281 : 8 : error ("wrong argument to ignored attributes");
282 : 24 : continue;
283 : : }
284 : 125 : canonicalize_attr_name (attr_start, attr_len);
285 : 125 : tree attr_id = get_identifier_with_length (attr_start, attr_len);
286 : 125 : const char *attr = IDENTIFIER_POINTER (attr_id);
287 : : /* If we've already seen this vendor::attr, ignore it. Attempting to
288 : : register it twice would lead to a crash. */
289 : 125 : if (lookup_scoped_attribute_spec (vendor_id, attr_id))
290 : 16 : continue;
291 : : /* Create a table with extra attributes which we will register.
292 : : We can't free it here, so squirrel away the pointers. */
293 : 109 : attribute_spec *table = new attribute_spec {
294 : : attr, 0, -2, false, false, false, false, nullptr, nullptr
295 : 109 : };
296 : 109 : ignored_attributes_table.safe_push (table);
297 : 109 : attrs = { table, 1 };
298 : : }
299 : 148 : const scoped_attribute_specs scoped_specs = {
300 : 148 : IDENTIFIER_POINTER (vendor_id), { attrs }
301 : 148 : };
302 : 148 : register_scoped_attributes (scoped_specs, attrs.empty ());
303 : : }
304 : : }
305 : :
306 : : /* Free data we might have allocated when adding extra attributes. */
307 : :
308 : : void
309 : 281408 : free_attr_data ()
310 : : {
311 : 281583 : for (auto x : ignored_attributes_table)
312 : 109 : delete x;
313 : 281408 : ignored_attributes_table.release ();
314 : 281408 : }
315 : :
316 : : /* Initialize attribute tables, and make some sanity checks if checking is
317 : : enabled. */
318 : :
319 : : void
320 : 1099012 : init_attributes (void)
321 : : {
322 : 1099012 : if (attributes_initialized)
323 : : return;
324 : :
325 : 288870 : attribute_tables[0] = lang_hooks.attribute_table;
326 : 288870 : attribute_tables[1] = targetm.attribute_table;
327 : :
328 : 288870 : if (flag_checking)
329 : 288851 : check_attribute_tables ();
330 : :
331 : 866610 : for (auto scoped_array : attribute_tables)
332 : 1990010 : for (auto scoped_attributes : scoped_array)
333 : 1412270 : register_scoped_attributes (*scoped_attributes);
334 : :
335 : 288870 : vec<char *> *ignored = (vec<char *> *) flag_ignored_attributes;
336 : 288870 : handle_ignored_attributes_option (ignored);
337 : :
338 : 288870 : invoke_plugin_callbacks (PLUGIN_ATTRIBUTES, NULL);
339 : 288870 : attributes_initialized = true;
340 : : }
341 : :
342 : : /* Insert a single ATTR into the attribute table. */
343 : :
344 : : void
345 : 1 : register_attribute (const struct attribute_spec *attr)
346 : : {
347 : 1 : register_scoped_attribute (attr, find_attribute_namespace ("gnu"));
348 : 1 : }
349 : :
350 : : /* Insert a single attribute ATTR into a namespace of attributes. */
351 : :
352 : : static void
353 : 40593548 : register_scoped_attribute (const struct attribute_spec *attr,
354 : : scoped_attributes *name_space)
355 : : {
356 : 40593548 : struct substring str;
357 : 40593548 : attribute_spec **slot;
358 : :
359 : 40593548 : gcc_assert (attr != NULL && name_space != NULL);
360 : :
361 : 40593548 : gcc_assert (name_space->attribute_hash);
362 : :
363 : 40593548 : str.str = attr->name;
364 : 40593548 : str.length = strlen (str.str);
365 : :
366 : : /* Attribute names in the table must be in the form 'text' and not
367 : : in the form '__text__'. */
368 : 40593548 : gcc_checking_assert (!canonicalize_attr_name (str.str, str.length));
369 : :
370 : 40593548 : slot = name_space->attribute_hash
371 : 40593548 : ->find_slot_with_hash (&str, substring_hash (str.str, str.length),
372 : : INSERT);
373 : 40593548 : gcc_assert (!*slot || attr->name[0] == '*');
374 : 40593548 : *slot = CONST_CAST (struct attribute_spec *, attr);
375 : 40593548 : }
376 : :
377 : : /* Return the spec for the scoped attribute with namespace NS and
378 : : name NAME. */
379 : :
380 : : static const struct attribute_spec *
381 : 1967271359 : lookup_scoped_attribute_spec (const_tree ns, const_tree name)
382 : : {
383 : 1967271359 : struct substring attr;
384 : 1967271359 : scoped_attributes *attrs;
385 : :
386 : 3911115275 : const char *ns_str = (ns != NULL_TREE) ? IDENTIFIER_POINTER (ns) : NULL;
387 : :
388 : 1967271359 : attrs = find_attribute_namespace (ns_str);
389 : :
390 : 1967271359 : if (attrs == NULL)
391 : : return NULL;
392 : :
393 : 1967007874 : attr.str = IDENTIFIER_POINTER (name);
394 : 1967007874 : attr.length = IDENTIFIER_LENGTH (name);
395 : 1967007874 : return attrs->attribute_hash->find_with_hash (&attr,
396 : : substring_hash (attr.str,
397 : 1967007874 : attr.length));
398 : : }
399 : :
400 : : /* Return the spec for the attribute named NAME. If NAME is a TREE_LIST,
401 : : it also specifies the attribute namespace. */
402 : :
403 : : const struct attribute_spec *
404 : 369234505 : lookup_attribute_spec (const_tree name)
405 : : {
406 : 369234505 : tree ns;
407 : 369234505 : if (TREE_CODE (name) == TREE_LIST)
408 : : {
409 : 16886425 : ns = TREE_PURPOSE (name);
410 : 16886425 : name = TREE_VALUE (name);
411 : : }
412 : : else
413 : 352348080 : ns = get_gnu_namespace ();
414 : 369234505 : return lookup_scoped_attribute_spec (ns, name);
415 : : }
416 : :
417 : :
418 : : /* Return the namespace of the attribute ATTR. This accessor works on
419 : : GNU and C++11 (scoped) attributes. On GNU attributes,
420 : : it returns an identifier tree for the string "gnu".
421 : :
422 : : Please read the comments of cxx11_attribute_p to understand the
423 : : format of attributes. */
424 : :
425 : : tree
426 : 2459971456 : get_attribute_namespace (const_tree attr)
427 : : {
428 : 2459971456 : if (cxx11_attribute_p (attr))
429 : 35302434 : return TREE_PURPOSE (TREE_PURPOSE (attr));
430 : 2424669022 : return get_gnu_namespace ();
431 : : }
432 : :
433 : : /* Check LAST_DECL and NODE of the same symbol for attributes that are
434 : : recorded in SPEC to be mutually exclusive with ATTRNAME, diagnose
435 : : them, and return true if any have been found. NODE can be a DECL
436 : : or a TYPE. */
437 : :
438 : : static bool
439 : 349605797 : diag_attr_exclusions (tree last_decl, tree node, tree attrname,
440 : : const attribute_spec *spec)
441 : : {
442 : 349605797 : const attribute_spec::exclusions *excl = spec->exclude;
443 : :
444 : 349605797 : tree_code code = TREE_CODE (node);
445 : :
446 : 349605797 : if ((code == FUNCTION_DECL && !excl->function
447 : 0 : && (!excl->type || !spec->affects_type_identity))
448 : 349605797 : || (code == VAR_DECL && !excl->variable
449 : : && (!excl->type || !spec->affects_type_identity))
450 : 349581914 : || (((code == TYPE_DECL || RECORD_OR_UNION_TYPE_P (node)) && !excl->type)))
451 : : return false;
452 : :
453 : : /* True if an attribute that's mutually exclusive with ATTRNAME
454 : : has been found. */
455 : 349312192 : bool found = false;
456 : :
457 : 349312192 : if (last_decl && last_decl != node && TREE_TYPE (last_decl) != node)
458 : : {
459 : : /* Check both the last DECL and its type for conflicts with
460 : : the attribute being added to the current decl or type. */
461 : 1844832 : found |= diag_attr_exclusions (last_decl, last_decl, attrname, spec);
462 : 1844832 : tree decl_type = TREE_TYPE (last_decl);
463 : 1844832 : found |= diag_attr_exclusions (last_decl, decl_type, attrname, spec);
464 : : }
465 : :
466 : : /* NODE is either the current DECL to which the attribute is being
467 : : applied or its TYPE. For the former, consider the attributes on
468 : : both the DECL and its type. */
469 : 349312192 : tree attrs[2];
470 : :
471 : 349312192 : if (DECL_P (node))
472 : : {
473 : 342168467 : attrs[0] = DECL_ATTRIBUTES (node);
474 : 342168467 : if (TREE_TYPE (node))
475 : 342168464 : attrs[1] = TYPE_ATTRIBUTES (TREE_TYPE (node));
476 : : else
477 : : /* TREE_TYPE can be NULL e.g. while processing attributes on
478 : : enumerators. */
479 : 3 : attrs[1] = NULL_TREE;
480 : : }
481 : : else
482 : : {
483 : 7143725 : attrs[0] = TYPE_ATTRIBUTES (node);
484 : 7143725 : attrs[1] = NULL_TREE;
485 : : }
486 : :
487 : : /* Iterate over the mutually exclusive attribute names and verify
488 : : that the symbol doesn't contain it. */
489 : 1047936576 : for (unsigned i = 0; i != ARRAY_SIZE (attrs); ++i)
490 : : {
491 : 698624384 : if (!attrs[i])
492 : 613260937 : continue;
493 : :
494 : 266615962 : for ( ; excl->name; ++excl)
495 : : {
496 : : /* Avoid checking the attribute against itself. */
497 : 181252515 : if (is_attribute_p (excl->name, attrname))
498 : 181252100 : continue;
499 : :
500 : 167611027 : if (!lookup_attribute (excl->name, attrs[i]))
501 : 167609430 : continue;
502 : :
503 : : /* An exclusion may apply either to a function declaration,
504 : : type declaration, or a field/variable declaration, or
505 : : any subset of the three. */
506 : 1597 : if (TREE_CODE (node) == FUNCTION_DECL
507 : 353 : && !excl->function)
508 : 0 : continue;
509 : :
510 : 1597 : if (TREE_CODE (node) == TYPE_DECL
511 : 0 : && !excl->type)
512 : 0 : continue;
513 : :
514 : 1597 : if ((TREE_CODE (node) == FIELD_DECL
515 : 1597 : || VAR_P (node))
516 : 1203 : && !excl->variable)
517 : 1182 : continue;
518 : :
519 : 415 : found = true;
520 : :
521 : : /* Print a note? */
522 : 415 : bool note = last_decl != NULL_TREE;
523 : 415 : auto_diagnostic_group d;
524 : 415 : if (TREE_CODE (node) == FUNCTION_DECL
525 : 415 : && fndecl_built_in_p (node))
526 : 0 : note &= warning (OPT_Wattributes,
527 : : "ignoring attribute %qE in declaration of "
528 : : "a built-in function %qD because it conflicts "
529 : : "with attribute %qs",
530 : 0 : attrname, node, excl->name);
531 : : else
532 : 415 : note &= warning (OPT_Wattributes,
533 : : "ignoring attribute %qE because "
534 : : "it conflicts with attribute %qs",
535 : 415 : attrname, excl->name);
536 : :
537 : 415 : if (note)
538 : 180 : inform (DECL_SOURCE_LOCATION (last_decl),
539 : : "previous declaration here");
540 : 415 : }
541 : : }
542 : :
543 : : return found;
544 : : }
545 : :
546 : : /* Return true iff we should not complain about unknown attributes
547 : : coming from the attribute namespace NS. This is the case for
548 : : the -Wno-attributes=ns:: command-line option. */
549 : :
550 : : static bool
551 : 772 : attr_namespace_ignored_p (tree ns)
552 : : {
553 : 772 : if (ns == NULL_TREE)
554 : : return false;
555 : 726 : scoped_attributes *r = find_attribute_namespace (IDENTIFIER_POINTER (ns));
556 : 726 : return r && r->ignored_p;
557 : : }
558 : :
559 : : /* Return true if the attribute ATTR should not be warned about. */
560 : :
561 : : bool
562 : 1595440817 : attribute_ignored_p (tree attr)
563 : : {
564 : 1595440817 : if (!cxx11_attribute_p (attr))
565 : : return false;
566 : 15927723 : if (tree ns = get_attribute_namespace (attr))
567 : : {
568 : 2699072 : const attribute_spec *as = lookup_attribute_spec (TREE_PURPOSE (attr));
569 : 2699072 : if (as == NULL && attr_namespace_ignored_p (ns))
570 : : return true;
571 : 2699005 : if (as && as->max_length == -2)
572 : : return true;
573 : : }
574 : : return false;
575 : : }
576 : :
577 : : /* Like above, but takes an attribute_spec AS, which must be nonnull. */
578 : :
579 : : bool
580 : 42684 : attribute_ignored_p (const attribute_spec *const as)
581 : : {
582 : 42684 : return as->max_length == -2;
583 : : }
584 : :
585 : : /* Return true if the ATTRS chain contains at least one attribute which
586 : : is not ignored. */
587 : :
588 : : bool
589 : 1405 : any_nonignored_attribute_p (tree attrs)
590 : : {
591 : 1477 : for (tree attr = attrs; attr; attr = TREE_CHAIN (attr))
592 : 1450 : if (!attribute_ignored_p (attr))
593 : : return true;
594 : :
595 : : return false;
596 : : }
597 : :
598 : : /* See whether LIST contains at least one instance of attribute ATTR
599 : : (possibly with different arguments). Return the first such attribute
600 : : if so, otherwise return null. */
601 : :
602 : : static tree
603 : 1599935594 : find_same_attribute (const_tree attr, tree list)
604 : : {
605 : 1599935594 : if (list == NULL_TREE)
606 : : return NULL_TREE;
607 : 827228709 : tree ns = get_attribute_namespace (attr);
608 : 827228709 : tree name = get_attribute_name (attr);
609 : 1654457418 : return private_lookup_attribute (ns ? IDENTIFIER_POINTER (ns) : nullptr,
610 : 827228709 : IDENTIFIER_POINTER (name),
611 : 827058488 : ns ? IDENTIFIER_LENGTH (ns) : 0,
612 : 1654457418 : IDENTIFIER_LENGTH (name), list);
613 : : }
614 : :
615 : : /* Process the attributes listed in ATTRIBUTES and install them in *NODE,
616 : : which is either a DECL (including a TYPE_DECL) or a TYPE. If a DECL,
617 : : it should be modified in place; if a TYPE, a copy should be created
618 : : unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS. FLAGS gives further
619 : : information, in the form of a bitwise OR of flags in enum attribute_flags
620 : : from tree.h. Depending on these flags, some attributes may be
621 : : returned to be applied at a later stage (for example, to apply
622 : : a decl attribute to the declaration rather than to its type). */
623 : :
624 : : tree
625 : 1828678317 : decl_attributes (tree *node, tree attributes, int flags,
626 : : tree last_decl /* = NULL_TREE */)
627 : : {
628 : 1828678317 : tree returned_attrs = NULL_TREE;
629 : :
630 : 1828678317 : if (TREE_TYPE (*node) == error_mark_node || attributes == error_mark_node)
631 : : return NULL_TREE;
632 : :
633 : 1828677977 : if (!attributes_initialized)
634 : 288870 : init_attributes ();
635 : :
636 : 1828677977 : auto_urlify_attributes sentinel;
637 : :
638 : : /* If this is a function and the user used #pragma GCC optimize, add the
639 : : options to the attribute((optimize(...))) list. */
640 : 1828677977 : if (TREE_CODE (*node) == FUNCTION_DECL && current_optimize_pragma)
641 : : {
642 : 339466 : tree cur_attr = lookup_attribute ("optimize", attributes);
643 : 339466 : tree opts = copy_list (current_optimize_pragma);
644 : :
645 : 339466 : if (! cur_attr)
646 : 339463 : attributes
647 : 339463 : = tree_cons (get_identifier ("optimize"), opts, attributes);
648 : : else
649 : 3 : TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
650 : : }
651 : :
652 : 1828677977 : if (TREE_CODE (*node) == FUNCTION_DECL
653 : 1110576539 : && (optimization_current_node != optimization_default_node
654 : 1110519615 : || target_option_current_node != target_option_default_node)
655 : 1853015246 : && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node))
656 : : {
657 : 24289800 : DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node) = optimization_current_node;
658 : : /* Don't set DECL_FUNCTION_SPECIFIC_TARGET for targets that don't
659 : : support #pragma GCC target or target attribute. */
660 : 24289800 : if (target_option_default_node)
661 : : {
662 : 24289800 : tree cur_tree
663 : 24289800 : = build_target_option_node (&global_options, &global_options_set);
664 : 24289800 : tree old_tree = DECL_FUNCTION_SPECIFIC_TARGET (*node);
665 : 24289800 : if (!old_tree)
666 : 24289800 : old_tree = target_option_default_node;
667 : : /* The changes on optimization options can cause the changes in
668 : : target options, update it accordingly if it's changed. */
669 : 24289800 : if (old_tree != cur_tree)
670 : 24260435 : DECL_FUNCTION_SPECIFIC_TARGET (*node) = cur_tree;
671 : : }
672 : : }
673 : :
674 : : /* If this is a function and the user used #pragma GCC target, add the
675 : : options to the attribute((target(...))) list. */
676 : 1828677977 : if (TREE_CODE (*node) == FUNCTION_DECL
677 : 1110576539 : && current_target_pragma
678 : 1852418665 : && targetm.target_option.valid_attribute_p (*node,
679 : : get_identifier ("target"),
680 : : current_target_pragma, 0))
681 : : {
682 : 23740688 : tree cur_attr = lookup_attribute ("target", attributes);
683 : 23740688 : tree opts = copy_list (current_target_pragma);
684 : :
685 : 23740688 : if (! cur_attr)
686 : 23740687 : attributes = tree_cons (get_identifier ("target"), opts, attributes);
687 : : else
688 : 1 : TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
689 : : }
690 : :
691 : : /* A "naked" function attribute implies "noinline" and "noclone" for
692 : : those targets that support it. */
693 : 1828677977 : if (TREE_CODE (*node) == FUNCTION_DECL
694 : 1110576539 : && attributes
695 : 566205460 : && lookup_attribute ("naked", attributes) != NULL
696 : 78 : && lookup_attribute_spec (get_identifier ("naked"))
697 : 1828678055 : && lookup_attribute ("noipa", attributes) == NULL)
698 : 78 : attributes = tree_cons (get_identifier ("noipa"), NULL, attributes);
699 : :
700 : : /* A "noipa" function attribute implies "noinline", "noclone" and "no_icf"
701 : : for those targets that support it. */
702 : 1828677977 : if (TREE_CODE (*node) == FUNCTION_DECL
703 : 1110576539 : && attributes
704 : 566205460 : && lookup_attribute ("noipa", attributes) != NULL
705 : 1828696512 : && lookup_attribute_spec (get_identifier ("noipa")))
706 : : {
707 : 18535 : if (lookup_attribute ("noinline", attributes) == NULL)
708 : 17831 : attributes = tree_cons (get_identifier ("noinline"), NULL, attributes);
709 : :
710 : 18535 : if (lookup_attribute ("noclone", attributes) == NULL)
711 : 18209 : attributes = tree_cons (get_identifier ("noclone"), NULL, attributes);
712 : :
713 : 18535 : if (lookup_attribute ("no_icf", attributes) == NULL)
714 : 18525 : attributes = tree_cons (get_identifier ("no_icf"), NULL, attributes);
715 : : }
716 : :
717 : 1828677977 : targetm.insert_attributes (*node, &attributes);
718 : :
719 : : /* Note that attributes on the same declaration are not necessarily
720 : : in the same order as in the source. */
721 : 3426714705 : for (tree attr = attributes; attr; attr = TREE_CHAIN (attr))
722 : : {
723 : 1598036729 : tree ns = get_attribute_namespace (attr);
724 : 1598036729 : tree name = get_attribute_name (attr);
725 : 1598036729 : tree args = TREE_VALUE (attr);
726 : 1598036729 : tree *anode = node;
727 : 1598036729 : const struct attribute_spec *spec
728 : 1598036729 : = lookup_scoped_attribute_spec (ns, name);
729 : 1598036729 : int fn_ptr_quals = 0;
730 : 1598036729 : tree fn_ptr_tmp = NULL_TREE;
731 : 1598036729 : const bool cxx11_attr_p = cxx11_attribute_p (attr);
732 : :
733 : 1598036729 : if (spec == NULL)
734 : : {
735 : 2577677 : if (!(flags & (int) ATTR_FLAG_BUILT_IN)
736 : 2577677 : && !attr_namespace_ignored_p (ns))
737 : : {
738 : 555 : if (ns == NULL_TREE || !cxx11_attr_p)
739 : 200 : warning (OPT_Wattributes, "%qE attribute directive ignored",
740 : : name);
741 : 184 : else if ((flag_openmp || flag_openmp_simd)
742 : 171 : && is_attribute_p ("omp", ns)
743 : 171 : && is_attribute_p ("directive", name)
744 : 526 : && (VAR_P (*node)
745 : 20 : || TREE_CODE (*node) == FUNCTION_DECL))
746 : 2597864 : continue;
747 : : else
748 : 192 : warning (OPT_Wattributes,
749 : : "%<%E::%E%> scoped attribute directive ignored",
750 : : ns, name);
751 : : }
752 : 2577513 : continue;
753 : : }
754 : : else
755 : : {
756 : 1595459052 : int nargs = list_length (args);
757 : 1595459052 : if (nargs < spec->min_length
758 : 1595459018 : || (spec->max_length >= 0
759 : 1520581535 : && nargs > spec->max_length))
760 : : {
761 : 79 : auto_diagnostic_group d;
762 : 79 : error ("wrong number of arguments specified for %qE attribute",
763 : : name);
764 : 79 : if (spec->max_length < 0)
765 : 0 : inform (input_location, "expected %i or more, found %i",
766 : 0 : spec->min_length, nargs);
767 : 79 : else if (spec->min_length == spec->max_length)
768 : 42 : inform (input_location, "expected %i, found %i",
769 : : spec->min_length, nargs);
770 : : else
771 : 37 : inform (input_location, "expected between %i and %i, found %i",
772 : : spec->min_length, spec->max_length, nargs);
773 : 79 : continue;
774 : 79 : }
775 : : }
776 : 1595458973 : gcc_assert (is_attribute_p (spec->name, name));
777 : :
778 : 1595458973 : if (spec->decl_required && !DECL_P (*anode))
779 : : {
780 : 18790 : if (flags & ((int) ATTR_FLAG_DECL_NEXT
781 : : | (int) ATTR_FLAG_FUNCTION_NEXT
782 : : | (int) ATTR_FLAG_ARRAY_NEXT))
783 : : {
784 : : /* Pass on this attribute to be tried again. */
785 : 18553 : tree attr = tree_cons (name, args, NULL_TREE);
786 : 18553 : returned_attrs = chainon (returned_attrs, attr);
787 : 18553 : continue;
788 : 18553 : }
789 : : else
790 : : {
791 : 237 : warning (OPT_Wattributes, "%qE attribute does not apply to types",
792 : : name);
793 : 237 : continue;
794 : : }
795 : : }
796 : :
797 : : /* If we require a type, but were passed a decl, set up to make a
798 : : new type and update the one in the decl. ATTR_FLAG_TYPE_IN_PLACE
799 : : would have applied if we'd been passed a type, but we cannot modify
800 : : the decl's type in place here. */
801 : 1595440183 : if (spec->type_required && DECL_P (*anode))
802 : : {
803 : 243079592 : anode = &TREE_TYPE (*anode);
804 : 243079592 : flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
805 : : }
806 : :
807 : 1595440183 : if (spec->function_type_required
808 : 242003205 : && !FUNC_OR_METHOD_TYPE_P (*anode))
809 : : {
810 : 833 : if (TREE_CODE (*anode) == POINTER_TYPE
811 : 833 : && FUNC_OR_METHOD_TYPE_P (TREE_TYPE (*anode)))
812 : : {
813 : : /* OK, this is a bit convoluted. We can't just make a copy
814 : : of the pointer type and modify its TREE_TYPE, because if
815 : : we change the attributes of the target type the pointer
816 : : type needs to have a different TYPE_MAIN_VARIANT. So we
817 : : pull out the target type now, frob it as appropriate, and
818 : : rebuild the pointer type later.
819 : :
820 : : This would all be simpler if attributes were part of the
821 : : declarator, grumble grumble. */
822 : 298 : fn_ptr_tmp = TREE_TYPE (*anode);
823 : 298 : fn_ptr_quals = TYPE_QUALS (*anode);
824 : 298 : anode = &fn_ptr_tmp;
825 : 298 : flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
826 : : }
827 : 535 : else if (flags & (int) ATTR_FLAG_FUNCTION_NEXT)
828 : : {
829 : : /* Pass on this attribute to be tried again. */
830 : 461 : tree attr = tree_cons (name, args, NULL_TREE);
831 : 461 : returned_attrs = chainon (returned_attrs, attr);
832 : 461 : continue;
833 : 461 : }
834 : :
835 : 446 : if (TREE_CODE (*anode) != FUNCTION_TYPE
836 : 372 : && TREE_CODE (*anode) != METHOD_TYPE)
837 : : {
838 : 74 : warning (OPT_Wattributes,
839 : : "%qE attribute only applies to function types",
840 : : name);
841 : 74 : continue;
842 : : }
843 : : }
844 : :
845 : 1595439682 : if (TYPE_P (*anode)
846 : 244660551 : && (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
847 : 1595881817 : && COMPLETE_TYPE_P (*anode))
848 : : {
849 : 34 : warning (OPT_Wattributes, "type attributes ignored after type is already defined");
850 : 34 : continue;
851 : : }
852 : :
853 : 1595439614 : bool no_add_attrs = false;
854 : :
855 : : /* Check for exclusions with other attributes on the current
856 : : declation as well as the last declaration of the same
857 : : symbol already processed (if one exists). Detect and
858 : : reject incompatible attributes. */
859 : 1595439614 : bool built_in = flags & ATTR_FLAG_BUILT_IN;
860 : 1595439614 : if (spec->exclude
861 : 342043762 : && (flag_checking || !built_in)
862 : 1937463880 : && !error_operand_p (last_decl))
863 : : {
864 : : /* Always check attributes on user-defined functions.
865 : : Check them on built-ins only when -fchecking is set.
866 : : Ignore __builtin_unreachable -- it's both const and
867 : : noreturn. */
868 : :
869 : 342024265 : if (!built_in
870 : 232228435 : || !DECL_P (*anode)
871 : 227377869 : || DECL_BUILT_IN_CLASS (*anode) != BUILT_IN_NORMAL
872 : 569402134 : || (DECL_FUNCTION_CODE (*anode) != BUILT_IN_UNREACHABLE
873 : 226696229 : && DECL_FUNCTION_CODE (*anode) != BUILT_IN_UNREACHABLE_TRAP
874 : 226014604 : && (DECL_FUNCTION_CODE (*anode)
875 : : != BUILT_IN_UBSAN_HANDLE_BUILTIN_UNREACHABLE)))
876 : : {
877 : 340617982 : bool no_add = diag_attr_exclusions (last_decl, *anode, name, spec);
878 : 340617982 : if (!no_add && anode != node)
879 : 5298151 : no_add = diag_attr_exclusions (last_decl, *node, name, spec);
880 : 340617982 : no_add_attrs |= no_add;
881 : : }
882 : : }
883 : :
884 : 1595440201 : if (no_add_attrs
885 : : /* Don't add attributes registered just for -Wno-attributes=foo::bar
886 : : purposes. */
887 : 1595439614 : || attribute_ignored_p (attr))
888 : 587 : continue;
889 : :
890 : 1595439027 : if (spec->handler != NULL)
891 : : {
892 : 1595179634 : int cxx11_flag = (cxx11_attr_p ? ATTR_FLAG_CXX11 : 0);
893 : :
894 : : /* Pass in an array of the current declaration followed
895 : : by the last pushed/merged declaration if one exists.
896 : : For calls that modify the type attributes of a DECL
897 : : and for which *ANODE is *NODE's type, also pass in
898 : : the DECL as the third element to use in diagnostics.
899 : : If the handler changes CUR_AND_LAST_DECL[0] replace
900 : : *ANODE with its value. */
901 : 1595179634 : tree cur_and_last_decl[3] = { *anode, last_decl };
902 : 1595179634 : if (anode != node && DECL_P (*node))
903 : 242830672 : cur_and_last_decl[2] = *node;
904 : :
905 : 1595179634 : tree ret = (spec->handler) (cur_and_last_decl, name, args,
906 : : flags|cxx11_flag, &no_add_attrs);
907 : :
908 : : /* Fix up typedefs clobbered by attribute handlers. */
909 : 1595179634 : if (TREE_CODE (*node) == TYPE_DECL
910 : 1311155 : && anode == &TREE_TYPE (*node)
911 : 568071 : && DECL_ORIGINAL_TYPE (*node)
912 : 561 : && TYPE_NAME (*anode) == *node
913 : 1595179638 : && TYPE_NAME (cur_and_last_decl[0]) != *node)
914 : : {
915 : 4 : tree t = cur_and_last_decl[0];
916 : 4 : DECL_ORIGINAL_TYPE (*node) = t;
917 : 4 : tree tt = build_variant_type_copy (t);
918 : 4 : cur_and_last_decl[0] = tt;
919 : 4 : TREE_TYPE (*node) = tt;
920 : 4 : TYPE_NAME (tt) = *node;
921 : : }
922 : :
923 : 1595179634 : if (*anode != cur_and_last_decl[0])
924 : : {
925 : : /* Even if !spec->function_type_required, allow the attribute
926 : : handler to request the attribute to be applied to the function
927 : : type, rather than to the function pointer type, by setting
928 : : cur_and_last_decl[0] to the function type. */
929 : 1691520 : if (!fn_ptr_tmp
930 : 1691502 : && POINTER_TYPE_P (*anode)
931 : 10743 : && TREE_TYPE (*anode) == cur_and_last_decl[0]
932 : 1691654 : && FUNC_OR_METHOD_TYPE_P (TREE_TYPE (*anode)))
933 : : {
934 : 134 : fn_ptr_tmp = TREE_TYPE (*anode);
935 : 134 : fn_ptr_quals = TYPE_QUALS (*anode);
936 : 134 : anode = &fn_ptr_tmp;
937 : : }
938 : 1691520 : *anode = cur_and_last_decl[0];
939 : : }
940 : :
941 : 1595179634 : if (ret == error_mark_node)
942 : : {
943 : 302 : warning (OPT_Wattributes, "%qE attribute ignored", name);
944 : 302 : no_add_attrs = true;
945 : : }
946 : : else
947 : 1595179332 : returned_attrs = chainon (ret, returned_attrs);
948 : : }
949 : :
950 : : /* Layout the decl in case anything changed. */
951 : 1595439027 : if (spec->type_required && DECL_P (*node)
952 : : && (VAR_P (*node)
953 : : || TREE_CODE (*node) == PARM_DECL
954 : : || TREE_CODE (*node) == RESULT_DECL))
955 : 3386 : relayout_decl (*node);
956 : :
957 : 1595439027 : if (!no_add_attrs)
958 : : {
959 : 1591328059 : tree old_attrs;
960 : 1591328059 : tree a;
961 : :
962 : 1591328059 : if (DECL_P (*anode))
963 : 1349978019 : old_attrs = DECL_ATTRIBUTES (*anode);
964 : : else
965 : 241350040 : old_attrs = TYPE_ATTRIBUTES (*anode);
966 : :
967 : 1591328059 : for (a = find_same_attribute (attr, old_attrs);
968 : 1598265993 : a != NULL_TREE;
969 : 6937934 : a = find_same_attribute (attr, TREE_CHAIN (a)))
970 : 12826700 : if (attribute_value_equal (a, attr))
971 : : break;
972 : :
973 : 1591328059 : if (a == NULL_TREE)
974 : : {
975 : : /* This attribute isn't already in the list. */
976 : 1585439293 : tree r;
977 : : /* Preserve the C++11 form. */
978 : 1585439293 : if (cxx11_attr_p)
979 : 15292322 : r = tree_cons (build_tree_list (ns, name), args, old_attrs);
980 : : else
981 : 1570146971 : r = tree_cons (name, args, old_attrs);
982 : :
983 : 1585439293 : if (DECL_P (*anode))
984 : 1344089573 : DECL_ATTRIBUTES (*anode) = r;
985 : 241349720 : else if (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
986 : : {
987 : 166470 : TYPE_ATTRIBUTES (*anode) = r;
988 : : /* If this is the main variant, also push the attributes
989 : : out to the other variants. */
990 : 166470 : if (*anode == TYPE_MAIN_VARIANT (*anode))
991 : : {
992 : 438258 : for (tree variant = *anode; variant;
993 : 271788 : variant = TYPE_NEXT_VARIANT (variant))
994 : : {
995 : 271788 : if (TYPE_ATTRIBUTES (variant) == old_attrs)
996 : 210636 : TYPE_ATTRIBUTES (variant)
997 : 105318 : = TYPE_ATTRIBUTES (*anode);
998 : 166470 : else if (!find_same_attribute
999 : 166470 : (attr, TYPE_ATTRIBUTES (variant)))
1000 : 0 : TYPE_ATTRIBUTES (variant) = tree_cons
1001 : 0 : (name, args, TYPE_ATTRIBUTES (variant));
1002 : : }
1003 : : }
1004 : : }
1005 : : else
1006 : 241183250 : *anode = build_type_attribute_variant (*anode, r);
1007 : : }
1008 : : }
1009 : :
1010 : 1595439027 : if (fn_ptr_tmp)
1011 : : {
1012 : : /* Rebuild the function pointer type and put it in the
1013 : : appropriate place. */
1014 : 432 : fn_ptr_tmp = build_pointer_type (fn_ptr_tmp);
1015 : 432 : if (fn_ptr_quals)
1016 : 22 : fn_ptr_tmp = build_qualified_type (fn_ptr_tmp, fn_ptr_quals);
1017 : 432 : if (DECL_P (*node))
1018 : 413 : TREE_TYPE (*node) = fn_ptr_tmp;
1019 : : else
1020 : : {
1021 : 19 : gcc_assert (TREE_CODE (*node) == POINTER_TYPE);
1022 : 19 : *node = fn_ptr_tmp;
1023 : : }
1024 : : }
1025 : : }
1026 : :
1027 : 1828677976 : return returned_attrs;
1028 : 1828677976 : }
1029 : :
1030 : : /* Return TRUE iff ATTR has been parsed by the front-end as a C++-11
1031 : : attribute.
1032 : :
1033 : : When G++ parses a C++11 attribute, it is represented as
1034 : : a TREE_LIST which TREE_PURPOSE is itself a TREE_LIST. TREE_PURPOSE
1035 : : (TREE_PURPOSE (ATTR)) is the namespace of the attribute, and the
1036 : : TREE_VALUE (TREE_PURPOSE (ATTR)) is its non-qualified name. Please
1037 : : use get_attribute_namespace and get_attribute_name to retrieve the
1038 : : namespace and name of the attribute, as these accessors work with
1039 : : GNU attributes as well. */
1040 : :
1041 : : bool
1042 : 33268459320 : cxx11_attribute_p (const_tree attr)
1043 : : {
1044 : 33268459320 : if (attr == NULL_TREE
1045 : 33265730684 : || TREE_CODE (attr) != TREE_LIST)
1046 : : return false;
1047 : :
1048 : 33265730634 : return (TREE_CODE (TREE_PURPOSE (attr)) == TREE_LIST);
1049 : : }
1050 : :
1051 : : /* Return the name of the attribute ATTR. This accessor works on GNU
1052 : : and C++11 (scoped) attributes.
1053 : :
1054 : : Please read the comments of cxx11_attribute_p to understand the
1055 : : format of attributes. */
1056 : :
1057 : : tree
1058 : 27593539872 : get_attribute_name (const_tree attr)
1059 : : {
1060 : 27593539872 : if (cxx11_attribute_p (attr))
1061 : 1111586519 : return TREE_VALUE (TREE_PURPOSE (attr));
1062 : 26481953353 : return TREE_PURPOSE (attr);
1063 : : }
1064 : :
1065 : : /* Subroutine of set_method_tm_attributes. Apply TM attribute ATTR
1066 : : to the method FNDECL. */
1067 : :
1068 : : void
1069 : 3659 : apply_tm_attr (tree fndecl, tree attr)
1070 : : {
1071 : 3659 : decl_attributes (&TREE_TYPE (fndecl), tree_cons (attr, NULL, NULL), 0);
1072 : 3659 : }
1073 : :
1074 : : /* Makes a function attribute of the form NAME(ARG_NAME) and chains
1075 : : it to CHAIN. */
1076 : :
1077 : : tree
1078 : 435 : make_attribute (string_slice name, string_slice arg_name, tree chain)
1079 : : {
1080 : 435 : tree attr_name = get_identifier_with_length (name.begin (), name.size ());
1081 : 435 : tree attr_arg_name = build_string (arg_name.size (), arg_name.begin ());
1082 : 435 : tree attr_args = tree_cons (NULL_TREE, attr_arg_name, NULL_TREE);
1083 : 435 : tree attr = tree_cons (attr_name, attr_args, chain);
1084 : 435 : return attr;
1085 : : }
1086 : :
1087 : : /* Default implementation of TARGET_OPTION_FUNCTIONS_B_RESOLVABLE_FROM_A.
1088 : : Used to check very basically if DECL_B is callable from DECL_A.
1089 : : For now this checks if the version strings are the same. */
1090 : :
1091 : : bool
1092 : 375 : functions_b_resolvable_from_a (tree decl_a, tree decl_b,
1093 : : tree base ATTRIBUTE_UNUSED)
1094 : : {
1095 : 375 : const char *attr_name = TARGET_HAS_FMV_TARGET_ATTRIBUTE
1096 : : ? "target"
1097 : : : "target_version";
1098 : :
1099 : 375 : tree attr_a = lookup_attribute (attr_name, DECL_ATTRIBUTES (decl_a));
1100 : 375 : tree attr_b = lookup_attribute (attr_name, DECL_ATTRIBUTES (decl_b));
1101 : :
1102 : 375 : gcc_assert (attr_b);
1103 : 375 : if (!attr_a)
1104 : : return false;
1105 : :
1106 : 19 : return attribute_value_equal (attr_a, attr_b);
1107 : : }
1108 : :
1109 : : /* Comparator function to be used in qsort routine to sort attribute
1110 : : specification strings to "target". */
1111 : :
1112 : : static int
1113 : 7788 : attr_strcmp (const void *v1, const void *v2)
1114 : : {
1115 : 7788 : const char *c1 = *(char *const*)v1;
1116 : 7788 : const char *c2 = *(char *const*)v2;
1117 : 7788 : return strcmp (c1, c2);
1118 : : }
1119 : :
1120 : : /* ARGLIST is the argument to target attribute. This function tokenizes
1121 : : the TARGET_CLONES_ATTR_SEPARATOR separated arguments, sorts them and
1122 : : returns a string which is a unique identifier for the
1123 : : TARGET_CLONES_ATTR_SEPARATOR separated arguments. It also replaces
1124 : : non-identifier characters "=,-" with "_". */
1125 : :
1126 : : char *
1127 : 37841 : sorted_attr_string (tree arglist)
1128 : : {
1129 : 37841 : tree arg;
1130 : 37841 : size_t str_len_sum = 0;
1131 : 37841 : char **args = NULL;
1132 : 37841 : char *attr_str, *ret_str;
1133 : 37841 : char *attr = NULL;
1134 : 37841 : unsigned int argnum = 1;
1135 : 37841 : unsigned int i;
1136 : 37841 : static const char separator_str[] = { TARGET_CLONES_ATTR_SEPARATOR, 0 };
1137 : :
1138 : 75700 : for (arg = arglist; arg; arg = TREE_CHAIN (arg))
1139 : : {
1140 : 37859 : const char *str = TREE_STRING_POINTER (TREE_VALUE (arg));
1141 : 37859 : size_t len = strlen (str);
1142 : 37859 : str_len_sum += len + 1;
1143 : 37859 : if (arg != arglist)
1144 : 18 : argnum++;
1145 : 367879 : for (i = 0; i < strlen (str); i++)
1146 : 330020 : if (str[i] == TARGET_CLONES_ATTR_SEPARATOR)
1147 : 1929 : argnum++;
1148 : : }
1149 : :
1150 : 37841 : attr_str = XNEWVEC (char, str_len_sum);
1151 : 37841 : str_len_sum = 0;
1152 : 75700 : for (arg = arglist; arg; arg = TREE_CHAIN (arg))
1153 : : {
1154 : 37859 : const char *str = TREE_STRING_POINTER (TREE_VALUE (arg));
1155 : 37859 : size_t len = strlen (str);
1156 : 37859 : memcpy (attr_str + str_len_sum, str, len);
1157 : 75718 : attr_str[str_len_sum + len]
1158 : 37859 : = TREE_CHAIN (arg) ? TARGET_CLONES_ATTR_SEPARATOR : '\0';
1159 : 37859 : str_len_sum += len + 1;
1160 : : }
1161 : :
1162 : : /* Replace "=,-" with "_". */
1163 : 367879 : for (i = 0; i < strlen (attr_str); i++)
1164 : 330038 : if (attr_str[i] == '=' || attr_str[i]== '-')
1165 : 18961 : attr_str[i] = '_';
1166 : :
1167 : 37841 : if (argnum == 1)
1168 : : return attr_str;
1169 : :
1170 : 1947 : args = XNEWVEC (char *, argnum);
1171 : :
1172 : 1947 : i = 0;
1173 : 1947 : attr = strtok (attr_str, separator_str);
1174 : 7788 : while (attr != NULL)
1175 : : {
1176 : 3894 : args[i] = attr;
1177 : 3894 : i++;
1178 : 3894 : attr = strtok (NULL, separator_str);
1179 : : }
1180 : :
1181 : 1947 : qsort (args, argnum, sizeof (char *), attr_strcmp);
1182 : :
1183 : 1947 : ret_str = XNEWVEC (char, str_len_sum);
1184 : 1947 : str_len_sum = 0;
1185 : 5841 : for (i = 0; i < argnum; i++)
1186 : : {
1187 : 3894 : size_t len = strlen (args[i]);
1188 : 3894 : memcpy (ret_str + str_len_sum, args[i], len);
1189 : 3894 : ret_str[str_len_sum + len] = i < argnum - 1 ? '_' : '\0';
1190 : 3894 : str_len_sum += len + 1;
1191 : : }
1192 : :
1193 : 1947 : XDELETEVEC (args);
1194 : 1947 : XDELETEVEC (attr_str);
1195 : 1947 : return ret_str;
1196 : : }
1197 : :
1198 : : /* Make a dispatcher declaration for the multi-versioned function DECL.
1199 : : Calls to DECL function will be replaced with calls to the dispatcher
1200 : : by the front-end. Return the decl created. */
1201 : :
1202 : : tree
1203 : 198 : make_dispatcher_decl (const tree decl)
1204 : : {
1205 : 198 : tree fn_type = TREE_TYPE (decl);
1206 : 198 : tree func_type = build_function_type (TREE_TYPE (fn_type),
1207 : 198 : TYPE_ARG_TYPES (fn_type));
1208 : 198 : tree func_decl = build_fn_decl (IDENTIFIER_POINTER (DECL_NAME (decl)),
1209 : : func_type);
1210 : :
1211 : 198 : TREE_USED (func_decl) = 1;
1212 : 198 : DECL_CONTEXT (func_decl) = NULL_TREE;
1213 : 198 : DECL_INITIAL (func_decl) = error_mark_node;
1214 : 198 : DECL_ARTIFICIAL (func_decl) = 1;
1215 : : /* Mark this func as external, the resolver will flip it again if
1216 : : it gets generated. */
1217 : 198 : DECL_EXTERNAL (func_decl) = 1;
1218 : : /* This will be of type IFUNCs have to be externally visible. */
1219 : 198 : TREE_PUBLIC (func_decl) = 1;
1220 : 198 : TREE_NOTHROW (func_decl) = TREE_NOTHROW (decl);
1221 : :
1222 : : /* Set the decl name to avoid graph_node re-mangling it. */
1223 : 198 : SET_DECL_ASSEMBLER_NAME (func_decl, DECL_ASSEMBLER_NAME (decl));
1224 : :
1225 : 198 : cgraph_node *node = cgraph_node::get (decl);
1226 : 198 : gcc_assert (node);
1227 : 198 : cgraph_function_version_info *node_v = node->function_version ();
1228 : 198 : gcc_assert (node_v);
1229 : :
1230 : : /* Set flags on the cgraph_node for the new decl. */
1231 : 198 : cgraph_node *func_node = cgraph_node::get_create (func_decl);
1232 : 198 : func_node->dispatcher_function = true;
1233 : 198 : func_node->definition = true;
1234 : :
1235 : 198 : cgraph_function_version_info *func_v
1236 : 198 : = func_node->insert_new_function_version ();
1237 : 198 : func_v->next = node_v;
1238 : 198 : func_v->assembler_name = node_v->assembler_name;
1239 : :
1240 : : /* If the default node is from a target_clone, mark the dispatcher as from
1241 : : target_clone. */
1242 : 198 : func_node->is_target_clone = node->is_target_clone;
1243 : :
1244 : : /* Get the assembler name by mangling with the base assembler name. */
1245 : 198 : tree id = targetm.mangle_decl_assembler_name
1246 : 198 : (func_decl, func_v->assembler_name);
1247 : 198 : symtab->change_decl_assembler_name (func_decl, id);
1248 : :
1249 : 198 : return func_decl;
1250 : : }
1251 : :
1252 : : /* Returns true if DECL a multiversioned default.
1253 : : With the target attribute semantics, returns true if the function is marked
1254 : : as default with the target version.
1255 : : With the target_version attribute semantics, returns true if the function
1256 : : is either not annotated, annotated as default, or is a target_clone
1257 : : containing the default declaration. */
1258 : :
1259 : : bool
1260 : 8965 : is_function_default_version (const tree decl)
1261 : : {
1262 : 8965 : tree attr;
1263 : 8965 : if (TREE_CODE (decl) != FUNCTION_DECL)
1264 : : return false;
1265 : 8965 : if (TARGET_HAS_FMV_TARGET_ATTRIBUTE)
1266 : : {
1267 : 8965 : if (!DECL_FUNCTION_VERSIONED (decl))
1268 : : return false;
1269 : 7947 : attr = lookup_attribute ("target", DECL_ATTRIBUTES (decl));
1270 : 7947 : gcc_assert (attr);
1271 : : }
1272 : : else
1273 : : {
1274 : : if (lookup_attribute ("target_clones", DECL_ATTRIBUTES (decl)))
1275 : : {
1276 : : int num_defaults = 0;
1277 : : get_clone_versions (decl, &num_defaults);
1278 : : return num_defaults > 0;
1279 : : }
1280 : :
1281 : : attr = lookup_attribute ("target_version", DECL_ATTRIBUTES (decl));
1282 : : if (!attr)
1283 : : return true;
1284 : : }
1285 : 7947 : attr = TREE_VALUE (TREE_VALUE (attr));
1286 : 7947 : return (TREE_CODE (attr) == STRING_CST
1287 : 7947 : && strcmp (TREE_STRING_POINTER (attr), "default") == 0);
1288 : : }
1289 : :
1290 : : /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
1291 : : is ATTRIBUTE. */
1292 : :
1293 : : tree
1294 : 50671842 : build_decl_attribute_variant (tree ddecl, tree attribute)
1295 : : {
1296 : 50671842 : DECL_ATTRIBUTES (ddecl) = attribute;
1297 : 50671842 : return ddecl;
1298 : : }
1299 : :
1300 : : /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
1301 : : is ATTRIBUTE and its qualifiers are QUALS.
1302 : :
1303 : : Record such modified types already made so we don't make duplicates. */
1304 : :
1305 : : tree
1306 : 375333755 : build_type_attribute_qual_variant (tree otype, tree attribute, int quals)
1307 : : {
1308 : 375333755 : tree ttype = otype;
1309 : 375333755 : if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype), attribute))
1310 : : {
1311 : 252689540 : tree ntype;
1312 : :
1313 : : /* Building a distinct copy of a tagged type is inappropriate; it
1314 : : causes breakage in code that expects there to be a one-to-one
1315 : : relationship between a struct and its fields.
1316 : : build_duplicate_type is another solution (as used in
1317 : : handle_transparent_union_attribute), but that doesn't play well
1318 : : with the stronger C++ type identity model. */
1319 : 252689540 : if (RECORD_OR_UNION_TYPE_P (ttype)
1320 : 252689537 : || TREE_CODE (ttype) == ENUMERAL_TYPE)
1321 : : {
1322 : 3 : warning (OPT_Wattributes,
1323 : : "ignoring attributes applied to %qT after definition",
1324 : 3 : TYPE_MAIN_VARIANT (ttype));
1325 : 3 : return build_qualified_type (ttype, quals);
1326 : : }
1327 : :
1328 : 252689537 : ttype = build_qualified_type (ttype, TYPE_UNQUALIFIED);
1329 : 252689537 : if (lang_hooks.types.copy_lang_qualifiers
1330 : 252689537 : && otype != TYPE_MAIN_VARIANT (otype))
1331 : 8768650 : ttype = (lang_hooks.types.copy_lang_qualifiers
1332 : 8768650 : (ttype, TYPE_MAIN_VARIANT (otype)));
1333 : :
1334 : 252689537 : tree dtype = ntype = build_distinct_type_copy (ttype);
1335 : :
1336 : 252689537 : TYPE_ATTRIBUTES (ntype) = attribute;
1337 : : /* If the target-dependent attributes make NTYPE different from
1338 : : its canonical type, we will need to use structural equality
1339 : : checks for this type.
1340 : :
1341 : : We shouldn't get here for stripping attributes from a type;
1342 : : the no-attribute type might not need structural comparison. But
1343 : : we can if was discarded from type_hash_table. */
1344 : 252689537 : if (TYPE_STRUCTURAL_EQUALITY_P (ttype)
1345 : 252689537 : || !comp_type_attributes (ntype, ttype))
1346 : 5255417 : SET_TYPE_STRUCTURAL_EQUALITY (ntype);
1347 : :
1348 : 252689537 : hashval_t hash = type_hash_canon_hash (ntype);
1349 : 252689537 : ntype = type_hash_canon (hash, ntype);
1350 : :
1351 : 252689537 : if (ntype != dtype)
1352 : : /* This variant was already in the hash table, don't mess with
1353 : : TYPE_CANONICAL. */;
1354 : 60255426 : else if (TYPE_CANONICAL (ntype) == ntype)
1355 : 57890929 : TYPE_CANONICAL (ntype) = TYPE_CANONICAL (ttype);
1356 : :
1357 : 252689537 : ttype = build_qualified_type (ntype, quals);
1358 : 252689537 : if (lang_hooks.types.copy_lang_qualifiers
1359 : 252689537 : && otype != TYPE_MAIN_VARIANT (otype))
1360 : 8768650 : ttype = lang_hooks.types.copy_lang_qualifiers (ttype, otype);
1361 : : }
1362 : 122644215 : else if (TYPE_QUALS (ttype) != quals)
1363 : 830167 : ttype = build_qualified_type (ttype, quals);
1364 : :
1365 : : return ttype;
1366 : : }
1367 : :
1368 : : /* Compare two identifier nodes representing attributes.
1369 : : Return true if they are the same, false otherwise. */
1370 : :
1371 : : static bool
1372 : 74096777 : cmp_attrib_identifiers (const_tree attr1, const_tree attr2)
1373 : : {
1374 : : /* Make sure we're dealing with IDENTIFIER_NODEs. */
1375 : 74096777 : gcc_checking_assert (TREE_CODE (attr1) == IDENTIFIER_NODE
1376 : : && TREE_CODE (attr2) == IDENTIFIER_NODE);
1377 : :
1378 : : /* Identifiers can be compared directly for equality. */
1379 : 74096777 : if (attr1 == attr2)
1380 : : return true;
1381 : :
1382 : 112749630 : return cmp_attribs (IDENTIFIER_POINTER (attr1), IDENTIFIER_LENGTH (attr1),
1383 : 38652853 : IDENTIFIER_POINTER (attr2), IDENTIFIER_LENGTH (attr2));
1384 : : }
1385 : :
1386 : : /* Compare two constructor-element-type constants. Return 1 if the lists
1387 : : are known to be equal; otherwise return 0. */
1388 : :
1389 : : bool
1390 : 26356641 : simple_cst_list_equal (const_tree l1, const_tree l2)
1391 : : {
1392 : 40052434 : while (l1 != NULL_TREE && l2 != NULL_TREE)
1393 : : {
1394 : 29221287 : if (simple_cst_equal (TREE_VALUE (l1), TREE_VALUE (l2)) != 1)
1395 : : return false;
1396 : :
1397 : 13695793 : l1 = TREE_CHAIN (l1);
1398 : 13695793 : l2 = TREE_CHAIN (l2);
1399 : : }
1400 : :
1401 : 10831147 : return l1 == l2;
1402 : : }
1403 : :
1404 : : /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
1405 : : the same. */
1406 : :
1407 : : static bool
1408 : 0 : omp_declare_simd_clauses_equal (tree clauses1, tree clauses2)
1409 : : {
1410 : 0 : tree cl1, cl2;
1411 : 0 : for (cl1 = clauses1, cl2 = clauses2;
1412 : 0 : cl1 && cl2;
1413 : 0 : cl1 = OMP_CLAUSE_CHAIN (cl1), cl2 = OMP_CLAUSE_CHAIN (cl2))
1414 : : {
1415 : 0 : if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_CODE (cl2))
1416 : : return false;
1417 : 0 : if (OMP_CLAUSE_CODE (cl1) != OMP_CLAUSE_SIMDLEN)
1418 : : {
1419 : 0 : if (simple_cst_equal (OMP_CLAUSE_DECL (cl1),
1420 : 0 : OMP_CLAUSE_DECL (cl2)) != 1)
1421 : : return false;
1422 : : }
1423 : 0 : switch (OMP_CLAUSE_CODE (cl1))
1424 : : {
1425 : 0 : case OMP_CLAUSE_ALIGNED:
1426 : 0 : if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1),
1427 : 0 : OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2)) != 1)
1428 : : return false;
1429 : : break;
1430 : 0 : case OMP_CLAUSE_LINEAR:
1431 : 0 : if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1),
1432 : 0 : OMP_CLAUSE_LINEAR_STEP (cl2)) != 1)
1433 : : return false;
1434 : : break;
1435 : 0 : case OMP_CLAUSE_SIMDLEN:
1436 : 0 : if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1),
1437 : 0 : OMP_CLAUSE_SIMDLEN_EXPR (cl2)) != 1)
1438 : : return false;
1439 : : default:
1440 : : break;
1441 : : }
1442 : : }
1443 : : return true;
1444 : : }
1445 : :
1446 : :
1447 : : /* Compare two attributes for their value identity. Return true if the
1448 : : attribute values are known to be equal; otherwise return false. */
1449 : :
1450 : : bool
1451 : 47844172 : attribute_value_equal (const_tree attr1, const_tree attr2)
1452 : : {
1453 : 47844172 : if (TREE_VALUE (attr1) == TREE_VALUE (attr2))
1454 : : return true;
1455 : :
1456 : 32732767 : if (TREE_VALUE (attr1) != NULL_TREE
1457 : 30538251 : && TREE_CODE (TREE_VALUE (attr1)) == TREE_LIST
1458 : 30538236 : && TREE_VALUE (attr2) != NULL_TREE
1459 : 61761359 : && TREE_CODE (TREE_VALUE (attr2)) == TREE_LIST)
1460 : : {
1461 : : /* Handle attribute format. */
1462 : 29028592 : if (is_attribute_p ("format", get_attribute_name (attr1)))
1463 : : {
1464 : 3113432 : attr1 = TREE_VALUE (attr1);
1465 : 3113432 : attr2 = TREE_VALUE (attr2);
1466 : : /* Compare the archetypes (printf/scanf/strftime/...). */
1467 : 3113432 : if (!cmp_attrib_identifiers (TREE_VALUE (attr1), TREE_VALUE (attr2)))
1468 : : return false;
1469 : : /* Archetypes are the same. Compare the rest. */
1470 : 435036 : return (simple_cst_list_equal (TREE_CHAIN (attr1),
1471 : 870072 : TREE_CHAIN (attr2)) == 1);
1472 : : }
1473 : 51830320 : return (simple_cst_list_equal (TREE_VALUE (attr1),
1474 : 51830320 : TREE_VALUE (attr2)) == 1);
1475 : : }
1476 : :
1477 : 3704175 : if (TREE_VALUE (attr1)
1478 : 1509659 : && TREE_CODE (TREE_VALUE (attr1)) == OMP_CLAUSE
1479 : 0 : && TREE_VALUE (attr2)
1480 : 3704175 : && TREE_CODE (TREE_VALUE (attr2)) == OMP_CLAUSE)
1481 : 0 : return omp_declare_simd_clauses_equal (TREE_VALUE (attr1),
1482 : 0 : TREE_VALUE (attr2));
1483 : :
1484 : 3704175 : return (simple_cst_equal (TREE_VALUE (attr1), TREE_VALUE (attr2)) == 1);
1485 : : }
1486 : :
1487 : : /* Return 0 if the attributes for two types are incompatible, 1 if they
1488 : : are compatible, and 2 if they are nearly compatible (which causes a
1489 : : warning to be generated). */
1490 : : int
1491 : 992016118 : comp_type_attributes (const_tree type1, const_tree type2)
1492 : : {
1493 : 992016118 : const_tree a1 = TYPE_ATTRIBUTES (type1);
1494 : 992016118 : const_tree a2 = TYPE_ATTRIBUTES (type2);
1495 : 992016118 : const_tree a;
1496 : :
1497 : 992016118 : if (a1 == a2)
1498 : : return 1;
1499 : 563501056 : for (a = a1; a != NULL_TREE; a = TREE_CHAIN (a))
1500 : : {
1501 : 295661365 : const struct attribute_spec *as;
1502 : 295661365 : const_tree attr;
1503 : :
1504 : 295661365 : as = lookup_attribute_spec (TREE_PURPOSE (a));
1505 : 295661365 : if (!as || as->affects_type_identity == false)
1506 : 294169476 : continue;
1507 : :
1508 : 1491889 : attr = find_same_attribute (a, CONST_CAST_TREE (a2));
1509 : 1491889 : if (!attr || !attribute_value_equal (a, attr))
1510 : : break;
1511 : : }
1512 : 269326299 : if (!a)
1513 : : {
1514 : 304853781 : for (a = a2; a != NULL_TREE; a = TREE_CHAIN (a))
1515 : : {
1516 : 37020051 : const struct attribute_spec *as;
1517 : :
1518 : 37020051 : as = lookup_attribute_spec (TREE_PURPOSE (a));
1519 : 37020051 : if (!as || as->affects_type_identity == false)
1520 : 37008809 : continue;
1521 : :
1522 : 11242 : if (!find_same_attribute (a, CONST_CAST_TREE (a1)))
1523 : : break;
1524 : : /* We don't need to compare trees again, as we did this
1525 : : already in first loop. */
1526 : : }
1527 : : /* All types - affecting identity - are equal, so
1528 : : there is no need to call target hook for comparison. */
1529 : 267839691 : if (!a)
1530 : : return 1;
1531 : : }
1532 : 1492569 : if (lookup_attribute ("transaction_safe", CONST_CAST_TREE (a)))
1533 : : return 0;
1534 : 1488540 : if ((lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (type1)) != NULL)
1535 : 1488540 : ^ (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (type2)) != NULL))
1536 : : return 0;
1537 : 1488367 : int strub_ret = strub_comptypes (CONST_CAST_TREE (type1),
1538 : : CONST_CAST_TREE (type2));
1539 : 1488367 : if (strub_ret == 0)
1540 : : return strub_ret;
1541 : : /* As some type combinations - like default calling-convention - might
1542 : : be compatible, we have to call the target hook to get the final result. */
1543 : 1485849 : int target_ret = targetm.comp_type_attributes (type1, type2);
1544 : 1485849 : if (target_ret == 0)
1545 : : return target_ret;
1546 : 721799 : if (strub_ret == 2 || target_ret == 2)
1547 : : return 2;
1548 : 719817 : if (strub_ret == 1 && target_ret == 1)
1549 : : return 1;
1550 : 0 : gcc_unreachable ();
1551 : : }
1552 : :
1553 : : /* PREDICATE acts as a function of type:
1554 : :
1555 : : (const_tree attr, const attribute_spec *as) -> bool
1556 : :
1557 : : where ATTR is an attribute and AS is its possibly-null specification.
1558 : : Return a list of every attribute in attribute list ATTRS for which
1559 : : PREDICATE is true. Return ATTRS itself if PREDICATE returns true
1560 : : for every attribute. */
1561 : :
1562 : : template<typename Predicate>
1563 : : tree
1564 : 434135 : remove_attributes_matching (tree attrs, Predicate predicate)
1565 : : {
1566 : 434135 : tree new_attrs = NULL_TREE;
1567 : 434135 : tree *ptr = &new_attrs;
1568 : 434135 : const_tree start = attrs;
1569 : 823727 : for (const_tree attr = attrs; attr; attr = TREE_CHAIN (attr))
1570 : : {
1571 : 389592 : const attribute_spec *as = lookup_attribute_spec (TREE_PURPOSE (attr));
1572 : : const_tree end;
1573 : 389592 : if (!predicate (attr, as))
1574 : 374804 : end = attr;
1575 : 14788 : else if (start == attrs)
1576 : 14788 : continue;
1577 : : else
1578 : 0 : end = TREE_CHAIN (attr);
1579 : :
1580 : 374804 : for (; start != end; start = TREE_CHAIN (start))
1581 : : {
1582 : 0 : *ptr = tree_cons (TREE_PURPOSE (start),
1583 : 0 : TREE_VALUE (start), NULL_TREE);
1584 : 0 : TREE_CHAIN (*ptr) = NULL_TREE;
1585 : 0 : ptr = &TREE_CHAIN (*ptr);
1586 : : }
1587 : 374804 : start = TREE_CHAIN (attr);
1588 : : }
1589 : 434135 : gcc_assert (!start || start == attrs);
1590 : 434135 : return start ? attrs : new_attrs;
1591 : : }
1592 : :
1593 : : /* If VALUE is true, return the subset of ATTRS that affect type identity,
1594 : : otherwise return the subset of ATTRS that don't affect type identity. */
1595 : :
1596 : : tree
1597 : 374802 : affects_type_identity_attributes (tree attrs, bool value)
1598 : : {
1599 : 749606 : auto predicate = [value](const_tree, const attribute_spec *as) -> bool
1600 : : {
1601 : 374804 : return bool (as && as->affects_type_identity) == value;
1602 : 374802 : };
1603 : 374802 : return remove_attributes_matching (attrs, predicate);
1604 : : }
1605 : :
1606 : : /* Remove attributes that affect type identity from ATTRS unless the
1607 : : same attributes occur in OK_ATTRS. */
1608 : :
1609 : : tree
1610 : 59333 : restrict_type_identity_attributes_to (tree attrs, tree ok_attrs)
1611 : : {
1612 : 74121 : auto predicate = [ok_attrs](const_tree attr,
1613 : : const attribute_spec *as) -> bool
1614 : : {
1615 : 14788 : if (!as || !as->affects_type_identity)
1616 : : return true;
1617 : :
1618 : 0 : for (tree ok_attr = lookup_attribute (as->name, ok_attrs);
1619 : 0 : ok_attr;
1620 : 0 : ok_attr = lookup_attribute (as->name, TREE_CHAIN (ok_attr)))
1621 : 0 : if (simple_cst_equal (TREE_VALUE (ok_attr), TREE_VALUE (attr)) == 1)
1622 : : return true;
1623 : :
1624 : : return false;
1625 : 59333 : };
1626 : 59333 : return remove_attributes_matching (attrs, predicate);
1627 : : }
1628 : :
1629 : : /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
1630 : : is ATTRIBUTE.
1631 : :
1632 : : Record such modified types already made so we don't make duplicates. */
1633 : :
1634 : : tree
1635 : 367459509 : build_type_attribute_variant (tree ttype, tree attribute)
1636 : : {
1637 : 734919018 : return build_type_attribute_qual_variant (ttype, attribute,
1638 : 367459509 : TYPE_QUALS (ttype));
1639 : : }
1640 : :
1641 : : /* A variant of lookup_attribute() that can be used with an identifier
1642 : : as the first argument, and where the identifier can be either
1643 : : 'text' or '__text__'.
1644 : :
1645 : : Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
1646 : : return a pointer to the attribute's list element if the attribute
1647 : : is part of the list, or NULL_TREE if not found. If the attribute
1648 : : appears more than once, this only returns the first occurrence; the
1649 : : TREE_CHAIN of the return value should be passed back in if further
1650 : : occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
1651 : : can be in the form 'text' or '__text__'. */
1652 : : static tree
1653 : 298755084 : lookup_ident_attribute (tree attr_identifier, tree list)
1654 : : {
1655 : 298755084 : gcc_checking_assert (TREE_CODE (attr_identifier) == IDENTIFIER_NODE);
1656 : :
1657 : 334729541 : while (list)
1658 : : {
1659 : 70983345 : gcc_checking_assert (TREE_CODE (get_attribute_name (list))
1660 : : == IDENTIFIER_NODE);
1661 : :
1662 : 70983345 : if (cmp_attrib_identifiers (attr_identifier,
1663 : 70983345 : get_attribute_name (list)))
1664 : : /* Found it. */
1665 : : break;
1666 : 35974457 : list = TREE_CHAIN (list);
1667 : : }
1668 : :
1669 : 298755084 : return list;
1670 : : }
1671 : :
1672 : : /* Remove any instances of attribute ATTR_NAME in LIST and return the
1673 : : modified list. */
1674 : :
1675 : : tree
1676 : 101507356 : remove_attribute (const char *attr_name, tree list)
1677 : : {
1678 : 101507356 : tree *p;
1679 : 101507356 : gcc_checking_assert (attr_name[0] != '_');
1680 : :
1681 : 131419595 : for (p = &list; *p;)
1682 : : {
1683 : 29912239 : tree l = *p;
1684 : :
1685 : 29912239 : tree attr = get_attribute_name (l);
1686 : 29912239 : if (is_attribute_p (attr_name, attr))
1687 : 3314 : *p = TREE_CHAIN (l);
1688 : : else
1689 : 29908925 : p = &TREE_CHAIN (l);
1690 : : }
1691 : :
1692 : 101507356 : return list;
1693 : : }
1694 : :
1695 : : /* Similarly but also match namespace on the removed attributes.
1696 : : ATTR_NS "" stands for NULL or "gnu" namespace. */
1697 : :
1698 : : tree
1699 : 12094 : remove_attribute (const char *attr_ns, const char *attr_name, tree list)
1700 : : {
1701 : 12094 : tree *p;
1702 : 12094 : gcc_checking_assert (attr_name[0] != '_');
1703 : 12094 : gcc_checking_assert (attr_ns == NULL || attr_ns[0] != '_');
1704 : :
1705 : 24256 : for (p = &list; *p;)
1706 : : {
1707 : 12162 : tree l = *p;
1708 : :
1709 : 12162 : tree attr = get_attribute_name (l);
1710 : 12162 : if (is_attribute_p (attr_name, attr)
1711 : 12162 : && is_attribute_namespace_p (attr_ns, l))
1712 : : {
1713 : 12146 : *p = TREE_CHAIN (l);
1714 : 12146 : continue;
1715 : : }
1716 : 16 : p = &TREE_CHAIN (l);
1717 : : }
1718 : :
1719 : 12094 : return list;
1720 : : }
1721 : :
1722 : : /* Return an attribute list that is the union of a1 and a2. */
1723 : :
1724 : : tree
1725 : 182323739 : merge_attributes (tree a1, tree a2)
1726 : : {
1727 : 182323739 : tree attributes;
1728 : :
1729 : : /* Either one unset? Take the set one. */
1730 : :
1731 : 182323739 : if ((attributes = a1) == 0)
1732 : : attributes = a2;
1733 : :
1734 : : /* One that completely contains the other? Take it. */
1735 : :
1736 : 11928049 : else if (a2 != 0 && ! attribute_list_contained (a1, a2))
1737 : : {
1738 : 1582077 : if (attribute_list_contained (a2, a1))
1739 : : attributes = a2;
1740 : : else
1741 : : {
1742 : : /* Pick the longest list, and hang on the other list. */
1743 : :
1744 : 1192835 : if (list_length (a1) < list_length (a2))
1745 : 344031 : attributes = a2, a2 = a1;
1746 : :
1747 : 2720150 : for (; a2 != 0; a2 = TREE_CHAIN (a2))
1748 : : {
1749 : 1527315 : tree a;
1750 : 1527315 : for (a = lookup_ident_attribute (get_attribute_name (a2),
1751 : : attributes);
1752 : 2051294 : a != NULL_TREE && !attribute_value_equal (a, a2);
1753 : 523979 : a = lookup_ident_attribute (get_attribute_name (a2),
1754 : 523979 : TREE_CHAIN (a)))
1755 : : ;
1756 : 1527315 : if (a == NULL_TREE)
1757 : : {
1758 : 1193426 : a1 = copy_node (a2);
1759 : 1193426 : TREE_CHAIN (a1) = attributes;
1760 : 1193426 : attributes = a1;
1761 : : }
1762 : : }
1763 : : }
1764 : : }
1765 : 182323739 : return attributes;
1766 : : }
1767 : :
1768 : : /* Given types T1 and T2, merge their attributes and return
1769 : : the result. */
1770 : :
1771 : : tree
1772 : 127457601 : merge_type_attributes (tree t1, tree t2)
1773 : : {
1774 : 127457601 : return merge_attributes (TYPE_ATTRIBUTES (t1),
1775 : 127457601 : TYPE_ATTRIBUTES (t2));
1776 : : }
1777 : :
1778 : : /* Given decls OLDDECL and NEWDECL, merge their attributes and return
1779 : : the result. */
1780 : :
1781 : : tree
1782 : 54788275 : merge_decl_attributes (tree olddecl, tree newdecl)
1783 : : {
1784 : 54788275 : return merge_attributes (DECL_ATTRIBUTES (olddecl),
1785 : 54788275 : DECL_ATTRIBUTES (newdecl));
1786 : : }
1787 : :
1788 : : /* Duplicate all attributes with name NAME in ATTR list to *ATTRS if
1789 : : they are missing there. */
1790 : :
1791 : : void
1792 : 8008407 : duplicate_one_attribute (tree *attrs, tree attr, const char *name)
1793 : : {
1794 : 8008407 : attr = lookup_attribute (name, attr);
1795 : 8008407 : if (!attr)
1796 : : return;
1797 : 8960 : tree a = lookup_attribute (name, *attrs);
1798 : 26880 : while (attr)
1799 : : {
1800 : : tree a2;
1801 : 8960 : for (a2 = a; a2; a2 = lookup_attribute (name, TREE_CHAIN (a2)))
1802 : 0 : if (attribute_value_equal (attr, a2))
1803 : : break;
1804 : 8960 : if (!a2)
1805 : : {
1806 : 8960 : a2 = copy_node (attr);
1807 : 8960 : TREE_CHAIN (a2) = *attrs;
1808 : 8960 : *attrs = a2;
1809 : : }
1810 : 8960 : attr = lookup_attribute (name, TREE_CHAIN (attr));
1811 : : }
1812 : : }
1813 : :
1814 : : /* Duplicate all attributes from user DECL to the corresponding
1815 : : builtin that should be propagated. */
1816 : :
1817 : : void
1818 : 8008376 : copy_attributes_to_builtin (tree decl)
1819 : : {
1820 : 8008376 : tree b = builtin_decl_explicit (DECL_FUNCTION_CODE (decl));
1821 : 8008376 : if (b)
1822 : 8008376 : duplicate_one_attribute (&DECL_ATTRIBUTES (b),
1823 : 8008376 : DECL_ATTRIBUTES (decl), "omp declare simd");
1824 : 8008376 : }
1825 : :
1826 : : #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
1827 : :
1828 : : /* Specialization of merge_decl_attributes for various Windows targets.
1829 : :
1830 : : This handles the following situation:
1831 : :
1832 : : __declspec (dllimport) int foo;
1833 : : int foo;
1834 : :
1835 : : The second instance of `foo' nullifies the dllimport. */
1836 : :
1837 : : tree
1838 : : merge_dllimport_decl_attributes (tree old, tree new_tree)
1839 : : {
1840 : : tree a;
1841 : : int delete_dllimport_p = 1;
1842 : :
1843 : : /* What we need to do here is remove from `old' dllimport if it doesn't
1844 : : appear in `new'. dllimport behaves like extern: if a declaration is
1845 : : marked dllimport and a definition appears later, then the object
1846 : : is not dllimport'd. We also remove a `new' dllimport if the old list
1847 : : contains dllexport: dllexport always overrides dllimport, regardless
1848 : : of the order of declaration. */
1849 : : if (!VAR_OR_FUNCTION_DECL_P (new_tree))
1850 : : delete_dllimport_p = 0;
1851 : : else if (DECL_DLLIMPORT_P (new_tree)
1852 : : && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old)))
1853 : : {
1854 : : DECL_DLLIMPORT_P (new_tree) = 0;
1855 : : warning (OPT_Wattributes, "%q+D already declared with dllexport "
1856 : : "attribute: dllimport ignored", new_tree);
1857 : : }
1858 : : else if (DECL_DLLIMPORT_P (old) && !DECL_DLLIMPORT_P (new_tree))
1859 : : {
1860 : : /* Warn about overriding a symbol that has already been used, e.g.:
1861 : : extern int __attribute__ ((dllimport)) foo;
1862 : : int* bar () {return &foo;}
1863 : : int foo;
1864 : : */
1865 : : if (TREE_USED (old))
1866 : : {
1867 : : warning (0, "%q+D redeclared without dllimport attribute "
1868 : : "after being referenced with dll linkage", new_tree);
1869 : : /* If we have used a variable's address with dllimport linkage,
1870 : : keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
1871 : : decl may already have had TREE_CONSTANT computed.
1872 : : We still remove the attribute so that assembler code refers
1873 : : to '&foo rather than '_imp__foo'. */
1874 : : if (VAR_P (old) && TREE_ADDRESSABLE (old))
1875 : : DECL_DLLIMPORT_P (new_tree) = 1;
1876 : : }
1877 : :
1878 : : /* Let an inline definition silently override the external reference,
1879 : : but otherwise warn about attribute inconsistency. */
1880 : : else if (VAR_P (new_tree) || !DECL_DECLARED_INLINE_P (new_tree))
1881 : : warning (OPT_Wattributes, "%q+D redeclared without dllimport "
1882 : : "attribute: previous dllimport ignored", new_tree);
1883 : : }
1884 : : else
1885 : : delete_dllimport_p = 0;
1886 : :
1887 : : a = merge_attributes (DECL_ATTRIBUTES (old), DECL_ATTRIBUTES (new_tree));
1888 : :
1889 : : if (delete_dllimport_p)
1890 : : a = remove_attribute ("dllimport", a);
1891 : :
1892 : : return a;
1893 : : }
1894 : :
1895 : : /* Handle a "dllimport" or "dllexport" attribute; arguments as in
1896 : : struct attribute_spec.handler. */
1897 : :
1898 : : tree
1899 : : handle_dll_attribute (tree * pnode, tree name, tree args, int flags,
1900 : : bool *no_add_attrs)
1901 : : {
1902 : : tree node = *pnode;
1903 : : bool is_dllimport;
1904 : :
1905 : : /* These attributes may apply to structure and union types being created,
1906 : : but otherwise should pass to the declaration involved. */
1907 : : if (!DECL_P (node))
1908 : : {
1909 : : if (flags & ((int) ATTR_FLAG_DECL_NEXT | (int) ATTR_FLAG_FUNCTION_NEXT
1910 : : | (int) ATTR_FLAG_ARRAY_NEXT))
1911 : : {
1912 : : *no_add_attrs = true;
1913 : : return tree_cons (name, args, NULL_TREE);
1914 : : }
1915 : : if (TREE_CODE (node) == RECORD_TYPE
1916 : : || TREE_CODE (node) == UNION_TYPE)
1917 : : {
1918 : : node = TYPE_NAME (node);
1919 : : if (!node)
1920 : : return NULL_TREE;
1921 : : }
1922 : : else
1923 : : {
1924 : : warning (OPT_Wattributes, "%qE attribute ignored",
1925 : : name);
1926 : : *no_add_attrs = true;
1927 : : return NULL_TREE;
1928 : : }
1929 : : }
1930 : :
1931 : : if (!VAR_OR_FUNCTION_DECL_P (node) && TREE_CODE (node) != TYPE_DECL)
1932 : : {
1933 : : *no_add_attrs = true;
1934 : : warning (OPT_Wattributes, "%qE attribute ignored",
1935 : : name);
1936 : : return NULL_TREE;
1937 : : }
1938 : :
1939 : : if (TREE_CODE (node) == TYPE_DECL
1940 : : && TREE_CODE (TREE_TYPE (node)) != RECORD_TYPE
1941 : : && TREE_CODE (TREE_TYPE (node)) != UNION_TYPE)
1942 : : {
1943 : : *no_add_attrs = true;
1944 : : warning (OPT_Wattributes, "%qE attribute ignored",
1945 : : name);
1946 : : return NULL_TREE;
1947 : : }
1948 : :
1949 : : is_dllimport = is_attribute_p ("dllimport", name);
1950 : :
1951 : : /* Report error on dllimport ambiguities seen now before they cause
1952 : : any damage. */
1953 : : if (is_dllimport)
1954 : : {
1955 : : /* Honor any target-specific overrides. */
1956 : : if (!targetm.valid_dllimport_attribute_p (node))
1957 : : *no_add_attrs = true;
1958 : :
1959 : : else if (TREE_CODE (node) == FUNCTION_DECL
1960 : : && DECL_DECLARED_INLINE_P (node))
1961 : : {
1962 : : warning (OPT_Wattributes, "inline function %q+D declared as "
1963 : : "dllimport: attribute ignored", node);
1964 : : *no_add_attrs = true;
1965 : : }
1966 : : /* Like MS, treat definition of dllimported variables and
1967 : : non-inlined functions on declaration as syntax errors. */
1968 : : else if (TREE_CODE (node) == FUNCTION_DECL && DECL_INITIAL (node))
1969 : : {
1970 : : error ("function %q+D definition is marked dllimport", node);
1971 : : *no_add_attrs = true;
1972 : : }
1973 : :
1974 : : else if (VAR_P (node))
1975 : : {
1976 : : if (DECL_INITIAL (node))
1977 : : {
1978 : : error ("variable %q+D definition is marked dllimport",
1979 : : node);
1980 : : *no_add_attrs = true;
1981 : : }
1982 : :
1983 : : /* `extern' needn't be specified with dllimport.
1984 : : Specify `extern' now and hope for the best. Sigh. */
1985 : : DECL_EXTERNAL (node) = 1;
1986 : : /* Also, implicitly give dllimport'd variables declared within
1987 : : a function global scope, unless declared static. */
1988 : : if (current_function_decl != NULL_TREE && !TREE_STATIC (node))
1989 : : TREE_PUBLIC (node) = 1;
1990 : : /* Clear TREE_STATIC because DECL_EXTERNAL is set, unless
1991 : : it is a C++ static data member. */
1992 : : if (DECL_CONTEXT (node) == NULL_TREE
1993 : : || !RECORD_OR_UNION_TYPE_P (DECL_CONTEXT (node)))
1994 : : TREE_STATIC (node) = 0;
1995 : : }
1996 : :
1997 : : if (*no_add_attrs == false)
1998 : : DECL_DLLIMPORT_P (node) = 1;
1999 : : }
2000 : : else if (TREE_CODE (node) == FUNCTION_DECL
2001 : : && DECL_DECLARED_INLINE_P (node)
2002 : : && flag_keep_inline_dllexport)
2003 : : /* An exported function, even if inline, must be emitted. */
2004 : : DECL_EXTERNAL (node) = 0;
2005 : :
2006 : : /* Report error if symbol is not accessible at global scope. */
2007 : : if (!TREE_PUBLIC (node) && VAR_OR_FUNCTION_DECL_P (node))
2008 : : {
2009 : : error ("external linkage required for symbol %q+D because of "
2010 : : "%qE attribute", node, name);
2011 : : *no_add_attrs = true;
2012 : : }
2013 : :
2014 : : /* A dllexport'd entity must have default visibility so that other
2015 : : program units (shared libraries or the main executable) can see
2016 : : it. A dllimport'd entity must have default visibility so that
2017 : : the linker knows that undefined references within this program
2018 : : unit can be resolved by the dynamic linker. */
2019 : : if (!*no_add_attrs)
2020 : : {
2021 : : if (DECL_VISIBILITY_SPECIFIED (node)
2022 : : && DECL_VISIBILITY (node) != VISIBILITY_DEFAULT)
2023 : : error ("%qE implies default visibility, but %qD has already "
2024 : : "been declared with a different visibility",
2025 : : name, node);
2026 : : DECL_VISIBILITY (node) = VISIBILITY_DEFAULT;
2027 : : DECL_VISIBILITY_SPECIFIED (node) = 1;
2028 : : }
2029 : :
2030 : : return NULL_TREE;
2031 : : }
2032 : :
2033 : : #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
2034 : :
2035 : : /* Given two lists of attributes, return true if list l2 is
2036 : : equivalent to l1. */
2037 : :
2038 : : int
2039 : 4768984608 : attribute_list_equal (const_tree l1, const_tree l2)
2040 : : {
2041 : 4768984608 : if (l1 == l2)
2042 : : return 1;
2043 : :
2044 : 446914223 : return attribute_list_contained (l1, l2)
2045 : 706692081 : && attribute_list_contained (l2, l1);
2046 : : }
2047 : :
2048 : : /* Given two lists of attributes, return true if list L2 is
2049 : : completely contained within L1. */
2050 : : /* ??? This would be faster if attribute names were stored in a canonicalized
2051 : : form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
2052 : : must be used to show these elements are equivalent (which they are). */
2053 : : /* ??? It's not clear that attributes with arguments will always be handled
2054 : : correctly. */
2055 : :
2056 : : int
2057 : 642189308 : attribute_list_contained (const_tree l1, const_tree l2)
2058 : : {
2059 : 642189308 : const_tree t1, t2;
2060 : :
2061 : : /* First check the obvious, maybe the lists are identical. */
2062 : 642189308 : if (l1 == l2)
2063 : : return 1;
2064 : :
2065 : : /* Maybe the lists are similar. */
2066 : : for (t1 = l1, t2 = l2;
2067 : 1037050866 : t1 != 0 && t2 != 0
2068 : 444181232 : && get_attribute_name (t1) == get_attribute_name (t2)
2069 : 1455906342 : && TREE_VALUE (t1) == TREE_VALUE (t2);
2070 : 394892767 : t1 = TREE_CHAIN (t1), t2 = TREE_CHAIN (t2))
2071 : : ;
2072 : :
2073 : : /* Maybe the lists are equal. */
2074 : 642158099 : if (t1 == 0 && t2 == 0)
2075 : : return 1;
2076 : :
2077 : 296774165 : for (; t2 != 0; t2 = TREE_CHAIN (t2))
2078 : : {
2079 : 282000340 : const_tree attr;
2080 : : /* This CONST_CAST is okay because lookup_attribute does not
2081 : : modify its argument and the return value is assigned to a
2082 : : const_tree. */
2083 : 282000340 : for (attr = lookup_ident_attribute (get_attribute_name (t2),
2084 : : CONST_CAST_TREE (l1));
2085 : 296703790 : attr != NULL_TREE && !attribute_value_equal (t2, attr);
2086 : 14703450 : attr = lookup_ident_attribute (get_attribute_name (t2),
2087 : 14703450 : TREE_CHAIN (attr)))
2088 : : ;
2089 : :
2090 : 282000340 : if (attr == NULL_TREE)
2091 : : return 0;
2092 : : }
2093 : :
2094 : : return 1;
2095 : : }
2096 : :
2097 : : /* The backbone of lookup_attribute(). ATTR_LEN is the string length
2098 : : of ATTR_NAME, and LIST is not NULL_TREE.
2099 : :
2100 : : The function is called from lookup_attribute in order to optimize
2101 : : for size. */
2102 : :
2103 : : tree
2104 : 11853613476 : private_lookup_attribute (const char *attr_name, size_t attr_len, tree list)
2105 : : {
2106 : 32389540940 : while (list)
2107 : : {
2108 : 22078752733 : tree attr = get_attribute_name (list);
2109 : 22078752733 : size_t ident_len = IDENTIFIER_LENGTH (attr);
2110 : 22078752733 : if (cmp_attribs (attr_name, attr_len, IDENTIFIER_POINTER (attr),
2111 : : ident_len))
2112 : : break;
2113 : 20535927464 : list = TREE_CHAIN (list);
2114 : : }
2115 : :
2116 : 11853613476 : return list;
2117 : : }
2118 : :
2119 : : /* Similarly but with also attribute namespace. */
2120 : :
2121 : : tree
2122 : 898901435 : private_lookup_attribute (const char *attr_ns, const char *attr_name,
2123 : : size_t attr_ns_len, size_t attr_len, tree list)
2124 : : {
2125 : 2235870566 : while (list)
2126 : : {
2127 : 1350006534 : tree attr = get_attribute_name (list);
2128 : 1350006534 : size_t ident_len = IDENTIFIER_LENGTH (attr);
2129 : 1350006534 : if (cmp_attribs (attr_name, attr_len, IDENTIFIER_POINTER (attr),
2130 : : ident_len))
2131 : : {
2132 : 13037497 : tree ns = get_attribute_namespace (list);
2133 : 13037497 : if (ns == NULL_TREE)
2134 : : {
2135 : 12659 : if (attr_ns_len == 0)
2136 : : break;
2137 : : }
2138 : 13024838 : else if (attr_ns)
2139 : : {
2140 : 13024830 : ident_len = IDENTIFIER_LENGTH (ns);
2141 : 13024830 : if (attr_ns_len == 0)
2142 : : {
2143 : 2235890554 : if (cmp_attribs ("gnu", strlen ("gnu"),
2144 : 19988 : IDENTIFIER_POINTER (ns), ident_len))
2145 : : break;
2146 : : }
2147 : 2248875408 : else if (cmp_attribs (attr_ns, attr_ns_len,
2148 : 13004842 : IDENTIFIER_POINTER (ns), ident_len))
2149 : : break;
2150 : : }
2151 : : }
2152 : 1336969131 : list = TREE_CHAIN (list);
2153 : : }
2154 : :
2155 : 898901435 : return list;
2156 : : }
2157 : :
2158 : : /* Return true if the function decl or type NODE has been declared
2159 : : with attribute ANAME among attributes ATTRS. */
2160 : :
2161 : : static bool
2162 : 578011 : has_attribute (tree node, tree attrs, const char *aname)
2163 : : {
2164 : 578011 : if (!strcmp (aname, "const"))
2165 : : {
2166 : 8858 : if (DECL_P (node) && TREE_READONLY (node))
2167 : : return true;
2168 : : }
2169 : 569153 : else if (!strcmp (aname, "malloc"))
2170 : : {
2171 : 112519 : if (DECL_P (node) && DECL_IS_MALLOC (node))
2172 : : return true;
2173 : : }
2174 : 494168 : else if (!strcmp (aname, "noreturn"))
2175 : : {
2176 : 8858 : if (DECL_P (node) && TREE_THIS_VOLATILE (node))
2177 : : return true;
2178 : : }
2179 : 485310 : else if (!strcmp (aname, "nothrow"))
2180 : : {
2181 : 8858 : if (TREE_NOTHROW (node))
2182 : : return true;
2183 : : }
2184 : 476452 : else if (!strcmp (aname, "pure"))
2185 : : {
2186 : 13288 : if (DECL_P (node) && DECL_PURE_P (node))
2187 : : return true;
2188 : : }
2189 : :
2190 : 577124 : return lookup_attribute (aname, attrs);
2191 : : }
2192 : :
2193 : : /* Return the number of mismatched function or type attributes between
2194 : : the "template" function declaration TMPL and DECL. The word "template"
2195 : : doesn't necessarily refer to a C++ template but rather a declaration
2196 : : whose attributes should be matched by those on DECL. For a non-zero
2197 : : return value append the names of the mismatcheed attributes to OUTATTRS.
2198 : : ATTRLIST is a list of additional attributes that SPEC should be
2199 : : taken to ultimately be declared with. */
2200 : :
2201 : : unsigned
2202 : 1092180 : decls_mismatched_attributes (tree tmpl, tree decl, tree attrlist,
2203 : : const char* const blacklist[],
2204 : : auto_vec<const char *> &outattrs)
2205 : : {
2206 : 1092180 : if (TREE_CODE (tmpl) != FUNCTION_DECL)
2207 : : return 0;
2208 : :
2209 : : /* Avoid warning if either declaration or its type is deprecated. */
2210 : 617425 : if (TREE_DEPRECATED (tmpl)
2211 : 617425 : || TREE_DEPRECATED (decl))
2212 : : return 0;
2213 : :
2214 : 617425 : const tree tmpls[] = { tmpl, TREE_TYPE (tmpl) };
2215 : 617425 : const tree decls[] = { decl, TREE_TYPE (decl) };
2216 : :
2217 : 617425 : if (TREE_DEPRECATED (tmpls[1])
2218 : 617425 : || TREE_DEPRECATED (decls[1])
2219 : 617425 : || TREE_DEPRECATED (TREE_TYPE (tmpls[1]))
2220 : 1234850 : || TREE_DEPRECATED (TREE_TYPE (decls[1])))
2221 : : return 0;
2222 : :
2223 : 617416 : tree tmpl_attrs[] = { DECL_ATTRIBUTES (tmpl), TYPE_ATTRIBUTES (tmpls[1]) };
2224 : 617416 : tree decl_attrs[] = { DECL_ATTRIBUTES (decl), TYPE_ATTRIBUTES (decls[1]) };
2225 : :
2226 : 617416 : if (!decl_attrs[0])
2227 : 612403 : decl_attrs[0] = attrlist;
2228 : 5013 : else if (!decl_attrs[1])
2229 : 4978 : decl_attrs[1] = attrlist;
2230 : :
2231 : : /* Avoid warning if the template has no attributes. */
2232 : 617416 : if (!tmpl_attrs[0] && !tmpl_attrs[1])
2233 : : return 0;
2234 : :
2235 : : /* Avoid warning if either declaration contains an attribute on
2236 : : the white list below. */
2237 : 37512 : const char* const whitelist[] = {
2238 : : "error", "warning"
2239 : : };
2240 : :
2241 : 112494 : for (unsigned i = 0; i != 2; ++i)
2242 : 224979 : for (unsigned j = 0; j != ARRAY_SIZE (whitelist); ++j)
2243 : 149997 : if (lookup_attribute (whitelist[j], tmpl_attrs[i])
2244 : 149997 : || lookup_attribute (whitelist[j], decl_attrs[i]))
2245 : 21 : return 0;
2246 : :
2247 : : /* Put together a list of the black-listed attributes that the template
2248 : : is declared with and the declaration is not, in case it's not apparent
2249 : : from the most recent declaration of the template. */
2250 : : unsigned nattrs = 0;
2251 : :
2252 : 326502 : for (unsigned i = 0; blacklist[i]; ++i)
2253 : : {
2254 : : /* Attribute leaf only applies to extern functions. Avoid mentioning
2255 : : it when it's missing from a static declaration. */
2256 : 289011 : if (!TREE_PUBLIC (decl)
2257 : 667 : && !strcmp ("leaf", blacklist[i]))
2258 : 47 : continue;
2259 : :
2260 : 865857 : for (unsigned j = 0; j != 2; ++j)
2261 : : {
2262 : 577439 : if (!has_attribute (tmpls[j], tmpl_attrs[j], blacklist[i]))
2263 : 576893 : continue;
2264 : :
2265 : 546 : bool found = false;
2266 : 546 : unsigned kmax = 1 + !!decl_attrs[1];
2267 : 629 : for (unsigned k = 0; k != kmax; ++k)
2268 : : {
2269 : 572 : if (has_attribute (decls[k], decl_attrs[k], blacklist[i]))
2270 : : {
2271 : : found = true;
2272 : : break;
2273 : : }
2274 : : }
2275 : :
2276 : 546 : if (!found)
2277 : : {
2278 : 57 : outattrs.safe_push (blacklist[i]);
2279 : 57 : ++nattrs;
2280 : : }
2281 : :
2282 : : break;
2283 : : }
2284 : : }
2285 : :
2286 : : return nattrs;
2287 : : }
2288 : :
2289 : : /* Issue a warning for the declaration ALIAS for TARGET where ALIAS
2290 : : specifies either attributes that are incompatible with those of
2291 : : TARGET, or attributes that are missing and that declaring ALIAS
2292 : : with would benefit. */
2293 : :
2294 : : void
2295 : 5143 : maybe_diag_alias_attributes (tree alias, tree target)
2296 : : {
2297 : : /* Do not expect attributes to match between aliases and ifunc
2298 : : resolvers. There is no obvious correspondence between them. */
2299 : 5143 : if (lookup_attribute ("ifunc", DECL_ATTRIBUTES (alias)))
2300 : 126 : return;
2301 : :
2302 : 5021 : const char* const blacklist[] = {
2303 : : "alloc_align", "alloc_size", "cold", "const", "hot", "leaf", "malloc",
2304 : : "nonnull", "noreturn", "nothrow", "pure", "returns_nonnull",
2305 : : "returns_twice", NULL
2306 : : };
2307 : :
2308 : 5021 : if (warn_attribute_alias > 1)
2309 : : {
2310 : : /* With -Wattribute-alias=2 detect alias declarations that are more
2311 : : restrictive than their targets first. Those indicate potential
2312 : : codegen bugs. */
2313 : 4 : auto_vec<const char *> mismatches;
2314 : 4 : if (unsigned n = decls_mismatched_attributes (alias, target, NULL_TREE,
2315 : : blacklist, mismatches))
2316 : : {
2317 : 4 : auto_diagnostic_group d;
2318 : 4 : pp_markup::comma_separated_quoted_strings e (mismatches);
2319 : 4 : if (warning_n (DECL_SOURCE_LOCATION (alias),
2320 : 4 : OPT_Wattribute_alias_, n,
2321 : : "%qD specifies more restrictive attribute than "
2322 : : "its target %qD: %e",
2323 : : "%qD specifies more restrictive attributes than "
2324 : : "its target %qD: %e",
2325 : : alias, target, &e))
2326 : 3 : inform (DECL_SOURCE_LOCATION (target),
2327 : : "%qD target declared here", alias);
2328 : 4 : return;
2329 : 4 : }
2330 : 4 : }
2331 : :
2332 : : /* Detect alias declarations that are less restrictive than their
2333 : : targets. Those suggest potential optimization opportunities
2334 : : (solved by adding the missing attribute(s) to the alias). */
2335 : 5017 : auto_vec<const char *> mismatches;
2336 : 5017 : if (unsigned n = decls_mismatched_attributes (target, alias, NULL_TREE,
2337 : : blacklist, mismatches))
2338 : : {
2339 : 19 : auto_diagnostic_group d;
2340 : 19 : pp_markup::comma_separated_quoted_strings e (mismatches);
2341 : 19 : if (warning_n (DECL_SOURCE_LOCATION (alias),
2342 : 19 : OPT_Wmissing_attributes, n,
2343 : : "%qD specifies less restrictive attribute than "
2344 : : "its target %qD: %e",
2345 : : "%qD specifies less restrictive attributes than "
2346 : : "its target %qD: %e",
2347 : : alias, target, &e))
2348 : 10 : inform (DECL_SOURCE_LOCATION (target),
2349 : : "%qD target declared here", alias);
2350 : 19 : }
2351 : 5017 : }
2352 : :
2353 : : /* Initialize a mapping RWM for a call to a function declared with
2354 : : attribute access in ATTRS. Each attribute positional operand
2355 : : inserts one entry into the mapping with the operand number as
2356 : : the key. */
2357 : :
2358 : : void
2359 : 9268001 : init_attr_rdwr_indices (rdwr_map *rwm, tree attrs)
2360 : : {
2361 : 9268001 : if (!attrs)
2362 : : return;
2363 : :
2364 : 1315785 : for (tree access = attrs;
2365 : 8123628 : (access = lookup_attribute ("access", access));
2366 : 1315785 : access = TREE_CHAIN (access))
2367 : : {
2368 : : /* The TREE_VALUE of an attribute is a TREE_LIST whose TREE_VALUE
2369 : : is the attribute argument's value. */
2370 : 1315785 : tree mode = TREE_VALUE (access);
2371 : 1315785 : if (!mode)
2372 : : return;
2373 : :
2374 : : /* The (optional) list of VLA bounds. */
2375 : 1315785 : tree vblist = TREE_CHAIN (mode);
2376 : 1315785 : mode = TREE_VALUE (mode);
2377 : 1315785 : if (TREE_CODE (mode) != STRING_CST)
2378 : 0 : continue;
2379 : 1315785 : gcc_assert (TREE_CODE (mode) == STRING_CST);
2380 : :
2381 : 1315785 : if (vblist)
2382 : 531536 : vblist = nreverse (copy_list (TREE_VALUE (vblist)));
2383 : :
2384 : 2686302 : for (const char *m = TREE_STRING_POINTER (mode); *m; )
2385 : : {
2386 : 1370517 : attr_access acc = { };
2387 : :
2388 : : /* Skip the internal-only plus sign. */
2389 : 1370517 : if (*m == '+')
2390 : 38758 : ++m;
2391 : :
2392 : 1370517 : acc.str = m;
2393 : 1370517 : acc.mode = acc.from_mode_char (*m);
2394 : 1370517 : acc.sizarg = UINT_MAX;
2395 : :
2396 : 1370517 : const char *end;
2397 : 1370517 : acc.ptrarg = strtoul (++m, const_cast<char**>(&end), 10);
2398 : 1370517 : m = end;
2399 : :
2400 : 1370517 : if (*m == '[')
2401 : : {
2402 : : /* Forms containing the square bracket are internal-only
2403 : : (not specified by an attribute declaration), and used
2404 : : for various forms of array and VLA parameters. */
2405 : 586268 : acc.internal_p = true;
2406 : :
2407 : : /* Search to the closing bracket and look at the preceding
2408 : : code: it determines the form of the most significant
2409 : : bound of the array. Others prior to it encode the form
2410 : : of interior VLA bounds. They're not of interest here. */
2411 : 586268 : end = strchr (m, ']');
2412 : 586268 : const char *p = end;
2413 : 586268 : gcc_assert (p);
2414 : :
2415 : 1298675 : while (ISDIGIT (p[-1]))
2416 : 712407 : --p;
2417 : :
2418 : 586268 : if (ISDIGIT (*p))
2419 : : {
2420 : : /* A digit denotes a constant bound (as in T[3]). */
2421 : 504222 : acc.static_p = p[-1] == 's';
2422 : 504222 : acc.minsize = strtoull (p, NULL, 10);
2423 : : }
2424 : 82046 : else if (' ' == p[-1])
2425 : : {
2426 : : /* A space denotes an ordinary array of unspecified bound
2427 : : (as in T[]). */
2428 : : acc.minsize = 0;
2429 : : }
2430 : 2829 : else if ('*' == p[-1] || '$' == p[-1])
2431 : : {
2432 : : /* An asterisk denotes a VLA. When the closing bracket
2433 : : is followed by a comma and a dollar sign its bound is
2434 : : on the list. Otherwise it's a VLA with an unspecified
2435 : : bound. */
2436 : 2829 : acc.static_p = p[-2] == 's';
2437 : 2829 : acc.minsize = HOST_WIDE_INT_M1U;
2438 : : }
2439 : :
2440 : 586268 : m = end + 1;
2441 : : }
2442 : :
2443 : 1370517 : if (*m == ',')
2444 : : {
2445 : 647888 : ++m;
2446 : 668948 : do
2447 : : {
2448 : 668948 : if (*m == '$')
2449 : : {
2450 : 24333 : ++m;
2451 : 24333 : if (!acc.size && vblist)
2452 : : {
2453 : : /* Extract the list of VLA bounds for the current
2454 : : parameter, store it in ACC.SIZE, and advance
2455 : : to the list of bounds for the next VLA parameter.
2456 : : */
2457 : 3273 : acc.size = TREE_VALUE (vblist);
2458 : 3273 : vblist = TREE_CHAIN (vblist);
2459 : : }
2460 : : }
2461 : :
2462 : 668948 : if (ISDIGIT (*m))
2463 : : {
2464 : : /* Extract the positional argument. It's absent
2465 : : for VLAs whose bound doesn't name a function
2466 : : parameter. */
2467 : 645727 : unsigned pos = strtoul (m, const_cast<char**>(&end), 10);
2468 : 645727 : if (acc.sizarg == UINT_MAX)
2469 : 645606 : acc.sizarg = pos;
2470 : 645727 : m = end;
2471 : : }
2472 : : }
2473 : 668948 : while (*m == '$');
2474 : : }
2475 : :
2476 : 1370517 : acc.end = m;
2477 : :
2478 : 1370517 : bool existing;
2479 : 1370517 : auto &ref = rwm->get_or_insert (acc.ptrarg, &existing);
2480 : 1370517 : if (existing)
2481 : : {
2482 : : /* Merge the new spec with the existing. */
2483 : 276 : if (acc.minsize == HOST_WIDE_INT_M1U)
2484 : 12 : ref.minsize = HOST_WIDE_INT_M1U;
2485 : :
2486 : 276 : if (acc.sizarg != UINT_MAX)
2487 : 70 : ref.sizarg = acc.sizarg;
2488 : :
2489 : 276 : if (acc.mode)
2490 : 228 : ref.mode = acc.mode;
2491 : : }
2492 : : else
2493 : 1370241 : ref = acc;
2494 : :
2495 : : /* Unconditionally add an entry for the required pointer
2496 : : operand of the attribute, and one for the optional size
2497 : : operand when it's specified. */
2498 : 1370517 : if (acc.sizarg != UINT_MAX)
2499 : 645606 : rwm->put (acc.sizarg, acc);
2500 : : }
2501 : : }
2502 : : }
2503 : :
2504 : : /* Return the access specification for a function parameter PARM
2505 : : or null if the current function has no such specification. */
2506 : :
2507 : : attr_access *
2508 : 783624 : get_parm_access (rdwr_map &rdwr_idx, tree parm,
2509 : : tree fndecl /* = current_function_decl */)
2510 : : {
2511 : 783624 : tree fntype = TREE_TYPE (fndecl);
2512 : 783624 : init_attr_rdwr_indices (&rdwr_idx, TYPE_ATTRIBUTES (fntype));
2513 : :
2514 : 783624 : if (rdwr_idx.is_empty ())
2515 : : return NULL;
2516 : :
2517 : 3717 : unsigned argpos = 0;
2518 : 3717 : tree fnargs = DECL_ARGUMENTS (fndecl);
2519 : 8577 : for (tree arg = fnargs; arg; arg = TREE_CHAIN (arg), ++argpos)
2520 : 8563 : if (arg == parm)
2521 : 3703 : return rdwr_idx.get (argpos);
2522 : :
2523 : : return NULL;
2524 : : }
2525 : :
2526 : : /* Return the internal representation as STRING_CST. Internal positional
2527 : : arguments are zero-based. */
2528 : :
2529 : : tree
2530 : 1143322 : attr_access::to_internal_string () const
2531 : : {
2532 : 1143322 : return build_string (end - str, str);
2533 : : }
2534 : :
2535 : : /* Return the human-readable representation of the external attribute
2536 : : specification (as it might appear in the source code) as STRING_CST.
2537 : : External positional arguments are one-based. */
2538 : :
2539 : : tree
2540 : 2484 : attr_access::to_external_string () const
2541 : : {
2542 : 2484 : char buf[80];
2543 : 2484 : gcc_assert (mode != access_deferred);
2544 : 2484 : int len = snprintf (buf, sizeof buf, "access (%s, %u",
2545 : 2484 : mode_names[mode], ptrarg + 1);
2546 : 2484 : if (sizarg != UINT_MAX)
2547 : 2174 : len += snprintf (buf + len, sizeof buf - len, ", %u", sizarg + 1);
2548 : 2484 : strcpy (buf + len, ")");
2549 : 2484 : return build_string (len + 2, buf);
2550 : : }
2551 : :
2552 : : /* Return the number of specified VLA bounds and set *nunspec to
2553 : : the number of unspecified ones (those designated by [*]). */
2554 : :
2555 : : unsigned
2556 : 756 : attr_access::vla_bounds (unsigned *nunspec) const
2557 : : {
2558 : 756 : unsigned nbounds = 0;
2559 : 756 : *nunspec = 0;
2560 : : /* STR points to the beginning of the specified string for the current
2561 : : argument that may be followed by the string for the next argument. */
2562 : 10683 : for (const char* p = strchr (str, ']'); p && *p != '['; --p)
2563 : : {
2564 : 9927 : if (*p == '*')
2565 : 21 : ++*nunspec;
2566 : 9906 : else if (*p == '$')
2567 : 9033 : ++nbounds;
2568 : : }
2569 : 756 : return nbounds;
2570 : : }
2571 : :
2572 : : /* Reset front end-specific attribute access data from ATTRS.
2573 : : Called from the free_lang_data pass. */
2574 : :
2575 : : /* static */ void
2576 : 331141 : attr_access::free_lang_data (tree attrs)
2577 : : {
2578 : 380462 : for (tree acs = attrs; (acs = lookup_attribute ("access", acs));
2579 : 49321 : acs = TREE_CHAIN (acs))
2580 : : {
2581 : 49321 : tree vblist = TREE_VALUE (acs);
2582 : 49321 : vblist = TREE_CHAIN (vblist);
2583 : 49321 : if (!vblist)
2584 : 26 : continue;
2585 : :
2586 : 49566 : for (vblist = TREE_VALUE (vblist); vblist; vblist = TREE_CHAIN (vblist))
2587 : : {
2588 : 271 : tree *pvbnd = &TREE_VALUE (vblist);
2589 : 271 : if (!*pvbnd || DECL_P (*pvbnd))
2590 : 0 : continue;
2591 : :
2592 : : /* VLA bounds that are expressions as opposed to DECLs are
2593 : : only used in the front end. Reset them to keep front end
2594 : : trees leaking into the middle end (see pr97172) and to
2595 : : free up memory. */
2596 : 271 : *pvbnd = NULL_TREE;
2597 : : }
2598 : : }
2599 : :
2600 : 411145 : for (tree argspec = attrs; (argspec = lookup_attribute ("arg spec", argspec));
2601 : 80004 : argspec = TREE_CHAIN (argspec))
2602 : : {
2603 : : /* Same as above. */
2604 : 80004 : tree *pvblist = &TREE_VALUE (argspec);
2605 : 80004 : *pvblist = NULL_TREE;
2606 : : }
2607 : 331141 : }
2608 : :
2609 : : /* Defined in attr_access. */
2610 : : constexpr char attr_access::mode_chars[];
2611 : : constexpr char attr_access::mode_names[][11];
2612 : :
2613 : : /* Format an array, including a VLA, pointed to by TYPE and used as
2614 : : a function parameter as a human-readable string. ACC describes
2615 : : an access to the parameter and is used to determine the outermost
2616 : : form of the array including its bound which is otherwise obviated
2617 : : by its decay to pointer. Return the formatted string. */
2618 : :
2619 : : std::string
2620 : 9034 : attr_access::array_as_string (tree type) const
2621 : : {
2622 : 9034 : std::string typstr;
2623 : :
2624 : 9034 : if (type == error_mark_node)
2625 : 0 : return std::string ();
2626 : :
2627 : 9034 : if (this->str)
2628 : : {
2629 : : /* For array parameters (but not pointers) create a temporary array
2630 : : type that corresponds to the form of the parameter including its
2631 : : qualifiers even though they apply to the pointer, not the array
2632 : : type. */
2633 : 8650 : const bool vla_p = minsize == HOST_WIDE_INT_M1U;
2634 : 8650 : tree eltype = TREE_TYPE (type);
2635 : 8650 : tree index_type = NULL_TREE;
2636 : :
2637 : 8650 : if (minsize == HOST_WIDE_INT_M1U)
2638 : : {
2639 : : /* Determine if this is a VLA (an array whose most significant
2640 : : bound is nonconstant and whose access string has "$]" in it)
2641 : : extract the bound expression from SIZE. */
2642 : 740 : const char *p = end;
2643 : 9604 : for ( ; p != str && *p-- != ']'; );
2644 : 740 : if (*p == '$')
2645 : : /* SIZE may have been cleared. Use it with care. */
2646 : 669 : index_type = build_index_type (size ? TREE_VALUE (size) : size);
2647 : : }
2648 : 7910 : else if (minsize)
2649 : 7220 : index_type = build_index_type (size_int (minsize - 1));
2650 : :
2651 : 8650 : tree arat = NULL_TREE;
2652 : 8650 : if (static_p || vla_p)
2653 : : {
2654 : 779 : tree flag = static_p ? integer_one_node : NULL_TREE;
2655 : : /* Hack: there's no language-independent way to encode
2656 : : the "static" specifier or the "*" notation in an array type.
2657 : : Add a "fake" attribute to have the pretty-printer add "static"
2658 : : or "*". The "[static N]" notation is only valid in the most
2659 : : significant bound but [*] can be used for any bound. Because
2660 : : [*] is represented the same as [0] this hack only works for
2661 : : the most significant bound like static and the others are
2662 : : rendered as [0]. */
2663 : 779 : arat = build_tree_list (get_identifier ("array"), flag);
2664 : : }
2665 : :
2666 : 8650 : const int quals = TYPE_QUALS (type);
2667 : 8650 : type = build_array_type (eltype, index_type);
2668 : 8650 : type = build_type_attribute_qual_variant (type, arat, quals);
2669 : : }
2670 : :
2671 : : /* Format the type using the current pretty printer. The generic tree
2672 : : printer does a terrible job. */
2673 : 9034 : std::unique_ptr<pretty_printer> pp (global_dc->clone_printer ());
2674 : 9034 : pp_printf (pp.get (), "%qT", type);
2675 : 9034 : typstr = pp_formatted_text (pp.get ());
2676 : :
2677 : 9034 : return typstr;
2678 : 9034 : }
2679 : :
2680 : : #if CHECKING_P
2681 : :
2682 : : namespace selftest
2683 : : {
2684 : :
2685 : : /* Self-test to verify that each attribute exclusion is symmetric,
2686 : : meaning that if attribute A is encoded as incompatible with
2687 : : attribute B then the opposite relationship is also encoded.
2688 : : This test also detects most cases of misspelled attribute names
2689 : : in exclusions. */
2690 : :
2691 : : static void
2692 : 4 : test_attribute_exclusions ()
2693 : : {
2694 : 4 : using excl_hash_traits = pair_hash<nofree_string_hash, nofree_string_hash>;
2695 : :
2696 : : /* Iterate over the array of attribute tables first (with TI0 as
2697 : : the index) and over the array of attribute_spec in each table
2698 : : (with SI0 as the index). */
2699 : 4 : hash_set<excl_hash_traits> excl_set;
2700 : :
2701 : 12 : for (auto scoped_array : attribute_tables)
2702 : 28 : for (auto scoped_attributes : scoped_array)
2703 : 598 : for (const attribute_spec &attribute : scoped_attributes->attributes)
2704 : : {
2705 : 578 : const attribute_spec::exclusions *excl = attribute.exclude;
2706 : :
2707 : : /* Skip each attribute that doesn't define exclusions. */
2708 : 578 : if (!excl)
2709 : 487 : continue;
2710 : :
2711 : : /* Skip standard (non-GNU) attributes, since currently the
2712 : : exclusions are implicitly for GNU attributes only.
2713 : : Also, C++ likely and unlikely get rewritten to gnu::hot
2714 : : and gnu::cold, so symmetry isn't necessary there. */
2715 : 91 : if (!scoped_attributes->ns)
2716 : 3 : continue;
2717 : :
2718 : 88 : const char *attr_name = attribute.name;
2719 : :
2720 : : /* Iterate over the set of exclusions for every attribute
2721 : : (with EI0 as the index) adding the exclusions defined
2722 : : for each to the set. */
2723 : 320 : for (size_t ei0 = 0; excl[ei0].name; ++ei0)
2724 : : {
2725 : 232 : const char *excl_name = excl[ei0].name;
2726 : :
2727 : 232 : if (!strcmp (attr_name, excl_name))
2728 : 47 : continue;
2729 : :
2730 : 185 : excl_set.add ({ attr_name, excl_name });
2731 : : }
2732 : : }
2733 : :
2734 : : /* Traverse the set of mutually exclusive pairs of attributes
2735 : : and verify that they are symmetric. */
2736 : 376 : for (auto excl_pair : excl_set)
2737 : 184 : if (!excl_set.contains ({ excl_pair.second, excl_pair.first }))
2738 : : {
2739 : : /* An exclusion for an attribute has been found that
2740 : : doesn't have a corresponding exclusion in the opposite
2741 : : direction. */
2742 : 0 : char desc[120];
2743 : 0 : sprintf (desc, "'%s' attribute exclusion '%s' must be symmetric",
2744 : : excl_pair.first, excl_pair.second);
2745 : 0 : fail (SELFTEST_LOCATION, desc);
2746 : : }
2747 : 4 : }
2748 : :
2749 : : void
2750 : 4 : attribs_cc_tests ()
2751 : : {
2752 : 4 : test_attribute_exclusions ();
2753 : 4 : }
2754 : :
2755 : : } /* namespace selftest */
2756 : :
2757 : : #endif /* CHECKING_P */
2758 : :
2759 : : #include "gt-attribs.h"
|