source: src/SynTree/SynTree.h @ 8688ce1

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

move case-list management into parser

  • Property mode set to 100644
File size: 2.3 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 : Wed Aug  3 17:02:34 2016
13// Update Count     : 7
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 TraitDecl;
33class NamedTypeDecl;
34class TypeDecl;
35class FtypeDecl;
36class DtypeDecl;
37class TypedefDecl;
38
39class Statement;
40class CompoundStmt;
41class ExprStmt;
42class AsmStmt;
43class IfStmt;
44class WhileStmt;
45class ForStmt;
46class SwitchStmt;
47class CaseStmt;
48class BranchStmt;
49class ReturnStmt;
50class TryStmt;
51class CatchStmt;
52class FinallyStmt;
53class NullStmt;
54class DeclStmt;
55class NullStmt;
56class ImplicitCtorDtorStmt;
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 AlignofExpr;
71class UntypedOffsetofExpr;
72class OffsetofExpr;
73class OffsetPackExpr;
74class AttrExpr;
75class LogicalExpr;
76class ConditionalExpr;
77class CommaExpr;
78class TupleExpr;
79class SolvedTupleExpr;
80class TypeExpr;
81class AsmExpr;
82class ImplicitCopyCtorExpr;
83class UntypedValofExpr;
84class CompoundLiteralExpr;
85class RangeExpr;
86
87class Type;
88class VoidType;
89class BasicType;
90class PointerType;
91class ArrayType;
92class FunctionType;
93class ReferenceToType;
94class StructInstType;
95class UnionInstType;
96class EnumInstType;
97class TraitInstType;
98class TypeInstType;
99class TupleType;
100class TypeofType;
101class AttrType;
102class VarArgsType;
103
104class Initializer;
105class SingleInit;
106class ListInit;
107class ConstructorInit;
108
109class Subrange;
110
111//template <class T>    // emulate a union with templates?
112class Constant;
113
114// typedef std::string Label;
115class Label;
116typedef unsigned int UniqueId;
117
118class TypeSubstitution;
119
120// gcc attribute
121class Attribute;
122
123#endif // SYNTREE_H
124
125// Local Variables: //
126// tab-width: 4 //
127// mode: c++ //
128// compile-command: "make install" //
129// End: //
Note: See TracBrowser for help on using the repository browser.