source: src/SynTree/SynTree.h @ 5ba653c

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 5ba653c was afc1045, checked in by Aaron Moss <a3moss@…>, 8 years ago

Hoist OffsetPackExpr? to top level expression

  • Property mode set to 100644
File size: 2.2 KB
Line 
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//
7// SynTree.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Wed Mar  2 17:29:00 2016
13// Update Count     : 4
14//
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;
32class TraitDecl;
33class NamedTypeDecl;
34class TypeDecl;
35class FtypeDecl;
36class DtypeDecl;
37class TypedefDecl;
38
39class Statement;
40class CompoundStmt;
41class ExprStmt;
42class AsmStmt;
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;
71class AlignofExpr;
72class UntypedOffsetofExpr;
73class OffsetofExpr;
74class OffsetPackExpr;
75class AttrExpr;
76class LogicalExpr;
77class ConditionalExpr;
78class CommaExpr;
79class TupleExpr;
80class SolvedTupleExpr;
81class TypeExpr;
82class AsmExpr;
83class UntypedValofExpr;
84
85class Type;
86class VoidType;
87class BasicType;
88class PointerType;
89class ArrayType;
90class FunctionType;
91class ReferenceToType;
92class StructInstType;
93class UnionInstType;
94class EnumInstType;
95class TraitInstType;
96class TypeInstType;
97class TupleType;
98class TypeofType;
99class AttrType;
100class VarArgsType;
101
102class Initializer;
103class SingleInit;
104class ListInit;
105
106class Subrange;
107
108//template <class T>    // emulate a union with templates?
109class Constant;
110
111typedef std::string Label;
112typedef unsigned int UniqueId;
113
114class TypeSubstitution;
115
116#endif // SYNTREE_H
117
118// Local Variables: //
119// tab-width: 4 //
120// mode: c++ //
121// compile-command: "make install" //
122// End: //
Note: See TracBrowser for help on using the repository browser.