source: src/SynTree/SynTree.h @ 7f5566b

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 7f5566b was 7f5566b, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

asm statement, memory leaks

  • 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 : Thu Jul 23 23:25:04 2015
13// Update Count     : 3
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 AsmStmt;
43class IfStmt;
44class WhileStmt;
45class ForStmt;
46class SwitchStmt;
47class ChooseStmt;
48class FallthruStmt;
49class CaseStmt;
50class BranchStmt;
51class ReturnStmt;
52class TryStmt;
53class CatchStmt;
54class FinallyStmt;
55class NullStmt;
56class DeclStmt;
57class NullStmt;
58
59class Expression;
60class ApplicationExpr;
61class UntypedExpr;
62class NameExpr;
63class AddressExpr;
64class LabelAddressExpr;
65class CastExpr;
66class MemberExpr;
67class UntypedMemberExpr;
68class VariableExpr;
69class ConstantExpr;
70class SizeofExpr;
71class AttrExpr;
72class LogicalExpr;
73class ConditionalExpr;
74class CommaExpr;
75class TupleExpr;
76class SolvedTupleExpr;
77class TypeExpr;
78class AsmExpr;
79class UntypedValofExpr;
80
81class Type;
82class VoidType;
83class BasicType;
84class PointerType;
85class ArrayType;
86class FunctionType;
87class ReferenceToType;
88class StructInstType;
89class UnionInstType;
90class EnumInstType;
91class ContextInstType;
92class TypeInstType;
93class TupleType;
94class TypeofType;
95class AttrType;
96
97class Initializer;
98class SingleInit;
99class ListInit;
100
101class Subrange;
102
103//template <class T>    // emulate a union with templates?
104class Constant;
105
106typedef std::string Label;
107typedef unsigned int UniqueId;
108
109class TypeSubstitution;
110
111#endif // SYNTREE_H
112
113// Local Variables: //
114// tab-width: 4 //
115// mode: c++ //
116// compile-command: "make install" //
117// End: //
Note: See TracBrowser for help on using the repository browser.