]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/treestruct.def
C++: more location wrapper nodes (PR c++/43064, PR c++/43486)
[thirdparty/gcc.git] / gcc / treestruct.def
CommitLineData
5ded8c6f 1/* This file contains the definitions for the tree structure
48e1416a 2 enumeration used in GCC.
5ded8c6f 3
8e8f6434 4Copyright (C) 2005-2018 Free Software Foundation, Inc.
5ded8c6f 5
6This file is part of GCC.
7
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
8c4c00c1 10Software Foundation; either version 3, or (at your option) any later
5ded8c6f 11version.
12
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
17
18You should have received a copy of the GNU General Public License
8c4c00c1 19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
5ded8c6f 21
48e1416a 22/* The format of this file is
8dfbefd8 23
5ded8c6f 24 DEFTREESTRUCT(enumeration value, printable name).
8dfbefd8 25
26 Each enumeration value should correspond with a single member of
48e1416a 27 union tree_node.
8dfbefd8 28
29 These enumerator values are used in order to distinguish members of
30 union tree_node for garbage collection purposes, as well as
31 specifying what structures contain what other structures in the
32 tree_contains_struct array. */
35cc02b5 33DEFTREESTRUCT(TS_BASE, "base")
1646aa85 34DEFTREESTRUCT(TS_TYPED, "typed")
5ded8c6f 35DEFTREESTRUCT(TS_COMMON, "common")
36DEFTREESTRUCT(TS_INT_CST, "integer cst")
8672ee56 37DEFTREESTRUCT(TS_POLY_INT_CST, "poly_int_cst")
5ded8c6f 38DEFTREESTRUCT(TS_REAL_CST, "real cst")
06f0b99c 39DEFTREESTRUCT(TS_FIXED_CST, "fixed cst")
5ded8c6f 40DEFTREESTRUCT(TS_VECTOR, "vector")
41DEFTREESTRUCT(TS_STRING, "string")
42DEFTREESTRUCT(TS_COMPLEX, "complex")
666137bc 43DEFTREESTRUCT(TS_IDENTIFIER, "identifier")
5ded8c6f 44DEFTREESTRUCT(TS_DECL_MINIMAL, "decl minimal")
45DEFTREESTRUCT(TS_DECL_COMMON, "decl common")
46DEFTREESTRUCT(TS_DECL_WRTL, "decl with RTL")
47DEFTREESTRUCT(TS_DECL_NON_COMMON, "decl non-common")
48DEFTREESTRUCT(TS_DECL_WITH_VIS, "decl with visibility")
49DEFTREESTRUCT(TS_FIELD_DECL, "field decl")
50DEFTREESTRUCT(TS_VAR_DECL, "var decl")
51DEFTREESTRUCT(TS_PARM_DECL, "parm decl")
52DEFTREESTRUCT(TS_LABEL_DECL, "label decl")
53DEFTREESTRUCT(TS_RESULT_DECL, "result decl")
54DEFTREESTRUCT(TS_CONST_DECL, "const decl")
f2e5df9c 55DEFTREESTRUCT(TS_TYPE_DECL, "type decl")
5ded8c6f 56DEFTREESTRUCT(TS_FUNCTION_DECL, "function decl")
23bdc9ca 57DEFTREESTRUCT(TS_TRANSLATION_UNIT_DECL, "translation-unit decl")
8f2eb9e1 58DEFTREESTRUCT(TS_TYPE_COMMON, "type common")
59DEFTREESTRUCT(TS_TYPE_WITH_LANG_SPECIFIC, "type with lang-specific")
60DEFTREESTRUCT(TS_TYPE_NON_COMMON, "type non-common")
5ded8c6f 61DEFTREESTRUCT(TS_LIST, "list")
62DEFTREESTRUCT(TS_VEC, "vec")
63DEFTREESTRUCT(TS_EXP, "exp")
64DEFTREESTRUCT(TS_SSA_NAME, "ssa name")
5ded8c6f 65DEFTREESTRUCT(TS_BLOCK, "block")
66DEFTREESTRUCT(TS_BINFO, "binfo")
67DEFTREESTRUCT(TS_STATEMENT_LIST, "statement list")
c75b4594 68DEFTREESTRUCT(TS_CONSTRUCTOR, "constructor")
55d6e7cd 69DEFTREESTRUCT(TS_OMP_CLAUSE, "omp clause")
46f8e3b0 70DEFTREESTRUCT(TS_OPTIMIZATION, "optimization options")
71DEFTREESTRUCT(TS_TARGET_OPTION, "target options")