source:
src/SynTree/SynTree.h
@
66f8528
Last change on this file since 66f8528 was 23b6643f, 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 |
[8688ce1] | 12 | // Last Modified On : Wed Aug 3 17:02:34 2016 |
13 | // Update Count : 7 | |
[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; | |
38 | ||
39 | class Statement; | |
40 | class CompoundStmt; | |
41 | class ExprStmt; | |
[7f5566b] | 42 | class AsmStmt; |
[51b7345] | 43 | class IfStmt; |
44 | class WhileStmt; | |
45 | class ForStmt; | |
46 | class SwitchStmt; | |
47 | class CaseStmt; | |
48 | class BranchStmt; | |
49 | class ReturnStmt; | |
50 | class TryStmt; | |
51 | class CatchStmt; | |
52 | class FinallyStmt; | |
53 | class NullStmt; | |
54 | class DeclStmt; | |
55 | class NullStmt; | |
[f1b1e4c] | 56 | class ImplicitCtorDtorStmt; |
[51b7345] | 57 | |
58 | class Expression; | |
59 | class ApplicationExpr; | |
60 | class UntypedExpr; | |
61 | class NameExpr; | |
62 | class AddressExpr; | |
63 | class LabelAddressExpr; | |
64 | class CastExpr; | |
65 | class MemberExpr; | |
66 | class UntypedMemberExpr; | |
67 | class VariableExpr; | |
68 | class ConstantExpr; | |
69 | class SizeofExpr; | |
[47534159] | 70 | class AlignofExpr; |
[2a4b088] | 71 | class UntypedOffsetofExpr; |
[25a054f] | 72 | class OffsetofExpr; |
[afc1045] | 73 | class OffsetPackExpr; |
[51b7345] | 74 | class AttrExpr; |
75 | class LogicalExpr; | |
76 | class ConditionalExpr; | |
77 | class CommaExpr; | |
78 | class TypeExpr; | |
[7f5566b] | 79 | class AsmExpr; |
[db4ecc5] | 80 | class ImplicitCopyCtorExpr; |
[b6fe7e6] | 81 | class ConstructorExpr; |
[630a82a] | 82 | class CompoundLiteralExpr; |
[b6fe7e6] | 83 | class UntypedValofExpr; |
[8688ce1] | 84 | class RangeExpr; |
[6eb8948] | 85 | class TupleExpr; |
[3b58d91] | 86 | class TupleIndexExpr; |
87 | class MemberTupleExpr; | |
[6eb8948] | 88 | class TupleAssignExpr; |
89 | class StmtExpr; | |
[3c13c03] | 90 | class UniqueExpr; |
[51b7345] | 91 | |
92 | class Type; | |
93 | class VoidType; | |
94 | class BasicType; | |
95 | class PointerType; | |
96 | class ArrayType; | |
97 | class FunctionType; | |
98 | class ReferenceToType; | |
99 | class StructInstType; | |
100 | class UnionInstType; | |
101 | class EnumInstType; | |
[4040425] | 102 | class TraitInstType; |
[51b7345] | 103 | class TypeInstType; |
104 | class TupleType; | |
105 | class TypeofType; | |
106 | class AttrType; | |
[44b7088] | 107 | class VarArgsType; |
[89e6ffc] | 108 | class ZeroType; |
109 | class OneType; | |
[51b7345] | 110 | |
111 | class Initializer; | |
112 | class SingleInit; | |
113 | class ListInit; | |
[71f4e4f] | 114 | class ConstructorInit; |
[51b7345] | 115 | |
116 | class Subrange; | |
117 | ||
118 | //template <class T> // emulate a union with templates? | |
119 | class Constant; | |
120 | ||
[0f8e4ac] | 121 | // typedef std::string Label; |
122 | class Label; | |
[51b7345] | 123 | typedef unsigned int UniqueId; |
124 | ||
125 | class TypeSubstitution; | |
126 | ||
[7baed7d] | 127 | // gcc attribute |
128 | class Attribute; | |
129 | ||
[0dd3a2f] | 130 | #endif // SYNTREE_H |
[51b7345] | 131 | |
[0dd3a2f] | 132 | // Local Variables: // |
133 | // tab-width: 4 // | |
134 | // mode: c++ // | |
135 | // compile-command: "make install" // | |
136 | // End: // |
Note: See TracBrowser
for help on using the repository browser.