aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.def
diff options
context:
space:
mode:
authorSebastian Pop <pop@cri.ensmp.fr>2004-06-30 17:37:42 +0200
committerSebastian Pop <spop@gcc.gnu.org>2004-06-30 15:37:42 +0000
commitc8a2ab6d0cba93c47b539695202773b276360745 (patch)
treebb724693bef34970d9612a1039ee2b0dc4f9f826 /gcc/tree.def
parent64b8935d4809f32734fa7abe9353fc159adacbfd (diff)
downloadgcc-c8a2ab6d0cba93c47b539695202773b276360745.zip
gcc-c8a2ab6d0cba93c47b539695202773b276360745.tar.gz
gcc-c8a2ab6d0cba93c47b539695202773b276360745.tar.bz2
Makefile.in (OBJS-common): Add tree-chrec.o.
* Makefile.in (OBJS-common): Add tree-chrec.o. (tree-chrec.o): New rule. (GTFILES): Add tree-chrec.h. * gengtype.c (open_base_files): Add tree-chrec.h. * tree-chrec.c: New file. * tree-chrec.h: New file. * tree.def (SCEV_KNOWN, SCEV_NOT_KNOWN, POLYNOMIAL_CHREC): New nodes. From-SVN: r83909
Diffstat (limited to 'gcc/tree.def')
-rw-r--r--gcc/tree.def12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc/tree.def b/gcc/tree.def
index d126895..1517207 100644
--- a/gcc/tree.def
+++ b/gcc/tree.def
@@ -898,6 +898,18 @@ DEFTREECODE (CATCH_EXPR, "catch_expr", 's', 2)
expanding. */
DEFTREECODE (EH_FILTER_EXPR, "eh_filter_expr", 's', 2)
+/* Node used for describing a property that is known at compile
+ time. */
+DEFTREECODE (SCEV_KNOWN, "scev_known", 'e', 0)
+
+/* Node used for describing a property that is not known at compile
+ time. */
+DEFTREECODE (SCEV_NOT_KNOWN, "scev_not_known", 'e', 0)
+
+/* Polynomial chains of recurrences.
+ Under the form: cr = {CHREC_LEFT (cr), +, CHREC_RIGHT (cr)}. */
+DEFTREECODE (POLYNOMIAL_CHREC, "polynomial_chrec", 'e', 3)
+
/* Used to chain children of container statements together.
Use the interface in tree-iterator.h to access this node. */
DEFTREECODE (STATEMENT_LIST, "statement_list", 'x', 0)