treestruct.def revision 169689
1/* This file contains the definitions for the tree structure
2   enumeration used in GCC.  
3
4Copyright (C) 2005 Free Software Foundation, Inc.
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
10Software Foundation; either version 2, or (at your option) any later
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
19along with GCC; see the file COPYING.  If not, write to the Free
20Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
2102110-1301, USA.  */
22
23/* The format of this file is 
24   DEFTREESTRUCT(enumeration value, printable name).
25   Each enumeration value should correspond with a single member of union 
26   tree_node.  
27   These enumerator values are used in order to distinguish members of union
28   tree_node for garbage collection purposes, as well as specifying what structures
29   contain what other structures in the tree_contains_struct array.  */
30	
31DEFTREESTRUCT(TS_COMMON, "common")
32DEFTREESTRUCT(TS_INT_CST, "integer cst")
33DEFTREESTRUCT(TS_REAL_CST, "real cst")
34DEFTREESTRUCT(TS_VECTOR, "vector")
35DEFTREESTRUCT(TS_STRING, "string")
36DEFTREESTRUCT(TS_COMPLEX, "complex")
37DEFTREESTRUCT(TS_IDENTIFIER, "indentifier")
38DEFTREESTRUCT(TS_DECL_MINIMAL, "decl minimal")
39DEFTREESTRUCT(TS_DECL_COMMON, "decl common")
40DEFTREESTRUCT(TS_DECL_WRTL, "decl with RTL")
41DEFTREESTRUCT(TS_DECL_NON_COMMON, "decl non-common")
42DEFTREESTRUCT(TS_DECL_WITH_VIS, "decl with visibility")
43DEFTREESTRUCT(TS_FIELD_DECL, "field decl")
44DEFTREESTRUCT(TS_VAR_DECL, "var decl")
45DEFTREESTRUCT(TS_PARM_DECL, "parm decl")
46DEFTREESTRUCT(TS_LABEL_DECL, "label decl")
47DEFTREESTRUCT(TS_RESULT_DECL, "result decl")
48DEFTREESTRUCT(TS_CONST_DECL, "const decl")
49DEFTREESTRUCT(TS_TYPE_DECL, "label decl")
50DEFTREESTRUCT(TS_FUNCTION_DECL, "function decl")
51DEFTREESTRUCT(TS_TYPE, "type")
52DEFTREESTRUCT(TS_LIST, "list")
53DEFTREESTRUCT(TS_VEC, "vec")
54DEFTREESTRUCT(TS_EXP, "exp")
55DEFTREESTRUCT(TS_SSA_NAME, "ssa name")
56DEFTREESTRUCT(TS_PHI_NODE, "phi node")
57DEFTREESTRUCT(TS_BLOCK, "block")
58DEFTREESTRUCT(TS_BINFO, "binfo")
59DEFTREESTRUCT(TS_STATEMENT_LIST, "statement list")
60DEFTREESTRUCT(TS_VALUE_HANDLE, "value handle")
61DEFTREESTRUCT(TS_CONSTRUCTOR, "constructor")
62DEFTREESTRUCT(TS_MEMORY_TAG, "memory tag")
63DEFTREESTRUCT(TS_STRUCT_FIELD_TAG, "struct field tag")
64DEFTREESTRUCT(TS_OMP_CLAUSE, "omp clause")
65