]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/treestruct.def
2009-04-03 Richard Guenther <rguenther@suse.de>
[thirdparty/gcc.git] / gcc / treestruct.def
CommitLineData
5ded8c6f 1/* This file contains the definitions for the tree structure
2 enumeration used in GCC.
3
cfaf579d 4Copyright (C) 2005, 2007, 2008 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
22/* The format of this file is
23 DEFTREESTRUCT(enumeration value, printable name).
24 Each enumeration value should correspond with a single member of union
25 tree_node.
26 These enumerator values are used in order to distinguish members of union
27 tree_node for garbage collection purposes, as well as specifying what structures
28 contain what other structures in the tree_contains_struct array. */
29
35cc02b5 30DEFTREESTRUCT(TS_BASE, "base")
5ded8c6f 31DEFTREESTRUCT(TS_COMMON, "common")
32DEFTREESTRUCT(TS_INT_CST, "integer cst")
33DEFTREESTRUCT(TS_REAL_CST, "real cst")
06f0b99c 34DEFTREESTRUCT(TS_FIXED_CST, "fixed cst")
5ded8c6f 35DEFTREESTRUCT(TS_VECTOR, "vector")
36DEFTREESTRUCT(TS_STRING, "string")
37DEFTREESTRUCT(TS_COMPLEX, "complex")
666137bc 38DEFTREESTRUCT(TS_IDENTIFIER, "identifier")
5ded8c6f 39DEFTREESTRUCT(TS_DECL_MINIMAL, "decl minimal")
40DEFTREESTRUCT(TS_DECL_COMMON, "decl common")
41DEFTREESTRUCT(TS_DECL_WRTL, "decl with RTL")
42DEFTREESTRUCT(TS_DECL_NON_COMMON, "decl non-common")
43DEFTREESTRUCT(TS_DECL_WITH_VIS, "decl with visibility")
44DEFTREESTRUCT(TS_FIELD_DECL, "field decl")
45DEFTREESTRUCT(TS_VAR_DECL, "var decl")
46DEFTREESTRUCT(TS_PARM_DECL, "parm decl")
47DEFTREESTRUCT(TS_LABEL_DECL, "label decl")
48DEFTREESTRUCT(TS_RESULT_DECL, "result decl")
49DEFTREESTRUCT(TS_CONST_DECL, "const decl")
50DEFTREESTRUCT(TS_TYPE_DECL, "label decl")
51DEFTREESTRUCT(TS_FUNCTION_DECL, "function decl")
52DEFTREESTRUCT(TS_TYPE, "type")
53DEFTREESTRUCT(TS_LIST, "list")
54DEFTREESTRUCT(TS_VEC, "vec")
55DEFTREESTRUCT(TS_EXP, "exp")
56DEFTREESTRUCT(TS_SSA_NAME, "ssa name")
57DEFTREESTRUCT(TS_PHI_NODE, "phi node")
58DEFTREESTRUCT(TS_BLOCK, "block")
59DEFTREESTRUCT(TS_BINFO, "binfo")
60DEFTREESTRUCT(TS_STATEMENT_LIST, "statement list")
35cc02b5 61DEFTREESTRUCT(TS_GIMPLE_STATEMENT, "gimple statement")
c75b4594 62DEFTREESTRUCT(TS_CONSTRUCTOR, "constructor")
55d6e7cd 63DEFTREESTRUCT(TS_OMP_CLAUSE, "omp clause")
46f8e3b0 64DEFTREESTRUCT(TS_OPTIMIZATION, "optimization options")
65DEFTREESTRUCT(TS_TARGET_OPTION, "target options")
66