source: src/SynTree/SynTree.h @ 843054c2

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 843054c2 was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

licencing: seventh groups of files

  • Property mode set to 100644
File size: 2.1 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// SynTree.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon May 18 10:58:22 2015
13// Update Count     : 1
14//
15
16#ifndef SYNTREE_H
17#define SYNTREE_H
18
19#include <string>
20#include <list>
21#include <map>
22#include <iostream>
23
24class Declaration;
25class DeclarationWithType;
26class ObjectDecl;
27class FunctionDecl;
28class AggregateDecl;
29class StructDecl;
30class UnionDecl;
31class EnumDecl;
32class ContextDecl;
33class NamedTypeDecl;
34class TypeDecl;
35class FtypeDecl;
36class DtypeDecl;
37class TypedefDecl;
38
39class Statement;
40class CompoundStmt;
41class ExprStmt;
42class IfStmt;
43class WhileStmt;
44class ForStmt;
45class SwitchStmt;
46class ChooseStmt;
47class FallthruStmt;
48class CaseStmt;
49class BranchStmt;
50class ReturnStmt;
51class TryStmt;
52class CatchStmt;
53class FinallyStmt;
54class NullStmt;
55class DeclStmt;
56class NullStmt;
57
58class Expression;
59class ApplicationExpr;
60class UntypedExpr;
61class NameExpr;
62class AddressExpr;
63class LabelAddressExpr;
64class CastExpr;
65class MemberExpr;
66class UntypedMemberExpr;
67class VariableExpr;
68class ConstantExpr;
69class SizeofExpr;
70class AttrExpr;
71class LogicalExpr;
72class ConditionalExpr;
73class CommaExpr;
74class TupleExpr;
75class SolvedTupleExpr;
76class TypeExpr;
77class UntypedValofExpr;
78
79class Type;
80class VoidType;
81class BasicType;
82class PointerType;
83class ArrayType;
84class FunctionType;
85class ReferenceToType;
86class StructInstType;
87class UnionInstType;
88class EnumInstType;
89class ContextInstType;
90class TypeInstType;
91class TupleType;
92class TypeofType;
93class AttrType;
94
95class Initializer;
96class SingleInit;
97class ListInit;
98
99class Subrange;
100
101//template <class T>    // emulate a union with templates?
102class Constant;
103
104typedef std::string Label;
105typedef unsigned int UniqueId;
106
107class TypeSubstitution;
108
109#endif // SYNTREE_H
110
111// Local Variables: //
112// tab-width: 4 //
113// mode: c++ //
114// compile-command: "make install" //
115// End: //
Note: See TracBrowser for help on using the repository browser.