1/* Declarations and definitions dealing with attribute handling.
2   Copyright (C) 2013-2015 Free Software Foundation, Inc.
3
4This file is part of GCC.
5
6GCC is free software; you can redistribute it and/or modify it under
7the terms of the GNU General Public License as published by the Free
8Software Foundation; either version 3, or (at your option) any later
9version.
10
11GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12WARRANTY; without even the implied warranty of MERCHANTABILITY or
13FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14for more details.
15
16You should have received a copy of the GNU General Public License
17along with GCC; see the file COPYING3.  If not see
18<http://www.gnu.org/licenses/>.  */
19
20#ifndef GCC_ATTRIBS_H
21#define GCC_ATTRIBS_H
22
23extern const struct attribute_spec *lookup_attribute_spec (const_tree);
24extern void init_attributes (void);
25
26/* Process the attributes listed in ATTRIBUTES and install them in *NODE,
27   which is either a DECL (including a TYPE_DECL) or a TYPE.  If a DECL,
28   it should be modified in place; if a TYPE, a copy should be created
29   unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS.  FLAGS gives further
30   information, in the form of a bitwise OR of flags in enum attribute_flags
31   from tree.h.  Depending on these flags, some attributes may be
32   returned to be applied at a later stage (for example, to apply
33   a decl attribute to the declaration rather than to its type).  */
34extern tree decl_attributes (tree *, tree, int);
35
36extern bool cxx11_attribute_p (const_tree);
37extern tree get_attribute_name (const_tree);
38extern void apply_tm_attr (tree, tree);
39
40#endif // GCC_ATTRIBS_H
41