1 /* Functions dealing with attribute handling, used by most front ends.
2 Copyright (C) 1992-2018 Free Software Foundation, Inc.
4 This file is part of GCC.
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
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
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/>. */
22 #include "coretypes.h"
25 #include "stringpool.h"
26 #include "diagnostic-core.h"
28 #include "stor-layout.h"
29 #include "langhooks.h"
34 /* Table of the tables of attributes (common, language, format, machine)
36 static const struct attribute_spec
*attribute_tables
[4];
38 /* Substring representation. */
46 /* Simple hash function to avoid need to scan whole string. */
48 static inline hashval_t
49 substring_hash (const char *str
, int l
)
51 return str
[0] + str
[l
- 1] * 256 + l
* 65536;
54 /* Used for attribute_hash. */
56 struct attribute_hasher
: nofree_ptr_hash
<attribute_spec
>
58 typedef substring
*compare_type
;
59 static inline hashval_t
hash (const attribute_spec
*);
60 static inline bool equal (const attribute_spec
*, const substring
*);
64 attribute_hasher::hash (const attribute_spec
*spec
)
66 const int l
= strlen (spec
->name
);
67 return substring_hash (spec
->name
, l
);
71 attribute_hasher::equal (const attribute_spec
*spec
, const substring
*str
)
73 return (strncmp (spec
->name
, str
->str
, str
->length
) == 0
74 && !spec
->name
[str
->length
]);
77 /* Scoped attribute name representation. */
79 struct scoped_attributes
82 vec
<attribute_spec
> attributes
;
83 hash_table
<attribute_hasher
> *attribute_hash
;
86 /* The table of scope attributes. */
87 static vec
<scoped_attributes
> attributes_table
;
89 static scoped_attributes
* find_attribute_namespace (const char*);
90 static void register_scoped_attribute (const struct attribute_spec
*,
93 static bool attributes_initialized
= false;
95 /* Default empty table of attributes. */
97 static const struct attribute_spec empty_attribute_table
[] =
99 { NULL
, 0, 0, false, false, false, false, NULL
, NULL
}
102 /* Return base name of the attribute. Ie '__attr__' is turned into 'attr'.
103 To avoid need for copying, we simply return length of the string. */
106 extract_attribute_substring (struct substring
*str
)
108 if (str
->length
> 4 && str
->str
[0] == '_' && str
->str
[1] == '_'
109 && str
->str
[str
->length
- 1] == '_' && str
->str
[str
->length
- 2] == '_')
116 /* Insert an array of attributes ATTRIBUTES into a namespace. This
117 array must be NULL terminated. NS is the name of attribute
118 namespace. The function returns the namespace into which the
119 attributes have been registered. */
122 register_scoped_attributes (const struct attribute_spec
*attributes
,
125 scoped_attributes
*result
= NULL
;
127 /* See if we already have attributes in the namespace NS. */
128 result
= find_attribute_namespace (ns
);
132 /* We don't have any namespace NS yet. Create one. */
133 scoped_attributes sa
;
135 if (attributes_table
.is_empty ())
136 attributes_table
.create (64);
138 memset (&sa
, 0, sizeof (sa
));
140 sa
.attributes
.create (64);
141 result
= attributes_table
.safe_push (sa
);
142 result
->attribute_hash
= new hash_table
<attribute_hasher
> (200);
145 /* Really add the attributes to their namespace now. */
146 for (unsigned i
= 0; attributes
[i
].name
!= NULL
; ++i
)
148 result
->attributes
.safe_push (attributes
[i
]);
149 register_scoped_attribute (&attributes
[i
], result
);
152 gcc_assert (result
!= NULL
);
157 /* Return the namespace which name is NS, NULL if none exist. */
159 static scoped_attributes
*
160 find_attribute_namespace (const char* ns
)
163 scoped_attributes
*iter
;
165 FOR_EACH_VEC_ELT (attributes_table
, ix
, iter
)
169 && !strcmp (iter
->ns
, ns
)))
174 /* Make some sanity checks on the attribute tables. */
177 check_attribute_tables (void)
179 for (size_t i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
180 for (size_t j
= 0; attribute_tables
[i
][j
].name
!= NULL
; j
++)
182 /* The name must not begin and end with __. */
183 const char *name
= attribute_tables
[i
][j
].name
;
184 int len
= strlen (name
);
186 gcc_assert (!(name
[0] == '_' && name
[1] == '_'
187 && name
[len
- 1] == '_' && name
[len
- 2] == '_'));
189 /* The minimum and maximum lengths must be consistent. */
190 gcc_assert (attribute_tables
[i
][j
].min_length
>= 0);
192 gcc_assert (attribute_tables
[i
][j
].max_length
== -1
193 || (attribute_tables
[i
][j
].max_length
194 >= attribute_tables
[i
][j
].min_length
));
196 /* An attribute cannot require both a DECL and a TYPE. */
197 gcc_assert (!attribute_tables
[i
][j
].decl_required
198 || !attribute_tables
[i
][j
].type_required
);
200 /* If an attribute requires a function type, in particular
201 it requires a type. */
202 gcc_assert (!attribute_tables
[i
][j
].function_type_required
203 || attribute_tables
[i
][j
].type_required
);
206 /* Check that each name occurs just once in each table. */
207 for (size_t i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
208 for (size_t j
= 0; attribute_tables
[i
][j
].name
!= NULL
; j
++)
209 for (size_t k
= j
+ 1; attribute_tables
[i
][k
].name
!= NULL
; k
++)
210 gcc_assert (strcmp (attribute_tables
[i
][j
].name
,
211 attribute_tables
[i
][k
].name
));
213 /* Check that no name occurs in more than one table. Names that
214 begin with '*' are exempt, and may be overridden. */
215 for (size_t i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
216 for (size_t j
= i
+ 1; j
< ARRAY_SIZE (attribute_tables
); j
++)
217 for (size_t k
= 0; attribute_tables
[i
][k
].name
!= NULL
; k
++)
218 for (size_t l
= 0; attribute_tables
[j
][l
].name
!= NULL
; l
++)
219 gcc_assert (attribute_tables
[i
][k
].name
[0] == '*'
220 || strcmp (attribute_tables
[i
][k
].name
,
221 attribute_tables
[j
][l
].name
));
224 /* Initialize attribute tables, and make some sanity checks if checking is
228 init_attributes (void)
232 if (attributes_initialized
)
235 attribute_tables
[0] = lang_hooks
.common_attribute_table
;
236 attribute_tables
[1] = lang_hooks
.attribute_table
;
237 attribute_tables
[2] = lang_hooks
.format_attribute_table
;
238 attribute_tables
[3] = targetm
.attribute_table
;
240 /* Translate NULL pointers to pointers to the empty table. */
241 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
242 if (attribute_tables
[i
] == NULL
)
243 attribute_tables
[i
] = empty_attribute_table
;
246 check_attribute_tables ();
248 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); ++i
)
249 /* Put all the GNU attributes into the "gnu" namespace. */
250 register_scoped_attributes (attribute_tables
[i
], "gnu");
252 invoke_plugin_callbacks (PLUGIN_ATTRIBUTES
, NULL
);
253 attributes_initialized
= true;
256 /* Insert a single ATTR into the attribute table. */
259 register_attribute (const struct attribute_spec
*attr
)
261 register_scoped_attribute (attr
, find_attribute_namespace ("gnu"));
264 /* Insert a single attribute ATTR into a namespace of attributes. */
267 register_scoped_attribute (const struct attribute_spec
*attr
,
268 scoped_attributes
*name_space
)
270 struct substring str
;
271 attribute_spec
**slot
;
273 gcc_assert (attr
!= NULL
&& name_space
!= NULL
);
275 gcc_assert (name_space
->attribute_hash
);
277 str
.str
= attr
->name
;
278 str
.length
= strlen (str
.str
);
280 /* Attribute names in the table must be in the form 'text' and not
281 in the form '__text__'. */
282 gcc_assert (str
.length
> 0 && str
.str
[0] != '_');
284 slot
= name_space
->attribute_hash
285 ->find_slot_with_hash (&str
, substring_hash (str
.str
, str
.length
),
287 gcc_assert (!*slot
|| attr
->name
[0] == '*');
288 *slot
= CONST_CAST (struct attribute_spec
*, attr
);
291 /* Return the spec for the scoped attribute with namespace NS and
294 static const struct attribute_spec
*
295 lookup_scoped_attribute_spec (const_tree ns
, const_tree name
)
297 struct substring attr
;
298 scoped_attributes
*attrs
;
300 const char *ns_str
= (ns
!= NULL_TREE
) ? IDENTIFIER_POINTER (ns
): NULL
;
302 attrs
= find_attribute_namespace (ns_str
);
307 attr
.str
= IDENTIFIER_POINTER (name
);
308 attr
.length
= IDENTIFIER_LENGTH (name
);
309 extract_attribute_substring (&attr
);
310 return attrs
->attribute_hash
->find_with_hash (&attr
,
311 substring_hash (attr
.str
,
315 /* Return the spec for the attribute named NAME. If NAME is a TREE_LIST,
316 it also specifies the attribute namespace. */
318 const struct attribute_spec
*
319 lookup_attribute_spec (const_tree name
)
322 if (TREE_CODE (name
) == TREE_LIST
)
324 ns
= TREE_PURPOSE (name
);
325 name
= TREE_VALUE (name
);
328 ns
= get_identifier ("gnu");
329 return lookup_scoped_attribute_spec (ns
, name
);
333 /* Return the namespace of the attribute ATTR. This accessor works on
334 GNU and C++11 (scoped) attributes. On GNU attributes,
335 it returns an identifier tree for the string "gnu".
337 Please read the comments of cxx11_attribute_p to understand the
338 format of attributes. */
341 get_attribute_namespace (const_tree attr
)
343 if (cxx11_attribute_p (attr
))
344 return TREE_PURPOSE (TREE_PURPOSE (attr
));
345 return get_identifier ("gnu");
348 /* Check LAST_DECL and NODE of the same symbol for attributes that are
349 recorded in SPEC to be mutually exclusive with ATTRNAME, diagnose
350 them, and return true if any have been found. NODE can be a DECL
354 diag_attr_exclusions (tree last_decl
, tree node
, tree attrname
,
355 const attribute_spec
*spec
)
357 const attribute_spec::exclusions
*excl
= spec
->exclude
;
359 tree_code code
= TREE_CODE (node
);
361 if ((code
== FUNCTION_DECL
&& !excl
->function
362 && (!excl
->type
|| !spec
->affects_type_identity
))
363 || (code
== VAR_DECL
&& !excl
->variable
364 && (!excl
->type
|| !spec
->affects_type_identity
))
365 || (((code
== TYPE_DECL
|| RECORD_OR_UNION_TYPE_P (node
)) && !excl
->type
)))
368 /* True if an attribute that's mutually exclusive with ATTRNAME
372 if (last_decl
&& last_decl
!= node
&& TREE_TYPE (last_decl
) != node
)
374 /* Check both the last DECL and its type for conflicts with
375 the attribute being added to the current decl or type. */
376 found
|= diag_attr_exclusions (last_decl
, last_decl
, attrname
, spec
);
377 tree decl_type
= TREE_TYPE (last_decl
);
378 found
|= diag_attr_exclusions (last_decl
, decl_type
, attrname
, spec
);
381 /* NODE is either the current DECL to which the attribute is being
382 applied or its TYPE. For the former, consider the attributes on
383 both the DECL and its type. */
388 attrs
[0] = DECL_ATTRIBUTES (node
);
389 attrs
[1] = TYPE_ATTRIBUTES (TREE_TYPE (node
));
393 attrs
[0] = TYPE_ATTRIBUTES (node
);
394 attrs
[1] = NULL_TREE
;
397 /* Iterate over the mutually exclusive attribute names and verify
398 that the symbol doesn't contain it. */
399 for (unsigned i
= 0; i
!= sizeof attrs
/ sizeof *attrs
; ++i
)
404 for ( ; excl
->name
; ++excl
)
406 /* Avoid checking the attribute against itself. */
407 if (is_attribute_p (excl
->name
, attrname
))
410 if (!lookup_attribute (excl
->name
, attrs
[i
]))
413 /* An exclusion may apply either to a function declaration,
414 type declaration, or a field/variable declaration, or
415 any subset of the three. */
416 if (TREE_CODE (node
) == FUNCTION_DECL
420 if (TREE_CODE (node
) == TYPE_DECL
424 if ((TREE_CODE (node
) == FIELD_DECL
425 || TREE_CODE (node
) == VAR_DECL
)
432 bool note
= last_decl
!= NULL_TREE
;
434 if (TREE_CODE (node
) == FUNCTION_DECL
435 && DECL_BUILT_IN (node
))
436 note
&= warning (OPT_Wattributes
,
437 "ignoring attribute %qE in declaration of "
438 "a built-in function %qD because it conflicts "
439 "with attribute %qs",
440 attrname
, node
, excl
->name
);
442 note
&= warning (OPT_Wattributes
,
443 "ignoring attribute %qE because "
444 "it conflicts with attribute %qs",
445 attrname
, excl
->name
);
448 inform (DECL_SOURCE_LOCATION (last_decl
),
449 "previous declaration here");
456 /* Process the attributes listed in ATTRIBUTES and install them in *NODE,
457 which is either a DECL (including a TYPE_DECL) or a TYPE. If a DECL,
458 it should be modified in place; if a TYPE, a copy should be created
459 unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS. FLAGS gives further
460 information, in the form of a bitwise OR of flags in enum attribute_flags
461 from tree.h. Depending on these flags, some attributes may be
462 returned to be applied at a later stage (for example, to apply
463 a decl attribute to the declaration rather than to its type). */
466 decl_attributes (tree
*node
, tree attributes
, int flags
,
467 tree last_decl
/* = NULL_TREE */)
470 tree returned_attrs
= NULL_TREE
;
472 if (TREE_TYPE (*node
) == error_mark_node
|| attributes
== error_mark_node
)
475 if (!attributes_initialized
)
478 /* If this is a function and the user used #pragma GCC optimize, add the
479 options to the attribute((optimize(...))) list. */
480 if (TREE_CODE (*node
) == FUNCTION_DECL
&& current_optimize_pragma
)
482 tree cur_attr
= lookup_attribute ("optimize", attributes
);
483 tree opts
= copy_list (current_optimize_pragma
);
487 = tree_cons (get_identifier ("optimize"), opts
, attributes
);
489 TREE_VALUE (cur_attr
) = chainon (opts
, TREE_VALUE (cur_attr
));
492 if (TREE_CODE (*node
) == FUNCTION_DECL
493 && optimization_current_node
!= optimization_default_node
494 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node
))
495 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node
) = optimization_current_node
;
497 /* If this is a function and the user used #pragma GCC target, add the
498 options to the attribute((target(...))) list. */
499 if (TREE_CODE (*node
) == FUNCTION_DECL
500 && current_target_pragma
501 && targetm
.target_option
.valid_attribute_p (*node
, NULL_TREE
,
502 current_target_pragma
, 0))
504 tree cur_attr
= lookup_attribute ("target", attributes
);
505 tree opts
= copy_list (current_target_pragma
);
508 attributes
= tree_cons (get_identifier ("target"), opts
, attributes
);
510 TREE_VALUE (cur_attr
) = chainon (opts
, TREE_VALUE (cur_attr
));
513 /* A "naked" function attribute implies "noinline" and "noclone" for
514 those targets that support it. */
515 if (TREE_CODE (*node
) == FUNCTION_DECL
517 && lookup_attribute ("naked", attributes
) != NULL
518 && lookup_attribute_spec (get_identifier ("naked")))
520 if (lookup_attribute ("noinline", attributes
) == NULL
)
521 attributes
= tree_cons (get_identifier ("noinline"), NULL
, attributes
);
523 if (lookup_attribute ("noclone", attributes
) == NULL
)
524 attributes
= tree_cons (get_identifier ("noclone"), NULL
, attributes
);
527 /* A "noipa" function attribute implies "noinline", "noclone" and "no_icf"
528 for those targets that support it. */
529 if (TREE_CODE (*node
) == FUNCTION_DECL
531 && lookup_attribute ("noipa", attributes
) != NULL
532 && lookup_attribute_spec (get_identifier ("noipa")))
534 if (lookup_attribute ("noinline", attributes
) == NULL
)
535 attributes
= tree_cons (get_identifier ("noinline"), NULL
, attributes
);
537 if (lookup_attribute ("noclone", attributes
) == NULL
)
538 attributes
= tree_cons (get_identifier ("noclone"), NULL
, attributes
);
540 if (lookup_attribute ("no_icf", attributes
) == NULL
)
541 attributes
= tree_cons (get_identifier ("no_icf"), NULL
, attributes
);
544 targetm
.insert_attributes (*node
, &attributes
);
546 /* Note that attributes on the same declaration are not necessarily
547 in the same order as in the source. */
548 for (a
= attributes
; a
; a
= TREE_CHAIN (a
))
550 tree ns
= get_attribute_namespace (a
);
551 tree name
= get_attribute_name (a
);
552 tree args
= TREE_VALUE (a
);
554 const struct attribute_spec
*spec
555 = lookup_scoped_attribute_spec (ns
, name
);
556 int fn_ptr_quals
= 0;
557 tree fn_ptr_tmp
= NULL_TREE
;
561 if (!(flags
& (int) ATTR_FLAG_BUILT_IN
))
563 if (ns
== NULL_TREE
|| !cxx11_attribute_p (a
))
564 warning (OPT_Wattributes
, "%qE attribute directive ignored",
567 warning (OPT_Wattributes
,
568 "%<%E::%E%> scoped attribute directive ignored",
573 else if (list_length (args
) < spec
->min_length
574 || (spec
->max_length
>= 0
575 && list_length (args
) > spec
->max_length
))
577 error ("wrong number of arguments specified for %qE attribute",
581 gcc_assert (is_attribute_p (spec
->name
, name
));
584 && cxx11_attribute_p (a
)
585 && !(flags
& ATTR_FLAG_TYPE_IN_PLACE
))
587 /* This is a c++11 attribute that appertains to a
588 type-specifier, outside of the definition of, a class
590 if (warning (OPT_Wattributes
, "attribute ignored"))
591 inform (input_location
,
592 "an attribute that appertains to a type-specifier "
597 if (spec
->decl_required
&& !DECL_P (*anode
))
599 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
600 | (int) ATTR_FLAG_FUNCTION_NEXT
601 | (int) ATTR_FLAG_ARRAY_NEXT
))
603 /* Pass on this attribute to be tried again. */
604 tree attr
= tree_cons (name
, args
, NULL_TREE
);
605 returned_attrs
= chainon (returned_attrs
, attr
);
610 warning (OPT_Wattributes
, "%qE attribute does not apply to types",
616 /* If we require a type, but were passed a decl, set up to make a
617 new type and update the one in the decl. ATTR_FLAG_TYPE_IN_PLACE
618 would have applied if we'd been passed a type, but we cannot modify
619 the decl's type in place here. */
620 if (spec
->type_required
&& DECL_P (*anode
))
622 anode
= &TREE_TYPE (*anode
);
623 flags
&= ~(int) ATTR_FLAG_TYPE_IN_PLACE
;
626 if (spec
->function_type_required
&& TREE_CODE (*anode
) != FUNCTION_TYPE
627 && TREE_CODE (*anode
) != METHOD_TYPE
)
629 if (TREE_CODE (*anode
) == POINTER_TYPE
630 && (TREE_CODE (TREE_TYPE (*anode
)) == FUNCTION_TYPE
631 || TREE_CODE (TREE_TYPE (*anode
)) == METHOD_TYPE
))
633 /* OK, this is a bit convoluted. We can't just make a copy
634 of the pointer type and modify its TREE_TYPE, because if
635 we change the attributes of the target type the pointer
636 type needs to have a different TYPE_MAIN_VARIANT. So we
637 pull out the target type now, frob it as appropriate, and
638 rebuild the pointer type later.
640 This would all be simpler if attributes were part of the
641 declarator, grumble grumble. */
642 fn_ptr_tmp
= TREE_TYPE (*anode
);
643 fn_ptr_quals
= TYPE_QUALS (*anode
);
645 flags
&= ~(int) ATTR_FLAG_TYPE_IN_PLACE
;
647 else if (flags
& (int) ATTR_FLAG_FUNCTION_NEXT
)
649 /* Pass on this attribute to be tried again. */
650 tree attr
= tree_cons (name
, args
, NULL_TREE
);
651 returned_attrs
= chainon (returned_attrs
, attr
);
655 if (TREE_CODE (*anode
) != FUNCTION_TYPE
656 && TREE_CODE (*anode
) != METHOD_TYPE
)
658 warning (OPT_Wattributes
,
659 "%qE attribute only applies to function types",
666 && (flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
)
667 && TYPE_SIZE (*anode
) != NULL_TREE
)
669 warning (OPT_Wattributes
, "type attributes ignored after type is already defined");
673 bool no_add_attrs
= false;
675 /* Check for exclusions with other attributes on the current
676 declation as well as the last declaration of the same
677 symbol already processed (if one exists). Detect and
678 reject incompatible attributes. */
679 bool built_in
= flags
& ATTR_FLAG_BUILT_IN
;
681 && (flag_checking
|| !built_in
))
683 /* Always check attributes on user-defined functions.
684 Check them on built-ins only when -fchecking is set.
685 Ignore __builtin_unreachable -- it's both const and
690 || (DECL_FUNCTION_CODE (*anode
) != BUILT_IN_UNREACHABLE
691 && (DECL_FUNCTION_CODE (*anode
)
692 != BUILT_IN_UBSAN_HANDLE_BUILTIN_UNREACHABLE
)))
694 bool no_add
= diag_attr_exclusions (last_decl
, *anode
, name
, spec
);
695 if (!no_add
&& anode
!= node
)
696 no_add
= diag_attr_exclusions (last_decl
, *node
, name
, spec
);
697 no_add_attrs
|= no_add
;
704 if (spec
->handler
!= NULL
)
707 cxx11_attribute_p (a
) ? ATTR_FLAG_CXX11
: 0;
709 /* Pass in an array of the current declaration followed
710 by the last pushed/merged declaration if one exists.
711 If the handler changes CUR_AND_LAST_DECL[0] replace
712 *ANODE with its value. */
713 tree cur_and_last_decl
[] = { *anode
, last_decl
};
714 tree ret
= (spec
->handler
) (cur_and_last_decl
, name
, args
,
715 flags
|cxx11_flag
, &no_add_attrs
);
717 *anode
= cur_and_last_decl
[0];
718 if (ret
== error_mark_node
)
720 warning (OPT_Wattributes
, "%qE attribute ignored", name
);
724 returned_attrs
= chainon (ret
, returned_attrs
);
727 /* Layout the decl in case anything changed. */
728 if (spec
->type_required
&& DECL_P (*node
)
730 || TREE_CODE (*node
) == PARM_DECL
731 || TREE_CODE (*node
) == RESULT_DECL
))
732 relayout_decl (*node
);
740 old_attrs
= DECL_ATTRIBUTES (*anode
);
742 old_attrs
= TYPE_ATTRIBUTES (*anode
);
744 for (a
= lookup_attribute (spec
->name
, old_attrs
);
746 a
= lookup_attribute (spec
->name
, TREE_CHAIN (a
)))
748 if (simple_cst_equal (TREE_VALUE (a
), args
) == 1)
754 /* This attribute isn't already in the list. */
756 DECL_ATTRIBUTES (*anode
) = tree_cons (name
, args
, old_attrs
);
757 else if (flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
)
759 TYPE_ATTRIBUTES (*anode
) = tree_cons (name
, args
, old_attrs
);
760 /* If this is the main variant, also push the attributes
761 out to the other variants. */
762 if (*anode
== TYPE_MAIN_VARIANT (*anode
))
765 for (variant
= *anode
; variant
;
766 variant
= TYPE_NEXT_VARIANT (variant
))
768 if (TYPE_ATTRIBUTES (variant
) == old_attrs
)
769 TYPE_ATTRIBUTES (variant
)
770 = TYPE_ATTRIBUTES (*anode
);
771 else if (!lookup_attribute
772 (spec
->name
, TYPE_ATTRIBUTES (variant
)))
773 TYPE_ATTRIBUTES (variant
) = tree_cons
774 (name
, args
, TYPE_ATTRIBUTES (variant
));
779 *anode
= build_type_attribute_variant (*anode
,
780 tree_cons (name
, args
,
787 /* Rebuild the function pointer type and put it in the
788 appropriate place. */
789 fn_ptr_tmp
= build_pointer_type (fn_ptr_tmp
);
791 fn_ptr_tmp
= build_qualified_type (fn_ptr_tmp
, fn_ptr_quals
);
793 TREE_TYPE (*node
) = fn_ptr_tmp
;
796 gcc_assert (TREE_CODE (*node
) == POINTER_TYPE
);
802 return returned_attrs
;
805 /* Return TRUE iff ATTR has been parsed by the front-end as a C++-11
808 When G++ parses a C++11 attribute, it is represented as
809 a TREE_LIST which TREE_PURPOSE is itself a TREE_LIST. TREE_PURPOSE
810 (TREE_PURPOSE (ATTR)) is the namespace of the attribute, and the
811 TREE_VALUE (TREE_PURPOSE (ATTR)) is its non-qualified name. Please
812 use get_attribute_namespace and get_attribute_name to retrieve the
813 namespace and name of the attribute, as these accessors work with
814 GNU attributes as well. */
817 cxx11_attribute_p (const_tree attr
)
819 if (attr
== NULL_TREE
820 || TREE_CODE (attr
) != TREE_LIST
)
823 return (TREE_CODE (TREE_PURPOSE (attr
)) == TREE_LIST
);
826 /* Return the name of the attribute ATTR. This accessor works on GNU
827 and C++11 (scoped) attributes.
829 Please read the comments of cxx11_attribute_p to understand the
830 format of attributes. */
833 get_attribute_name (const_tree attr
)
835 if (cxx11_attribute_p (attr
))
836 return TREE_VALUE (TREE_PURPOSE (attr
));
837 return TREE_PURPOSE (attr
);
840 /* Subroutine of set_method_tm_attributes. Apply TM attribute ATTR
841 to the method FNDECL. */
844 apply_tm_attr (tree fndecl
, tree attr
)
846 decl_attributes (&TREE_TYPE (fndecl
), tree_cons (attr
, NULL
, NULL
), 0);
849 /* Makes a function attribute of the form NAME(ARG_NAME) and chains
853 make_attribute (const char *name
, const char *arg_name
, tree chain
)
860 attr_name
= get_identifier (name
);
861 attr_arg_name
= build_string (strlen (arg_name
), arg_name
);
862 attr_args
= tree_cons (NULL_TREE
, attr_arg_name
, NULL_TREE
);
863 attr
= tree_cons (attr_name
, attr_args
, chain
);
868 /* Common functions used for target clone support. */
870 /* Comparator function to be used in qsort routine to sort attribute
871 specification strings to "target". */
874 attr_strcmp (const void *v1
, const void *v2
)
876 const char *c1
= *(char *const*)v1
;
877 const char *c2
= *(char *const*)v2
;
878 return strcmp (c1
, c2
);
881 /* ARGLIST is the argument to target attribute. This function tokenizes
882 the comma separated arguments, sorts them and returns a string which
883 is a unique identifier for the comma separated arguments. It also
884 replaces non-identifier characters "=,-" with "_". */
887 sorted_attr_string (tree arglist
)
890 size_t str_len_sum
= 0;
892 char *attr_str
, *ret_str
;
894 unsigned int argnum
= 1;
897 for (arg
= arglist
; arg
; arg
= TREE_CHAIN (arg
))
899 const char *str
= TREE_STRING_POINTER (TREE_VALUE (arg
));
900 size_t len
= strlen (str
);
901 str_len_sum
+= len
+ 1;
904 for (i
= 0; i
< strlen (str
); i
++)
909 attr_str
= XNEWVEC (char, str_len_sum
);
911 for (arg
= arglist
; arg
; arg
= TREE_CHAIN (arg
))
913 const char *str
= TREE_STRING_POINTER (TREE_VALUE (arg
));
914 size_t len
= strlen (str
);
915 memcpy (attr_str
+ str_len_sum
, str
, len
);
916 attr_str
[str_len_sum
+ len
] = TREE_CHAIN (arg
) ? ',' : '\0';
917 str_len_sum
+= len
+ 1;
920 /* Replace "=,-" with "_". */
921 for (i
= 0; i
< strlen (attr_str
); i
++)
922 if (attr_str
[i
] == '=' || attr_str
[i
]== '-')
928 args
= XNEWVEC (char *, argnum
);
931 attr
= strtok (attr_str
, ",");
936 attr
= strtok (NULL
, ",");
939 qsort (args
, argnum
, sizeof (char *), attr_strcmp
);
941 ret_str
= XNEWVEC (char, str_len_sum
);
943 for (i
= 0; i
< argnum
; i
++)
945 size_t len
= strlen (args
[i
]);
946 memcpy (ret_str
+ str_len_sum
, args
[i
], len
);
947 ret_str
[str_len_sum
+ len
] = i
< argnum
- 1 ? '_' : '\0';
948 str_len_sum
+= len
+ 1;
952 XDELETEVEC (attr_str
);
957 /* This function returns true if FN1 and FN2 are versions of the same function,
958 that is, the target strings of the function decls are different. This assumes
959 that FN1 and FN2 have the same signature. */
962 common_function_versions (tree fn1
, tree fn2
)
965 char *target1
, *target2
;
968 if (TREE_CODE (fn1
) != FUNCTION_DECL
969 || TREE_CODE (fn2
) != FUNCTION_DECL
)
972 attr1
= lookup_attribute ("target", DECL_ATTRIBUTES (fn1
));
973 attr2
= lookup_attribute ("target", DECL_ATTRIBUTES (fn2
));
975 /* At least one function decl should have the target attribute specified. */
976 if (attr1
== NULL_TREE
&& attr2
== NULL_TREE
)
979 /* Diagnose missing target attribute if one of the decls is already
981 if (attr1
== NULL_TREE
|| attr2
== NULL_TREE
)
983 if (DECL_FUNCTION_VERSIONED (fn1
) || DECL_FUNCTION_VERSIONED (fn2
))
985 if (attr2
!= NULL_TREE
)
987 std::swap (fn1
, fn2
);
990 error_at (DECL_SOURCE_LOCATION (fn2
),
991 "missing %<target%> attribute for multi-versioned %qD",
993 inform (DECL_SOURCE_LOCATION (fn1
),
994 "previous declaration of %qD", fn1
);
995 /* Prevent diagnosing of the same error multiple times. */
996 DECL_ATTRIBUTES (fn2
)
997 = tree_cons (get_identifier ("target"),
998 copy_node (TREE_VALUE (attr1
)),
999 DECL_ATTRIBUTES (fn2
));
1004 target1
= sorted_attr_string (TREE_VALUE (attr1
));
1005 target2
= sorted_attr_string (TREE_VALUE (attr2
));
1007 /* The sorted target strings must be different for fn1 and fn2
1009 if (strcmp (target1
, target2
) == 0)
1014 XDELETEVEC (target1
);
1015 XDELETEVEC (target2
);
1020 /* Return a new name by appending SUFFIX to the DECL name. If make_unique
1021 is true, append the full path name of the source file. */
1024 make_unique_name (tree decl
, const char *suffix
, bool make_unique
)
1026 char *global_var_name
;
1029 const char *unique_name
= NULL
;
1031 name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
1033 /* Get a unique name that can be used globally without any chances
1034 of collision at link time. */
1036 unique_name
= IDENTIFIER_POINTER (get_file_function_name ("\0"));
1038 name_len
= strlen (name
) + strlen (suffix
) + 2;
1041 name_len
+= strlen (unique_name
) + 1;
1042 global_var_name
= XNEWVEC (char, name_len
);
1044 /* Use '.' to concatenate names as it is demangler friendly. */
1046 snprintf (global_var_name
, name_len
, "%s.%s.%s", name
, unique_name
,
1049 snprintf (global_var_name
, name_len
, "%s.%s", name
, suffix
);
1051 return global_var_name
;
1054 /* Make a dispatcher declaration for the multi-versioned function DECL.
1055 Calls to DECL function will be replaced with calls to the dispatcher
1056 by the front-end. Return the decl created. */
1059 make_dispatcher_decl (const tree decl
)
1063 tree fn_type
, func_type
;
1065 func_name
= xstrdup (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
1067 fn_type
= TREE_TYPE (decl
);
1068 func_type
= build_function_type (TREE_TYPE (fn_type
),
1069 TYPE_ARG_TYPES (fn_type
));
1071 func_decl
= build_fn_decl (func_name
, func_type
);
1072 XDELETEVEC (func_name
);
1073 TREE_USED (func_decl
) = 1;
1074 DECL_CONTEXT (func_decl
) = NULL_TREE
;
1075 DECL_INITIAL (func_decl
) = error_mark_node
;
1076 DECL_ARTIFICIAL (func_decl
) = 1;
1077 /* Mark this func as external, the resolver will flip it again if
1078 it gets generated. */
1079 DECL_EXTERNAL (func_decl
) = 1;
1080 /* This will be of type IFUNCs have to be externally visible. */
1081 TREE_PUBLIC (func_decl
) = 1;
1086 /* Returns true if decl is multi-versioned and DECL is the default function,
1087 that is it is not tagged with target specific optimization. */
1090 is_function_default_version (const tree decl
)
1092 if (TREE_CODE (decl
) != FUNCTION_DECL
1093 || !DECL_FUNCTION_VERSIONED (decl
))
1095 tree attr
= lookup_attribute ("target", DECL_ATTRIBUTES (decl
));
1097 attr
= TREE_VALUE (TREE_VALUE (attr
));
1098 return (TREE_CODE (attr
) == STRING_CST
1099 && strcmp (TREE_STRING_POINTER (attr
), "default") == 0);
1102 /* Return a declaration like DDECL except that its DECL_ATTRIBUTES
1106 build_decl_attribute_variant (tree ddecl
, tree attribute
)
1108 DECL_ATTRIBUTES (ddecl
) = attribute
;
1112 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
1113 is ATTRIBUTE and its qualifiers are QUALS.
1115 Record such modified types already made so we don't make duplicates. */
1118 build_type_attribute_qual_variant (tree otype
, tree attribute
, int quals
)
1121 if (! attribute_list_equal (TYPE_ATTRIBUTES (ttype
), attribute
))
1125 /* Building a distinct copy of a tagged type is inappropriate; it
1126 causes breakage in code that expects there to be a one-to-one
1127 relationship between a struct and its fields.
1128 build_duplicate_type is another solution (as used in
1129 handle_transparent_union_attribute), but that doesn't play well
1130 with the stronger C++ type identity model. */
1131 if (TREE_CODE (ttype
) == RECORD_TYPE
1132 || TREE_CODE (ttype
) == UNION_TYPE
1133 || TREE_CODE (ttype
) == QUAL_UNION_TYPE
1134 || TREE_CODE (ttype
) == ENUMERAL_TYPE
)
1136 warning (OPT_Wattributes
,
1137 "ignoring attributes applied to %qT after definition",
1138 TYPE_MAIN_VARIANT (ttype
));
1139 return build_qualified_type (ttype
, quals
);
1142 ttype
= build_qualified_type (ttype
, TYPE_UNQUALIFIED
);
1143 if (lang_hooks
.types
.copy_lang_qualifiers
1144 && otype
!= TYPE_MAIN_VARIANT (otype
))
1145 ttype
= (lang_hooks
.types
.copy_lang_qualifiers
1146 (ttype
, TYPE_MAIN_VARIANT (otype
)));
1148 tree dtype
= ntype
= build_distinct_type_copy (ttype
);
1150 TYPE_ATTRIBUTES (ntype
) = attribute
;
1152 hashval_t hash
= type_hash_canon_hash (ntype
);
1153 ntype
= type_hash_canon (hash
, ntype
);
1156 /* This variant was already in the hash table, don't mess with
1158 else if (TYPE_STRUCTURAL_EQUALITY_P (ttype
)
1159 || !comp_type_attributes (ntype
, ttype
))
1160 /* If the target-dependent attributes make NTYPE different from
1161 its canonical type, we will need to use structural equality
1162 checks for this type.
1164 We shouldn't get here for stripping attributes from a type;
1165 the no-attribute type might not need structural comparison. But
1166 we can if was discarded from type_hash_table. */
1167 SET_TYPE_STRUCTURAL_EQUALITY (ntype
);
1168 else if (TYPE_CANONICAL (ntype
) == ntype
)
1169 TYPE_CANONICAL (ntype
) = TYPE_CANONICAL (ttype
);
1171 ttype
= build_qualified_type (ntype
, quals
);
1172 if (lang_hooks
.types
.copy_lang_qualifiers
1173 && otype
!= TYPE_MAIN_VARIANT (otype
))
1174 ttype
= lang_hooks
.types
.copy_lang_qualifiers (ttype
, otype
);
1176 else if (TYPE_QUALS (ttype
) != quals
)
1177 ttype
= build_qualified_type (ttype
, quals
);
1182 /* Compare two identifier nodes representing attributes.
1183 Return true if they are the same, false otherwise. */
1186 cmp_attrib_identifiers (const_tree attr1
, const_tree attr2
)
1188 /* Make sure we're dealing with IDENTIFIER_NODEs. */
1189 gcc_checking_assert (TREE_CODE (attr1
) == IDENTIFIER_NODE
1190 && TREE_CODE (attr2
) == IDENTIFIER_NODE
);
1192 /* Identifiers can be compared directly for equality. */
1196 return cmp_attribs (IDENTIFIER_POINTER (attr1
), IDENTIFIER_LENGTH (attr1
),
1197 IDENTIFIER_POINTER (attr2
), IDENTIFIER_LENGTH (attr2
));
1200 /* Compare two constructor-element-type constants. Return 1 if the lists
1201 are known to be equal; otherwise return 0. */
1204 simple_cst_list_equal (const_tree l1
, const_tree l2
)
1206 while (l1
!= NULL_TREE
&& l2
!= NULL_TREE
)
1208 if (simple_cst_equal (TREE_VALUE (l1
), TREE_VALUE (l2
)) != 1)
1211 l1
= TREE_CHAIN (l1
);
1212 l2
= TREE_CHAIN (l2
);
1218 /* Check if "omp declare simd" attribute arguments, CLAUSES1 and CLAUSES2, are
1222 omp_declare_simd_clauses_equal (tree clauses1
, tree clauses2
)
1225 for (cl1
= clauses1
, cl2
= clauses2
;
1227 cl1
= OMP_CLAUSE_CHAIN (cl1
), cl2
= OMP_CLAUSE_CHAIN (cl2
))
1229 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_CODE (cl2
))
1231 if (OMP_CLAUSE_CODE (cl1
) != OMP_CLAUSE_SIMDLEN
)
1233 if (simple_cst_equal (OMP_CLAUSE_DECL (cl1
),
1234 OMP_CLAUSE_DECL (cl2
)) != 1)
1237 switch (OMP_CLAUSE_CODE (cl1
))
1239 case OMP_CLAUSE_ALIGNED
:
1240 if (simple_cst_equal (OMP_CLAUSE_ALIGNED_ALIGNMENT (cl1
),
1241 OMP_CLAUSE_ALIGNED_ALIGNMENT (cl2
)) != 1)
1244 case OMP_CLAUSE_LINEAR
:
1245 if (simple_cst_equal (OMP_CLAUSE_LINEAR_STEP (cl1
),
1246 OMP_CLAUSE_LINEAR_STEP (cl2
)) != 1)
1249 case OMP_CLAUSE_SIMDLEN
:
1250 if (simple_cst_equal (OMP_CLAUSE_SIMDLEN_EXPR (cl1
),
1251 OMP_CLAUSE_SIMDLEN_EXPR (cl2
)) != 1)
1261 /* Compare two attributes for their value identity. Return true if the
1262 attribute values are known to be equal; otherwise return false. */
1265 attribute_value_equal (const_tree attr1
, const_tree attr2
)
1267 if (TREE_VALUE (attr1
) == TREE_VALUE (attr2
))
1270 if (TREE_VALUE (attr1
) != NULL_TREE
1271 && TREE_CODE (TREE_VALUE (attr1
)) == TREE_LIST
1272 && TREE_VALUE (attr2
) != NULL_TREE
1273 && TREE_CODE (TREE_VALUE (attr2
)) == TREE_LIST
)
1275 /* Handle attribute format. */
1276 if (is_attribute_p ("format", get_attribute_name (attr1
)))
1278 attr1
= TREE_VALUE (attr1
);
1279 attr2
= TREE_VALUE (attr2
);
1280 /* Compare the archetypes (printf/scanf/strftime/...). */
1281 if (!cmp_attrib_identifiers (TREE_VALUE (attr1
), TREE_VALUE (attr2
)))
1283 /* Archetypes are the same. Compare the rest. */
1284 return (simple_cst_list_equal (TREE_CHAIN (attr1
),
1285 TREE_CHAIN (attr2
)) == 1);
1287 return (simple_cst_list_equal (TREE_VALUE (attr1
),
1288 TREE_VALUE (attr2
)) == 1);
1291 if (TREE_VALUE (attr1
)
1292 && TREE_CODE (TREE_VALUE (attr1
)) == OMP_CLAUSE
1293 && TREE_VALUE (attr2
)
1294 && TREE_CODE (TREE_VALUE (attr2
)) == OMP_CLAUSE
)
1295 return omp_declare_simd_clauses_equal (TREE_VALUE (attr1
),
1296 TREE_VALUE (attr2
));
1298 return (simple_cst_equal (TREE_VALUE (attr1
), TREE_VALUE (attr2
)) == 1);
1301 /* Return 0 if the attributes for two types are incompatible, 1 if they
1302 are compatible, and 2 if they are nearly compatible (which causes a
1303 warning to be generated). */
1305 comp_type_attributes (const_tree type1
, const_tree type2
)
1307 const_tree a1
= TYPE_ATTRIBUTES (type1
);
1308 const_tree a2
= TYPE_ATTRIBUTES (type2
);
1313 for (a
= a1
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
1315 const struct attribute_spec
*as
;
1318 as
= lookup_attribute_spec (get_attribute_name (a
));
1319 if (!as
|| as
->affects_type_identity
== false)
1322 attr
= lookup_attribute (as
->name
, CONST_CAST_TREE (a2
));
1323 if (!attr
|| !attribute_value_equal (a
, attr
))
1328 for (a
= a2
; a
!= NULL_TREE
; a
= TREE_CHAIN (a
))
1330 const struct attribute_spec
*as
;
1332 as
= lookup_attribute_spec (get_attribute_name (a
));
1333 if (!as
|| as
->affects_type_identity
== false)
1336 if (!lookup_attribute (as
->name
, CONST_CAST_TREE (a1
)))
1338 /* We don't need to compare trees again, as we did this
1339 already in first loop. */
1341 /* All types - affecting identity - are equal, so
1342 there is no need to call target hook for comparison. */
1346 if (lookup_attribute ("transaction_safe", CONST_CAST_TREE (a
)))
1348 if ((lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (type1
)) != NULL
)
1349 ^ (lookup_attribute ("nocf_check", TYPE_ATTRIBUTES (type2
)) != NULL
))
1351 /* As some type combinations - like default calling-convention - might
1352 be compatible, we have to call the target hook to get the final result. */
1353 return targetm
.comp_type_attributes (type1
, type2
);
1356 /* Return a type like TTYPE except that its TYPE_ATTRIBUTE
1359 Record such modified types already made so we don't make duplicates. */
1362 build_type_attribute_variant (tree ttype
, tree attribute
)
1364 return build_type_attribute_qual_variant (ttype
, attribute
,
1365 TYPE_QUALS (ttype
));
1368 /* A variant of lookup_attribute() that can be used with an identifier
1369 as the first argument, and where the identifier can be either
1370 'text' or '__text__'.
1372 Given an attribute ATTR_IDENTIFIER, and a list of attributes LIST,
1373 return a pointer to the attribute's list element if the attribute
1374 is part of the list, or NULL_TREE if not found. If the attribute
1375 appears more than once, this only returns the first occurrence; the
1376 TREE_CHAIN of the return value should be passed back in if further
1377 occurrences are wanted. ATTR_IDENTIFIER must be an identifier but
1378 can be in the form 'text' or '__text__'. */
1380 lookup_ident_attribute (tree attr_identifier
, tree list
)
1382 gcc_checking_assert (TREE_CODE (attr_identifier
) == IDENTIFIER_NODE
);
1386 gcc_checking_assert (TREE_CODE (get_attribute_name (list
))
1387 == IDENTIFIER_NODE
);
1389 if (cmp_attrib_identifiers (attr_identifier
,
1390 get_attribute_name (list
)))
1393 list
= TREE_CHAIN (list
);
1399 /* Remove any instances of attribute ATTR_NAME in LIST and return the
1403 remove_attribute (const char *attr_name
, tree list
)
1406 gcc_checking_assert (attr_name
[0] != '_');
1408 for (p
= &list
; *p
;)
1412 tree attr
= get_attribute_name (l
);
1413 if (is_attribute_p (attr_name
, attr
))
1414 *p
= TREE_CHAIN (l
);
1416 p
= &TREE_CHAIN (l
);
1422 /* Return an attribute list that is the union of a1 and a2. */
1425 merge_attributes (tree a1
, tree a2
)
1429 /* Either one unset? Take the set one. */
1431 if ((attributes
= a1
) == 0)
1434 /* One that completely contains the other? Take it. */
1436 else if (a2
!= 0 && ! attribute_list_contained (a1
, a2
))
1438 if (attribute_list_contained (a2
, a1
))
1442 /* Pick the longest list, and hang on the other list. */
1444 if (list_length (a1
) < list_length (a2
))
1445 attributes
= a2
, a2
= a1
;
1447 for (; a2
!= 0; a2
= TREE_CHAIN (a2
))
1450 for (a
= lookup_ident_attribute (get_attribute_name (a2
),
1452 a
!= NULL_TREE
&& !attribute_value_equal (a
, a2
);
1453 a
= lookup_ident_attribute (get_attribute_name (a2
),
1458 a1
= copy_node (a2
);
1459 TREE_CHAIN (a1
) = attributes
;
1468 /* Given types T1 and T2, merge their attributes and return
1472 merge_type_attributes (tree t1
, tree t2
)
1474 return merge_attributes (TYPE_ATTRIBUTES (t1
),
1475 TYPE_ATTRIBUTES (t2
));
1478 /* Given decls OLDDECL and NEWDECL, merge their attributes and return
1482 merge_decl_attributes (tree olddecl
, tree newdecl
)
1484 return merge_attributes (DECL_ATTRIBUTES (olddecl
),
1485 DECL_ATTRIBUTES (newdecl
));
1488 /* Duplicate all attributes with name NAME in ATTR list to *ATTRS if
1489 they are missing there. */
1492 duplicate_one_attribute (tree
*attrs
, tree attr
, const char *name
)
1494 attr
= lookup_attribute (name
, attr
);
1497 tree a
= lookup_attribute (name
, *attrs
);
1501 for (a2
= a
; a2
; a2
= lookup_attribute (name
, TREE_CHAIN (a2
)))
1502 if (attribute_value_equal (attr
, a2
))
1506 a2
= copy_node (attr
);
1507 TREE_CHAIN (a2
) = *attrs
;
1510 attr
= lookup_attribute (name
, TREE_CHAIN (attr
));
1514 /* Duplicate all attributes from user DECL to the corresponding
1515 builtin that should be propagated. */
1518 copy_attributes_to_builtin (tree decl
)
1520 tree b
= builtin_decl_explicit (DECL_FUNCTION_CODE (decl
));
1522 duplicate_one_attribute (&DECL_ATTRIBUTES (b
),
1523 DECL_ATTRIBUTES (decl
), "omp declare simd");
1526 #if TARGET_DLLIMPORT_DECL_ATTRIBUTES
1528 /* Specialization of merge_decl_attributes for various Windows targets.
1530 This handles the following situation:
1532 __declspec (dllimport) int foo;
1535 The second instance of `foo' nullifies the dllimport. */
1538 merge_dllimport_decl_attributes (tree old
, tree new_tree
)
1541 int delete_dllimport_p
= 1;
1543 /* What we need to do here is remove from `old' dllimport if it doesn't
1544 appear in `new'. dllimport behaves like extern: if a declaration is
1545 marked dllimport and a definition appears later, then the object
1546 is not dllimport'd. We also remove a `new' dllimport if the old list
1547 contains dllexport: dllexport always overrides dllimport, regardless
1548 of the order of declaration. */
1549 if (!VAR_OR_FUNCTION_DECL_P (new_tree
))
1550 delete_dllimport_p
= 0;
1551 else if (DECL_DLLIMPORT_P (new_tree
)
1552 && lookup_attribute ("dllexport", DECL_ATTRIBUTES (old
)))
1554 DECL_DLLIMPORT_P (new_tree
) = 0;
1555 warning (OPT_Wattributes
, "%q+D already declared with dllexport "
1556 "attribute: dllimport ignored", new_tree
);
1558 else if (DECL_DLLIMPORT_P (old
) && !DECL_DLLIMPORT_P (new_tree
))
1560 /* Warn about overriding a symbol that has already been used, e.g.:
1561 extern int __attribute__ ((dllimport)) foo;
1562 int* bar () {return &foo;}
1565 if (TREE_USED (old
))
1567 warning (0, "%q+D redeclared without dllimport attribute "
1568 "after being referenced with dll linkage", new_tree
);
1569 /* If we have used a variable's address with dllimport linkage,
1570 keep the old DECL_DLLIMPORT_P flag: the ADDR_EXPR using the
1571 decl may already have had TREE_CONSTANT computed.
1572 We still remove the attribute so that assembler code refers
1573 to '&foo rather than '_imp__foo'. */
1574 if (VAR_P (old
) && TREE_ADDRESSABLE (old
))
1575 DECL_DLLIMPORT_P (new_tree
) = 1;
1578 /* Let an inline definition silently override the external reference,
1579 but otherwise warn about attribute inconsistency. */
1580 else if (VAR_P (new_tree
) || !DECL_DECLARED_INLINE_P (new_tree
))
1581 warning (OPT_Wattributes
, "%q+D redeclared without dllimport "
1582 "attribute: previous dllimport ignored", new_tree
);
1585 delete_dllimport_p
= 0;
1587 a
= merge_attributes (DECL_ATTRIBUTES (old
), DECL_ATTRIBUTES (new_tree
));
1589 if (delete_dllimport_p
)
1590 a
= remove_attribute ("dllimport", a
);
1595 /* Handle a "dllimport" or "dllexport" attribute; arguments as in
1596 struct attribute_spec.handler. */
1599 handle_dll_attribute (tree
* pnode
, tree name
, tree args
, int flags
,
1605 /* These attributes may apply to structure and union types being created,
1606 but otherwise should pass to the declaration involved. */
1609 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
| (int) ATTR_FLAG_FUNCTION_NEXT
1610 | (int) ATTR_FLAG_ARRAY_NEXT
))
1612 *no_add_attrs
= true;
1613 return tree_cons (name
, args
, NULL_TREE
);
1615 if (TREE_CODE (node
) == RECORD_TYPE
1616 || TREE_CODE (node
) == UNION_TYPE
)
1618 node
= TYPE_NAME (node
);
1624 warning (OPT_Wattributes
, "%qE attribute ignored",
1626 *no_add_attrs
= true;
1631 if (!VAR_OR_FUNCTION_DECL_P (node
) && TREE_CODE (node
) != TYPE_DECL
)
1633 *no_add_attrs
= true;
1634 warning (OPT_Wattributes
, "%qE attribute ignored",
1639 if (TREE_CODE (node
) == TYPE_DECL
1640 && TREE_CODE (TREE_TYPE (node
)) != RECORD_TYPE
1641 && TREE_CODE (TREE_TYPE (node
)) != UNION_TYPE
)
1643 *no_add_attrs
= true;
1644 warning (OPT_Wattributes
, "%qE attribute ignored",
1649 is_dllimport
= is_attribute_p ("dllimport", name
);
1651 /* Report error on dllimport ambiguities seen now before they cause
1655 /* Honor any target-specific overrides. */
1656 if (!targetm
.valid_dllimport_attribute_p (node
))
1657 *no_add_attrs
= true;
1659 else if (TREE_CODE (node
) == FUNCTION_DECL
1660 && DECL_DECLARED_INLINE_P (node
))
1662 warning (OPT_Wattributes
, "inline function %q+D declared as "
1663 " dllimport: attribute ignored", node
);
1664 *no_add_attrs
= true;
1666 /* Like MS, treat definition of dllimported variables and
1667 non-inlined functions on declaration as syntax errors. */
1668 else if (TREE_CODE (node
) == FUNCTION_DECL
&& DECL_INITIAL (node
))
1670 error ("function %q+D definition is marked dllimport", node
);
1671 *no_add_attrs
= true;
1674 else if (VAR_P (node
))
1676 if (DECL_INITIAL (node
))
1678 error ("variable %q+D definition is marked dllimport",
1680 *no_add_attrs
= true;
1683 /* `extern' needn't be specified with dllimport.
1684 Specify `extern' now and hope for the best. Sigh. */
1685 DECL_EXTERNAL (node
) = 1;
1686 /* Also, implicitly give dllimport'd variables declared within
1687 a function global scope, unless declared static. */
1688 if (current_function_decl
!= NULL_TREE
&& !TREE_STATIC (node
))
1689 TREE_PUBLIC (node
) = 1;
1692 if (*no_add_attrs
== false)
1693 DECL_DLLIMPORT_P (node
) = 1;
1695 else if (TREE_CODE (node
) == FUNCTION_DECL
1696 && DECL_DECLARED_INLINE_P (node
)
1697 && flag_keep_inline_dllexport
)
1698 /* An exported function, even if inline, must be emitted. */
1699 DECL_EXTERNAL (node
) = 0;
1701 /* Report error if symbol is not accessible at global scope. */
1702 if (!TREE_PUBLIC (node
) && VAR_OR_FUNCTION_DECL_P (node
))
1704 error ("external linkage required for symbol %q+D because of "
1705 "%qE attribute", node
, name
);
1706 *no_add_attrs
= true;
1709 /* A dllexport'd entity must have default visibility so that other
1710 program units (shared libraries or the main executable) can see
1711 it. A dllimport'd entity must have default visibility so that
1712 the linker knows that undefined references within this program
1713 unit can be resolved by the dynamic linker. */
1716 if (DECL_VISIBILITY_SPECIFIED (node
)
1717 && DECL_VISIBILITY (node
) != VISIBILITY_DEFAULT
)
1718 error ("%qE implies default visibility, but %qD has already "
1719 "been declared with a different visibility",
1721 DECL_VISIBILITY (node
) = VISIBILITY_DEFAULT
;
1722 DECL_VISIBILITY_SPECIFIED (node
) = 1;
1728 #endif /* TARGET_DLLIMPORT_DECL_ATTRIBUTES */
1730 /* Given two lists of attributes, return true if list l2 is
1731 equivalent to l1. */
1734 attribute_list_equal (const_tree l1
, const_tree l2
)
1739 return attribute_list_contained (l1
, l2
)
1740 && attribute_list_contained (l2
, l1
);
1743 /* Given two lists of attributes, return true if list L2 is
1744 completely contained within L1. */
1745 /* ??? This would be faster if attribute names were stored in a canonicalized
1746 form. Otherwise, if L1 uses `foo' and L2 uses `__foo__', the long method
1747 must be used to show these elements are equivalent (which they are). */
1748 /* ??? It's not clear that attributes with arguments will always be handled
1752 attribute_list_contained (const_tree l1
, const_tree l2
)
1756 /* First check the obvious, maybe the lists are identical. */
1760 /* Maybe the lists are similar. */
1761 for (t1
= l1
, t2
= l2
;
1763 && get_attribute_name (t1
) == get_attribute_name (t2
)
1764 && TREE_VALUE (t1
) == TREE_VALUE (t2
);
1765 t1
= TREE_CHAIN (t1
), t2
= TREE_CHAIN (t2
))
1768 /* Maybe the lists are equal. */
1769 if (t1
== 0 && t2
== 0)
1772 for (; t2
!= 0; t2
= TREE_CHAIN (t2
))
1775 /* This CONST_CAST is okay because lookup_attribute does not
1776 modify its argument and the return value is assigned to a
1778 for (attr
= lookup_ident_attribute (get_attribute_name (t2
),
1779 CONST_CAST_TREE (l1
));
1780 attr
!= NULL_TREE
&& !attribute_value_equal (t2
, attr
);
1781 attr
= lookup_ident_attribute (get_attribute_name (t2
),
1785 if (attr
== NULL_TREE
)
1792 /* The backbone of lookup_attribute(). ATTR_LEN is the string length
1793 of ATTR_NAME, and LIST is not NULL_TREE.
1795 The function is called from lookup_attribute in order to optimize
1799 private_lookup_attribute (const char *attr_name
, size_t attr_len
, tree list
)
1803 tree attr
= get_attribute_name (list
);
1804 size_t ident_len
= IDENTIFIER_LENGTH (attr
);
1805 if (cmp_attribs (attr_name
, attr_len
, IDENTIFIER_POINTER (attr
),
1808 list
= TREE_CHAIN (list
);
1819 /* Helper types to verify the consistency attribute exclusions. */
1821 typedef std::pair
<const char *, const char *> excl_pair
;
1823 struct excl_hash_traits
: typed_noop_remove
<excl_pair
>
1825 typedef excl_pair value_type
;
1826 typedef value_type compare_type
;
1828 static hashval_t
hash (const value_type
&x
)
1830 hashval_t h1
= htab_hash_string (x
.first
);
1831 hashval_t h2
= htab_hash_string (x
.second
);
1835 static bool equal (const value_type
&x
, const value_type
&y
)
1837 return !strcmp (x
.first
, y
.first
) && !strcmp (x
.second
, y
.second
);
1840 static void mark_deleted (value_type
&x
)
1842 x
= value_type (NULL
, NULL
);
1845 static void mark_empty (value_type
&x
)
1847 x
= value_type ("", "");
1850 static bool is_deleted (const value_type
&x
)
1852 return !x
.first
&& !x
.second
;
1855 static bool is_empty (const value_type
&x
)
1857 return !*x
.first
&& !*x
.second
;
1862 /* Self-test to verify that each attribute exclusion is symmetric,
1863 meaning that if attribute A is encoded as incompatible with
1864 attribute B then the opposite relationship is also encoded.
1865 This test also detects most cases of misspelled attribute names
1869 test_attribute_exclusions ()
1871 /* Iterate over the array of attribute tables first (with TI0 as
1872 the index) and over the array of attribute_spec in each table
1873 (with SI0 as the index). */
1874 const size_t ntables
= ARRAY_SIZE (attribute_tables
);
1876 /* Set of pairs of mutually exclusive attributes. */
1877 typedef hash_set
<excl_pair
, excl_hash_traits
> exclusion_set
;
1878 exclusion_set excl_set
;
1880 for (size_t ti0
= 0; ti0
!= ntables
; ++ti0
)
1881 for (size_t s0
= 0; attribute_tables
[ti0
][s0
].name
; ++s0
)
1883 const attribute_spec::exclusions
*excl
1884 = attribute_tables
[ti0
][s0
].exclude
;
1886 /* Skip each attribute that doesn't define exclusions. */
1890 const char *attr_name
= attribute_tables
[ti0
][s0
].name
;
1892 /* Iterate over the set of exclusions for every attribute
1893 (with EI0 as the index) adding the exclusions defined
1894 for each to the set. */
1895 for (size_t ei0
= 0; excl
[ei0
].name
; ++ei0
)
1897 const char *excl_name
= excl
[ei0
].name
;
1899 if (!strcmp (attr_name
, excl_name
))
1902 excl_set
.add (excl_pair (attr_name
, excl_name
));
1906 /* Traverse the set of mutually exclusive pairs of attributes
1907 and verify that they are symmetric. */
1908 for (exclusion_set::iterator it
= excl_set
.begin ();
1909 it
!= excl_set
.end ();
1912 if (!excl_set
.contains (excl_pair ((*it
).second
, (*it
).first
)))
1914 /* An exclusion for an attribute has been found that
1915 doesn't have a corresponding exclusion in the opposite
1918 sprintf (desc
, "'%s' attribute exclusion '%s' must be symmetric",
1919 (*it
).first
, (*it
).second
);
1920 fail (SELFTEST_LOCATION
, desc
);
1926 attribute_c_tests ()
1928 test_attribute_exclusions ();
1931 } /* namespace selftest */
1933 #endif /* CHECKING_P */