source:
src/SynTree/SynTree.h
@
3d46f01
Last change on this file since 3d46f01 was 37cdd97, checked in by , 5 years ago | |
---|---|
|
|
File size: 2.7 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 | |
[033ff37] | 11 | // Last Modified By : Peter A. Buhr |
12 | // Last Modified On : Thu Jul 25 22:37:45 2019 | |
13 | // Update Count : 12 | |
[0dd3a2f] | 14 | // |
[51b7345] | 15 | |
[6b0b624] | 16 | #pragma once |
[51b7345] | 17 | |
18 | #include <string> | |
19 | #include <list> | |
20 | #include <map> | |
21 | #include <iostream> | |
22 | ||
[262f085f] | 23 | class BaseSyntaxNode; |
24 | ||
[51b7345] | 25 | class Declaration; |
26 | class DeclarationWithType; | |
27 | class ObjectDecl; | |
28 | class FunctionDecl; | |
29 | class AggregateDecl; | |
30 | class StructDecl; | |
31 | class UnionDecl; | |
32 | class EnumDecl; | |
[4040425] | 33 | class TraitDecl; |
[51b7345] | 34 | class NamedTypeDecl; |
35 | class TypeDecl; | |
36 | class TypedefDecl; | |
[e994912] | 37 | class AsmDecl; |
[f6e3e34] | 38 | class StaticAssertDecl; |
[51b7345] | 39 | |
40 | class Statement; | |
41 | class CompoundStmt; | |
42 | class ExprStmt; | |
[7f5566b] | 43 | class AsmStmt; |
[cc32d83] | 44 | class DirectiveStmt; |
[51b7345] | 45 | class IfStmt; |
46 | class WhileStmt; | |
47 | class ForStmt; | |
48 | class SwitchStmt; | |
49 | class CaseStmt; | |
50 | class BranchStmt; | |
51 | class ReturnStmt; | |
[daf1af8] | 52 | class ThrowStmt; |
[51b7345] | 53 | class TryStmt; |
54 | class CatchStmt; | |
55 | class FinallyStmt; | |
[37cdd97] | 56 | class SuspendStmt; |
[135b431] | 57 | class WaitForStmt; |
[61255ad] | 58 | class WithStmt; |
[51b7345] | 59 | class NullStmt; |
60 | class DeclStmt; | |
61 | class NullStmt; | |
[f1b1e4c] | 62 | class ImplicitCtorDtorStmt; |
[51b7345] | 63 | |
64 | class Expression; | |
65 | class ApplicationExpr; | |
66 | class UntypedExpr; | |
67 | class NameExpr; | |
68 | class AddressExpr; | |
69 | class LabelAddressExpr; | |
70 | class CastExpr; | |
[9a705dc8] | 71 | class KeywordCastExpr; |
[a5f0529] | 72 | class VirtualCastExpr; |
[51b7345] | 73 | class MemberExpr; |
74 | class UntypedMemberExpr; | |
75 | class VariableExpr; | |
76 | class ConstantExpr; | |
77 | class SizeofExpr; | |
[47534159] | 78 | class AlignofExpr; |
[2a4b088] | 79 | class UntypedOffsetofExpr; |
[25a054f] | 80 | class OffsetofExpr; |
[afc1045] | 81 | class OffsetPackExpr; |
[51b7345] | 82 | class LogicalExpr; |
83 | class ConditionalExpr; | |
84 | class CommaExpr; | |
85 | class TypeExpr; | |
[7f5566b] | 86 | class AsmExpr; |
[db4ecc5] | 87 | class ImplicitCopyCtorExpr; |
[b6fe7e6] | 88 | class ConstructorExpr; |
[630a82a] | 89 | class CompoundLiteralExpr; |
[8688ce1] | 90 | class RangeExpr; |
[907eccb] | 91 | class UntypedTupleExpr; |
[6eb8948] | 92 | class TupleExpr; |
[3b58d91] | 93 | class TupleIndexExpr; |
[6eb8948] | 94 | class TupleAssignExpr; |
95 | class StmtExpr; | |
[3c13c03] | 96 | class UniqueExpr; |
[e4d829b] | 97 | class UntypedInitExpr; |
98 | class InitExpr; | |
[44b4114] | 99 | class DeletedExpr; |
[0f79853] | 100 | class DefaultArgExpr; |
[d807ca28] | 101 | class GenericExpr; |
[51b7345] | 102 | |
103 | class Type; | |
104 | class VoidType; | |
105 | class BasicType; | |
106 | class PointerType; | |
107 | class ArrayType; | |
[ce8c12f] | 108 | class ReferenceType; |
[c5d7701] | 109 | class QualifiedType; |
[51b7345] | 110 | class FunctionType; |
111 | class ReferenceToType; | |
112 | class StructInstType; | |
113 | class UnionInstType; | |
114 | class EnumInstType; | |
[4040425] | 115 | class TraitInstType; |
[51b7345] | 116 | class TypeInstType; |
117 | class TupleType; | |
118 | class TypeofType; | |
119 | class AttrType; | |
[44b7088] | 120 | class VarArgsType; |
[89e6ffc] | 121 | class ZeroType; |
122 | class OneType; | |
[47498bd] | 123 | class GlobalScopeType; |
[51b7345] | 124 | |
[e4d829b] | 125 | class Designation; |
[51b7345] | 126 | class Initializer; |
127 | class SingleInit; | |
128 | class ListInit; | |
[71f4e4f] | 129 | class ConstructorInit; |
[51b7345] | 130 | |
131 | //template <class T> // emulate a union with templates? | |
132 | class Constant; | |
133 | ||
[0f8e4ac] | 134 | // typedef std::string Label; |
135 | class Label; | |
[51b7345] | 136 | typedef unsigned int UniqueId; |
137 | ||
138 | class TypeSubstitution; | |
139 | ||
[7baed7d] | 140 | // gcc attribute |
141 | class Attribute; | |
142 | ||
[0dd3a2f] | 143 | // Local Variables: // |
144 | // tab-width: 4 // | |
145 | // mode: c++ // | |
146 | // compile-command: "make install" // | |
147 | // End: // |
Note: See TracBrowser
for help on using the repository browser.