source: src/SynTree/SynTree.h @ 1b31345

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 1b31345 was 70a06f6, checked in by Rob Schluntz <rschlunt@…>, 8 years ago

Merge branch 'master' into ctor

Conflicts:

src/CodeGen/CodeGenerator.cc
src/GenPoly/Box.cc
src/Parser/DeclarationNode.cc
src/Parser/ParseNode.h
src/Parser/parser.cc
src/Parser/parser.yy
src/SymTab/AddVisit.h
src/SymTab/Validate.cc
src/SynTree/Expression.cc
src/SynTree/Expression.h
src/SynTree/Mutator.cc
src/SynTree/Mutator.h
src/SynTree/SynTree.h
src/SynTree/Visitor.cc
src/SynTree/Visitor.h
src/libcfa/iostream.c

  • Property mode set to 100644
File size: 2.3 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
[71f4e4f]11// Last Modified By : Rob Schluntz
[70a06f6]12// Last Modified On : Thu Apr 14 15:31:36 2016
[630a82a]13// Update Count     : 5
[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 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;
[47534159]71class AlignofExpr;
[2a4b088]72class UntypedOffsetofExpr;
[25a054f]73class OffsetofExpr;
[afc1045]74class OffsetPackExpr;
[51b7345]75class AttrExpr;
76class LogicalExpr;
77class ConditionalExpr;
78class CommaExpr;
79class TupleExpr;
80class SolvedTupleExpr;
81class TypeExpr;
[7f5566b]82class AsmExpr;
[db4ecc5]83class ImplicitCopyCtorExpr;
[51b7345]84class UntypedValofExpr;
[630a82a]85class CompoundLiteralExpr;
[51b7345]86
87class Type;
88class VoidType;
89class BasicType;
90class PointerType;
91class ArrayType;
92class FunctionType;
93class ReferenceToType;
94class StructInstType;
95class UnionInstType;
96class EnumInstType;
[4040425]97class TraitInstType;
[51b7345]98class TypeInstType;
99class TupleType;
100class TypeofType;
101class AttrType;
[44b7088]102class VarArgsType;
[51b7345]103
104class Initializer;
105class SingleInit;
106class ListInit;
[71f4e4f]107class ConstructorInit;
[51b7345]108
109class Subrange;
110
111//template <class T>    // emulate a union with templates?
112class Constant;
113
114typedef std::string Label;
115typedef unsigned int UniqueId;
116
117class TypeSubstitution;
118
[0dd3a2f]119#endif // SYNTREE_H
[51b7345]120
[0dd3a2f]121// Local Variables: //
122// tab-width: 4 //
123// mode: c++ //
124// compile-command: "make install" //
125// End: //
Note: See TracBrowser for help on using the repository browser.