source: src/SynTree/SynTree.h @ ac9ca96

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ac9ca96 was 23b6643f, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into tuples

Conflicts:

src/Makefile.in
src/ResolvExpr/Unify.cc
src/SynTree/Type.h

  • Property mode set to 100644
File size: 2.5 KB
RevLine 
[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
24class Declaration;
25class DeclarationWithType;
26class ObjectDecl;
27class FunctionDecl;
28class AggregateDecl;
29class StructDecl;
30class UnionDecl;
31class EnumDecl;
[4040425]32class TraitDecl;
[51b7345]33class NamedTypeDecl;
34class TypeDecl;
35class FtypeDecl;
36class DtypeDecl;
37class TypedefDecl;
38
39class Statement;
40class CompoundStmt;
41class ExprStmt;
[7f5566b]42class AsmStmt;
[51b7345]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;
[f1b1e4c]56class ImplicitCtorDtorStmt;
[51b7345]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;
[47534159]70class AlignofExpr;
[2a4b088]71class UntypedOffsetofExpr;
[25a054f]72class OffsetofExpr;
[afc1045]73class OffsetPackExpr;
[51b7345]74class AttrExpr;
75class LogicalExpr;
76class ConditionalExpr;
77class CommaExpr;
78class TypeExpr;
[7f5566b]79class AsmExpr;
[db4ecc5]80class ImplicitCopyCtorExpr;
[b6fe7e6]81class ConstructorExpr;
[630a82a]82class CompoundLiteralExpr;
[b6fe7e6]83class UntypedValofExpr;
[8688ce1]84class RangeExpr;
[6eb8948]85class TupleExpr;
[3b58d91]86class TupleIndexExpr;
87class MemberTupleExpr;
[6eb8948]88class TupleAssignExpr;
89class StmtExpr;
[3c13c03]90class UniqueExpr;
[51b7345]91
92class Type;
93class VoidType;
94class BasicType;
95class PointerType;
96class ArrayType;
97class FunctionType;
98class ReferenceToType;
99class StructInstType;
100class UnionInstType;
101class EnumInstType;
[4040425]102class TraitInstType;
[51b7345]103class TypeInstType;
104class TupleType;
105class TypeofType;
106class AttrType;
[44b7088]107class VarArgsType;
[89e6ffc]108class ZeroType;
109class OneType;
[51b7345]110
111class Initializer;
112class SingleInit;
113class ListInit;
[71f4e4f]114class ConstructorInit;
[51b7345]115
116class Subrange;
117
118//template <class T>    // emulate a union with templates?
119class Constant;
120
[0f8e4ac]121// typedef std::string Label;
122class Label;
[51b7345]123typedef unsigned int UniqueId;
124
125class TypeSubstitution;
126
[7baed7d]127// gcc attribute
128class 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.