source:
src/SynTree/SynTree.h
@
cb4d825
Last change on this file since cb4d825 was e994912, checked in by , 8 years ago | |
---|---|
|
|
File size: 2.5 KB |
Rev | Line | |
---|---|---|
[0dd3a2f] | 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 | // | |
[71f4e4f] | 7 | // SynTree.h -- |
[0dd3a2f] | 8 | // |
9 | // Author : Richard C. Bilson | |
10 | // Created On : Mon May 18 07:44:20 2015 | |
[4e06c1e] | 11 | // Last Modified By : Peter A. Buhr |
[e994912] | 12 | // Last Modified On : Thu Feb 9 14:23:49 2017 |
13 | // Update Count : 8 | |
[0dd3a2f] | 14 | // |
[51b7345] | 15 | |
16 | #ifndef SYNTREE_H | |
17 | #define SYNTREE_H | |
18 | ||
19 | #include <string> | |
20 | #include <list> | |
21 | #include <map> | |
22 | #include <iostream> | |
23 | ||
24 | class Declaration; | |
25 | class DeclarationWithType; | |
26 | class ObjectDecl; | |
27 | class FunctionDecl; | |
28 | class AggregateDecl; | |
29 | class StructDecl; | |
30 | class UnionDecl; | |
31 | class EnumDecl; | |
[4040425] | 32 | class TraitDecl; |
[51b7345] | 33 | class NamedTypeDecl; |
34 | class TypeDecl; | |
35 | class FtypeDecl; | |
36 | class DtypeDecl; | |
37 | class TypedefDecl; | |
[e994912] | 38 | class AsmDecl; |
[51b7345] | 39 | |
40 | class Statement; | |
41 | class CompoundStmt; | |
42 | class ExprStmt; | |
[7f5566b] | 43 | class AsmStmt; |
[51b7345] | 44 | class IfStmt; |
45 | class WhileStmt; | |
46 | class ForStmt; | |
47 | class SwitchStmt; | |
48 | class CaseStmt; | |
49 | class BranchStmt; | |
50 | class ReturnStmt; | |
51 | class TryStmt; | |
52 | class CatchStmt; | |
53 | class FinallyStmt; | |
54 | class NullStmt; | |
55 | class DeclStmt; | |
56 | class NullStmt; | |
[f1b1e4c] | 57 | class ImplicitCtorDtorStmt; |
[51b7345] | 58 | |
59 | class Expression; | |
60 | class ApplicationExpr; | |
61 | class UntypedExpr; | |
62 | class NameExpr; | |
63 | class AddressExpr; | |
64 | class LabelAddressExpr; | |
65 | class CastExpr; | |
66 | class MemberExpr; | |
67 | class UntypedMemberExpr; | |
68 | class VariableExpr; | |
69 | class ConstantExpr; | |
70 | class SizeofExpr; | |
[47534159] | 71 | class AlignofExpr; |
[2a4b088] | 72 | class UntypedOffsetofExpr; |
[25a054f] | 73 | class OffsetofExpr; |
[afc1045] | 74 | class OffsetPackExpr; |
[51b7345] | 75 | class AttrExpr; |
76 | class LogicalExpr; | |
77 | class ConditionalExpr; | |
78 | class CommaExpr; | |
79 | class TypeExpr; | |
[7f5566b] | 80 | class AsmExpr; |
[db4ecc5] | 81 | class ImplicitCopyCtorExpr; |
[b6fe7e6] | 82 | class ConstructorExpr; |
[630a82a] | 83 | class CompoundLiteralExpr; |
[b6fe7e6] | 84 | class UntypedValofExpr; |
[8688ce1] | 85 | class RangeExpr; |
[907eccb] | 86 | class UntypedTupleExpr; |
[6eb8948] | 87 | class TupleExpr; |
[3b58d91] | 88 | class TupleIndexExpr; |
89 | class MemberTupleExpr; | |
[6eb8948] | 90 | class TupleAssignExpr; |
91 | class StmtExpr; | |
[3c13c03] | 92 | class UniqueExpr; |
[51b7345] | 93 | |
94 | class Type; | |
95 | class VoidType; | |
96 | class BasicType; | |
97 | class PointerType; | |
98 | class ArrayType; | |
99 | class FunctionType; | |
100 | class ReferenceToType; | |
101 | class StructInstType; | |
102 | class UnionInstType; | |
103 | class EnumInstType; | |
[4040425] | 104 | class TraitInstType; |
[51b7345] | 105 | class TypeInstType; |
106 | class TupleType; | |
107 | class TypeofType; | |
108 | class AttrType; | |
[44b7088] | 109 | class VarArgsType; |
[89e6ffc] | 110 | class ZeroType; |
111 | class OneType; | |
[51b7345] | 112 | |
113 | class Initializer; | |
114 | class SingleInit; | |
115 | class ListInit; | |
[71f4e4f] | 116 | class ConstructorInit; |
[51b7345] | 117 | |
118 | class Subrange; | |
119 | ||
120 | //template <class T> // emulate a union with templates? | |
121 | class Constant; | |
122 | ||
[0f8e4ac] | 123 | // typedef std::string Label; |
124 | class Label; | |
[51b7345] | 125 | typedef unsigned int UniqueId; |
126 | ||
127 | class TypeSubstitution; | |
128 | ||
[7baed7d] | 129 | // gcc attribute |
130 | class Attribute; | |
131 | ||
[0dd3a2f] | 132 | #endif // SYNTREE_H |
[51b7345] | 133 | |
[0dd3a2f] | 134 | // Local Variables: // |
135 | // tab-width: 4 // | |
136 | // mode: c++ // | |
137 | // compile-command: "make install" // | |
138 | // End: // |
Note: See TracBrowser
for help on using the repository browser.