1 /* Functions dealing with attribute handling, used by most front ends.
2 Copyright (C) 1992-2013 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"
26 #include "diagnostic-core.h"
31 #include "langhooks.h"
32 #include "hash-table.h"
35 /* Table of the tables of attributes (common, language, format, machine)
37 static const struct attribute_spec
*attribute_tables
[4];
39 /* Substring representation. */
47 /* Simple hash function to avoid need to scan whole string. */
49 static inline hashval_t
50 substring_hash (const char *str
, int l
)
52 return str
[0] + str
[l
- 1] * 256 + l
* 65536;
55 /* Used for attribute_hash. */
57 struct attribute_hasher
: typed_noop_remove
<attribute_spec
>
59 typedef attribute_spec value_type
;
60 typedef substring compare_type
;
61 static inline hashval_t
hash (const value_type
*);
62 static inline bool equal (const value_type
*, const compare_type
*);
66 attribute_hasher::hash (const value_type
*spec
)
68 const int l
= strlen (spec
->name
);
69 return substring_hash (spec
->name
, l
);
73 attribute_hasher::equal (const value_type
*spec
, const compare_type
*str
)
75 return (strncmp (spec
->name
, str
->str
, str
->length
) == 0
76 && !spec
->name
[str
->length
]);
79 /* Scoped attribute name representation. */
81 struct scoped_attributes
84 vec
<attribute_spec
> attributes
;
85 hash_table
<attribute_hasher
> attribute_hash
;
88 /* The table of scope attributes. */
89 static vec
<scoped_attributes
> attributes_table
;
91 static scoped_attributes
* find_attribute_namespace (const char*);
92 static void register_scoped_attribute (const struct attribute_spec
*,
95 static bool attributes_initialized
= false;
97 /* Default empty table of attributes. */
99 static const struct attribute_spec empty_attribute_table
[] =
101 { NULL
, 0, 0, false, false, false, NULL
, false }
104 /* Return base name of the attribute. Ie '__attr__' is turned into 'attr'.
105 To avoid need for copying, we simply return length of the string. */
108 extract_attribute_substring (struct substring
*str
)
110 if (str
->length
> 4 && str
->str
[0] == '_' && str
->str
[1] == '_'
111 && str
->str
[str
->length
- 1] == '_' && str
->str
[str
->length
- 2] == '_')
118 /* Insert an array of attributes ATTRIBUTES into a namespace. This
119 array must be NULL terminated. NS is the name of attribute
120 namespace. The function returns the namespace into which the
121 attributes have been registered. */
124 register_scoped_attributes (const struct attribute_spec
* attributes
,
127 scoped_attributes
*result
= NULL
;
129 /* See if we already have attributes in the namespace NS. */
130 result
= find_attribute_namespace (ns
);
134 /* We don't have any namespace NS yet. Create one. */
135 scoped_attributes sa
;
137 if (!attributes_table
.is_empty ())
138 attributes_table
.create (64);
140 memset (&sa
, 0, sizeof (sa
));
142 sa
.attributes
.create (64);
143 result
= attributes_table
.safe_push (sa
);
144 result
->attribute_hash
.create (200);
147 /* Really add the attributes to their namespace now. */
148 for (unsigned i
= 0; attributes
[i
].name
!= NULL
; ++i
)
150 result
->attributes
.safe_push (attributes
[i
]);
151 register_scoped_attribute (&attributes
[i
], result
);
154 gcc_assert (result
!= NULL
);
159 /* Return the namespace which name is NS, NULL if none exist. */
161 static scoped_attributes
*
162 find_attribute_namespace (const char* ns
)
165 scoped_attributes
*iter
;
167 FOR_EACH_VEC_ELT (attributes_table
, ix
, iter
)
171 && !strcmp (iter
->ns
, ns
)))
176 /* Initialize attribute tables, and make some sanity checks
177 if --enable-checking. */
180 init_attributes (void)
184 if (attributes_initialized
)
187 attribute_tables
[0] = lang_hooks
.common_attribute_table
;
188 attribute_tables
[1] = lang_hooks
.attribute_table
;
189 attribute_tables
[2] = lang_hooks
.format_attribute_table
;
190 attribute_tables
[3] = targetm
.attribute_table
;
192 /* Translate NULL pointers to pointers to the empty table. */
193 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
194 if (attribute_tables
[i
] == NULL
)
195 attribute_tables
[i
] = empty_attribute_table
;
197 #ifdef ENABLE_CHECKING
198 /* Make some sanity checks on the attribute tables. */
199 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
203 for (j
= 0; attribute_tables
[i
][j
].name
!= NULL
; j
++)
205 /* The name must not begin and end with __. */
206 const char *name
= attribute_tables
[i
][j
].name
;
207 int len
= strlen (name
);
209 gcc_assert (!(name
[0] == '_' && name
[1] == '_'
210 && name
[len
- 1] == '_' && name
[len
- 2] == '_'));
212 /* The minimum and maximum lengths must be consistent. */
213 gcc_assert (attribute_tables
[i
][j
].min_length
>= 0);
215 gcc_assert (attribute_tables
[i
][j
].max_length
== -1
216 || (attribute_tables
[i
][j
].max_length
217 >= attribute_tables
[i
][j
].min_length
));
219 /* An attribute cannot require both a DECL and a TYPE. */
220 gcc_assert (!attribute_tables
[i
][j
].decl_required
221 || !attribute_tables
[i
][j
].type_required
);
223 /* If an attribute requires a function type, in particular
224 it requires a type. */
225 gcc_assert (!attribute_tables
[i
][j
].function_type_required
226 || attribute_tables
[i
][j
].type_required
);
230 /* Check that each name occurs just once in each table. */
231 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
234 for (j
= 0; attribute_tables
[i
][j
].name
!= NULL
; j
++)
235 for (k
= j
+ 1; attribute_tables
[i
][k
].name
!= NULL
; k
++)
236 gcc_assert (strcmp (attribute_tables
[i
][j
].name
,
237 attribute_tables
[i
][k
].name
));
239 /* Check that no name occurs in more than one table. Names that
240 begin with '*' are exempt, and may be overridden. */
241 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); i
++)
245 for (j
= i
+ 1; j
< ARRAY_SIZE (attribute_tables
); j
++)
246 for (k
= 0; attribute_tables
[i
][k
].name
!= NULL
; k
++)
247 for (l
= 0; attribute_tables
[j
][l
].name
!= NULL
; l
++)
248 gcc_assert (attribute_tables
[i
][k
].name
[0] == '*'
249 || strcmp (attribute_tables
[i
][k
].name
,
250 attribute_tables
[j
][l
].name
));
254 for (i
= 0; i
< ARRAY_SIZE (attribute_tables
); ++i
)
255 /* Put all the GNU attributes into the "gnu" namespace. */
256 register_scoped_attributes (attribute_tables
[i
], "gnu");
258 invoke_plugin_callbacks (PLUGIN_ATTRIBUTES
, NULL
);
259 attributes_initialized
= true;
262 /* Insert a single ATTR into the attribute table. */
265 register_attribute (const struct attribute_spec
*attr
)
267 register_scoped_attribute (attr
, find_attribute_namespace ("gnu"));
270 /* Insert a single attribute ATTR into a namespace of attributes. */
273 register_scoped_attribute (const struct attribute_spec
*attr
,
274 scoped_attributes
*name_space
)
276 struct substring str
;
277 attribute_spec
**slot
;
279 gcc_assert (attr
!= NULL
&& name_space
!= NULL
);
281 gcc_assert (name_space
->attribute_hash
.is_created ());
283 str
.str
= attr
->name
;
284 str
.length
= strlen (str
.str
);
286 /* Attribute names in the table must be in the form 'text' and not
287 in the form '__text__'. */
288 gcc_assert (str
.length
> 0 && str
.str
[0] != '_');
290 slot
= name_space
->attribute_hash
291 .find_slot_with_hash (&str
, substring_hash (str
.str
, str
.length
),
293 gcc_assert (!*slot
|| attr
->name
[0] == '*');
294 *slot
= CONST_CAST (struct attribute_spec
*, attr
);
297 /* Return the spec for the scoped attribute with namespace NS and
300 const struct attribute_spec
*
301 lookup_scoped_attribute_spec (const_tree ns
, const_tree name
)
303 struct substring attr
;
304 scoped_attributes
*attrs
;
306 const char *ns_str
= (ns
!= NULL_TREE
) ? IDENTIFIER_POINTER (ns
): NULL
;
308 attrs
= find_attribute_namespace (ns_str
);
313 attr
.str
= IDENTIFIER_POINTER (name
);
314 attr
.length
= IDENTIFIER_LENGTH (name
);
315 extract_attribute_substring (&attr
);
316 return attrs
->attribute_hash
.find_with_hash (&attr
,
317 substring_hash (attr
.str
, attr
.length
));
320 /* Return the spec for the attribute named NAME. If NAME is a TREE_LIST,
321 it also specifies the attribute namespace. */
323 const struct attribute_spec
*
324 lookup_attribute_spec (const_tree name
)
327 if (TREE_CODE (name
) == TREE_LIST
)
329 ns
= TREE_PURPOSE (name
);
330 name
= TREE_VALUE (name
);
333 ns
= get_identifier ("gnu");
334 return lookup_scoped_attribute_spec (ns
, name
);
338 /* Process the attributes listed in ATTRIBUTES and install them in *NODE,
339 which is either a DECL (including a TYPE_DECL) or a TYPE. If a DECL,
340 it should be modified in place; if a TYPE, a copy should be created
341 unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS. FLAGS gives further
342 information, in the form of a bitwise OR of flags in enum attribute_flags
343 from tree.h. Depending on these flags, some attributes may be
344 returned to be applied at a later stage (for example, to apply
345 a decl attribute to the declaration rather than to its type). */
348 decl_attributes (tree
*node
, tree attributes
, int flags
)
351 tree returned_attrs
= NULL_TREE
;
353 if (TREE_TYPE (*node
) == error_mark_node
|| attributes
== error_mark_node
)
356 if (!attributes_initialized
)
359 /* If this is a function and the user used #pragma GCC optimize, add the
360 options to the attribute((optimize(...))) list. */
361 if (TREE_CODE (*node
) == FUNCTION_DECL
&& current_optimize_pragma
)
363 tree cur_attr
= lookup_attribute ("optimize", attributes
);
364 tree opts
= copy_list (current_optimize_pragma
);
368 = tree_cons (get_identifier ("optimize"), opts
, attributes
);
370 TREE_VALUE (cur_attr
) = chainon (opts
, TREE_VALUE (cur_attr
));
373 if (TREE_CODE (*node
) == FUNCTION_DECL
374 && optimization_current_node
!= optimization_default_node
375 && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node
))
376 DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node
) = optimization_current_node
;
378 /* If this is a function and the user used #pragma GCC target, add the
379 options to the attribute((target(...))) list. */
380 if (TREE_CODE (*node
) == FUNCTION_DECL
381 && current_target_pragma
382 && targetm
.target_option
.valid_attribute_p (*node
, NULL_TREE
,
383 current_target_pragma
, 0))
385 tree cur_attr
= lookup_attribute ("target", attributes
);
386 tree opts
= copy_list (current_target_pragma
);
389 attributes
= tree_cons (get_identifier ("target"), opts
, attributes
);
391 TREE_VALUE (cur_attr
) = chainon (opts
, TREE_VALUE (cur_attr
));
394 /* A "naked" function attribute implies "noinline" and "noclone" for
395 those targets that support it. */
396 if (TREE_CODE (*node
) == FUNCTION_DECL
398 && lookup_attribute_spec (get_identifier ("naked"))
399 && lookup_attribute ("naked", attributes
) != NULL
)
401 if (lookup_attribute ("noinline", attributes
) == NULL
)
402 attributes
= tree_cons (get_identifier ("noinline"), NULL
, attributes
);
404 if (lookup_attribute ("noclone", attributes
) == NULL
)
405 attributes
= tree_cons (get_identifier ("noclone"), NULL
, attributes
);
408 targetm
.insert_attributes (*node
, &attributes
);
410 for (a
= attributes
; a
; a
= TREE_CHAIN (a
))
412 tree ns
= get_attribute_namespace (a
);
413 tree name
= get_attribute_name (a
);
414 tree args
= TREE_VALUE (a
);
416 const struct attribute_spec
*spec
=
417 lookup_scoped_attribute_spec (ns
, name
);
418 bool no_add_attrs
= 0;
419 int fn_ptr_quals
= 0;
420 tree fn_ptr_tmp
= NULL_TREE
;
424 if (!(flags
& (int) ATTR_FLAG_BUILT_IN
))
426 if (ns
== NULL_TREE
|| !cxx11_attribute_p (a
))
427 warning (OPT_Wattributes
, "%qE attribute directive ignored",
430 warning (OPT_Wattributes
,
431 "%<%E::%E%> scoped attribute directive ignored",
436 else if (list_length (args
) < spec
->min_length
437 || (spec
->max_length
>= 0
438 && list_length (args
) > spec
->max_length
))
440 error ("wrong number of arguments specified for %qE attribute",
444 gcc_assert (is_attribute_p (spec
->name
, name
));
447 && cxx11_attribute_p (a
)
448 && !(flags
& ATTR_FLAG_TYPE_IN_PLACE
))
450 /* This is a c++11 attribute that appertains to a
451 type-specifier, outside of the definition of, a class
453 warning (OPT_Wattributes
, "attribute ignored");
454 inform (input_location
,
455 "an attribute that appertains to a type-specifier "
460 if (spec
->decl_required
&& !DECL_P (*anode
))
462 if (flags
& ((int) ATTR_FLAG_DECL_NEXT
463 | (int) ATTR_FLAG_FUNCTION_NEXT
464 | (int) ATTR_FLAG_ARRAY_NEXT
))
466 /* Pass on this attribute to be tried again. */
467 returned_attrs
= tree_cons (name
, args
, returned_attrs
);
472 warning (OPT_Wattributes
, "%qE attribute does not apply to types",
478 /* If we require a type, but were passed a decl, set up to make a
479 new type and update the one in the decl. ATTR_FLAG_TYPE_IN_PLACE
480 would have applied if we'd been passed a type, but we cannot modify
481 the decl's type in place here. */
482 if (spec
->type_required
&& DECL_P (*anode
))
484 anode
= &TREE_TYPE (*anode
);
485 /* Allow ATTR_FLAG_TYPE_IN_PLACE for the type's naming decl. */
486 if (!(TREE_CODE (*anode
) == TYPE_DECL
487 && *anode
== TYPE_NAME (TYPE_MAIN_VARIANT
488 (TREE_TYPE (*anode
)))))
489 flags
&= ~(int) ATTR_FLAG_TYPE_IN_PLACE
;
492 if (spec
->function_type_required
&& TREE_CODE (*anode
) != FUNCTION_TYPE
493 && TREE_CODE (*anode
) != METHOD_TYPE
)
495 if (TREE_CODE (*anode
) == POINTER_TYPE
496 && (TREE_CODE (TREE_TYPE (*anode
)) == FUNCTION_TYPE
497 || TREE_CODE (TREE_TYPE (*anode
)) == METHOD_TYPE
))
499 /* OK, this is a bit convoluted. We can't just make a copy
500 of the pointer type and modify its TREE_TYPE, because if
501 we change the attributes of the target type the pointer
502 type needs to have a different TYPE_MAIN_VARIANT. So we
503 pull out the target type now, frob it as appropriate, and
504 rebuild the pointer type later.
506 This would all be simpler if attributes were part of the
507 declarator, grumble grumble. */
508 fn_ptr_tmp
= TREE_TYPE (*anode
);
509 fn_ptr_quals
= TYPE_QUALS (*anode
);
511 flags
&= ~(int) ATTR_FLAG_TYPE_IN_PLACE
;
513 else if (flags
& (int) ATTR_FLAG_FUNCTION_NEXT
)
515 /* Pass on this attribute to be tried again. */
516 returned_attrs
= tree_cons (name
, args
, returned_attrs
);
520 if (TREE_CODE (*anode
) != FUNCTION_TYPE
521 && TREE_CODE (*anode
) != METHOD_TYPE
)
523 warning (OPT_Wattributes
,
524 "%qE attribute only applies to function types",
531 && (flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
)
532 && TYPE_SIZE (*anode
) != NULL_TREE
)
534 warning (OPT_Wattributes
, "type attributes ignored after type is already defined");
538 if (spec
->handler
!= NULL
)
541 cxx11_attribute_p (a
) ? ATTR_FLAG_CXX11
: 0;
543 returned_attrs
= chainon ((*spec
->handler
) (anode
, name
, args
,
549 /* Layout the decl in case anything changed. */
550 if (spec
->type_required
&& DECL_P (*node
)
551 && (TREE_CODE (*node
) == VAR_DECL
552 || TREE_CODE (*node
) == PARM_DECL
553 || TREE_CODE (*node
) == RESULT_DECL
))
554 relayout_decl (*node
);
562 old_attrs
= DECL_ATTRIBUTES (*anode
);
564 old_attrs
= TYPE_ATTRIBUTES (*anode
);
566 for (a
= lookup_attribute (spec
->name
, old_attrs
);
568 a
= lookup_attribute (spec
->name
, TREE_CHAIN (a
)))
570 if (simple_cst_equal (TREE_VALUE (a
), args
) == 1)
576 /* This attribute isn't already in the list. */
578 DECL_ATTRIBUTES (*anode
) = tree_cons (name
, args
, old_attrs
);
579 else if (flags
& (int) ATTR_FLAG_TYPE_IN_PLACE
)
581 TYPE_ATTRIBUTES (*anode
) = tree_cons (name
, args
, old_attrs
);
582 /* If this is the main variant, also push the attributes
583 out to the other variants. */
584 if (*anode
== TYPE_MAIN_VARIANT (*anode
))
587 for (variant
= *anode
; variant
;
588 variant
= TYPE_NEXT_VARIANT (variant
))
590 if (TYPE_ATTRIBUTES (variant
) == old_attrs
)
591 TYPE_ATTRIBUTES (variant
)
592 = TYPE_ATTRIBUTES (*anode
);
593 else if (!lookup_attribute
594 (spec
->name
, TYPE_ATTRIBUTES (variant
)))
595 TYPE_ATTRIBUTES (variant
) = tree_cons
596 (name
, args
, TYPE_ATTRIBUTES (variant
));
601 *anode
= build_type_attribute_variant (*anode
,
602 tree_cons (name
, args
,
609 /* Rebuild the function pointer type and put it in the
610 appropriate place. */
611 fn_ptr_tmp
= build_pointer_type (fn_ptr_tmp
);
613 fn_ptr_tmp
= build_qualified_type (fn_ptr_tmp
, fn_ptr_quals
);
615 TREE_TYPE (*node
) = fn_ptr_tmp
;
618 gcc_assert (TREE_CODE (*node
) == POINTER_TYPE
);
624 return returned_attrs
;
627 /* Return TRUE iff ATTR has been parsed by the front-end as a C++-11
630 When G++ parses a C++11 attribute, it is represented as
631 a TREE_LIST which TREE_PURPOSE is itself a TREE_LIST. TREE_PURPOSE
632 (TREE_PURPOSE (ATTR)) is the namespace of the attribute, and the
633 TREE_VALUE (TREE_PURPOSE (ATTR)) is its non-qualified name. Please
634 use get_attribute_namespace and get_attribute_name to retrieve the
635 namespace and name of the attribute, as these accessors work with
636 GNU attributes as well. */
639 cxx11_attribute_p (const_tree attr
)
641 if (attr
== NULL_TREE
642 || TREE_CODE (attr
) != TREE_LIST
)
645 return (TREE_CODE (TREE_PURPOSE (attr
)) == TREE_LIST
);
648 /* Return the name of the attribute ATTR. This accessor works on GNU
649 and C++11 (scoped) attributes.
651 Please read the comments of cxx11_attribute_p to understand the
652 format of attributes. */
655 get_attribute_name (const_tree attr
)
657 if (cxx11_attribute_p (attr
))
658 return TREE_VALUE (TREE_PURPOSE (attr
));
659 return TREE_PURPOSE (attr
);
662 /* Return the namespace of the attribute ATTR. This accessor works on
663 GNU and C++11 (scoped) attributes. On GNU attributes,
664 it returns an identifier tree for the string "gnu".
666 Please read the comments of cxx11_attribute_p to understand the
667 format of attributes. */
670 get_attribute_namespace (const_tree attr
)
672 if (cxx11_attribute_p (attr
))
673 return TREE_PURPOSE (TREE_PURPOSE (attr
));
674 return get_identifier ("gnu");
677 /* Subroutine of set_method_tm_attributes. Apply TM attribute ATTR
678 to the method FNDECL. */
681 apply_tm_attr (tree fndecl
, tree attr
)
683 decl_attributes (&TREE_TYPE (fndecl
), tree_cons (attr
, NULL
, NULL
), 0);