ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
ctor
deferred_resn
demangler
enum
forall-pointer-decay
gc_noraii
jacob/cs343-translation
jenkins-sandbox
memory
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
string
with_gc
Last change
on this file since 334163c was 843054c2, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago |
licencing: seventh groups of files
|
-
Property mode
set to
100644
|
File size:
2.1 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 | //
|
---|
| 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 : Mon May 18 10:58:22 2015
|
---|
| 13 | // Update Count : 1
|
---|
| 14 | //
|
---|
[51b73452] | 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;
|
---|
| 32 | class ContextDecl;
|
---|
| 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;
|
---|
| 42 | class IfStmt;
|
---|
| 43 | class WhileStmt;
|
---|
| 44 | class ForStmt;
|
---|
| 45 | class SwitchStmt;
|
---|
| 46 | class ChooseStmt;
|
---|
| 47 | class FallthruStmt;
|
---|
| 48 | class CaseStmt;
|
---|
| 49 | class BranchStmt;
|
---|
| 50 | class ReturnStmt;
|
---|
| 51 | class TryStmt;
|
---|
| 52 | class CatchStmt;
|
---|
| 53 | class FinallyStmt;
|
---|
| 54 | class NullStmt;
|
---|
| 55 | class DeclStmt;
|
---|
| 56 | class NullStmt;
|
---|
| 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;
|
---|
| 70 | class AttrExpr;
|
---|
| 71 | class LogicalExpr;
|
---|
| 72 | class ConditionalExpr;
|
---|
| 73 | class CommaExpr;
|
---|
| 74 | class TupleExpr;
|
---|
| 75 | class SolvedTupleExpr;
|
---|
| 76 | class TypeExpr;
|
---|
| 77 | class UntypedValofExpr;
|
---|
| 78 |
|
---|
| 79 | class Type;
|
---|
| 80 | class VoidType;
|
---|
| 81 | class BasicType;
|
---|
| 82 | class PointerType;
|
---|
| 83 | class ArrayType;
|
---|
| 84 | class FunctionType;
|
---|
| 85 | class ReferenceToType;
|
---|
| 86 | class StructInstType;
|
---|
| 87 | class UnionInstType;
|
---|
| 88 | class EnumInstType;
|
---|
| 89 | class ContextInstType;
|
---|
| 90 | class TypeInstType;
|
---|
| 91 | class TupleType;
|
---|
| 92 | class TypeofType;
|
---|
| 93 | class AttrType;
|
---|
| 94 |
|
---|
| 95 | class Initializer;
|
---|
| 96 | class SingleInit;
|
---|
| 97 | class ListInit;
|
---|
| 98 |
|
---|
| 99 | class Subrange;
|
---|
| 100 |
|
---|
| 101 | //template <class T> // emulate a union with templates?
|
---|
| 102 | class Constant;
|
---|
| 103 |
|
---|
| 104 | typedef std::string Label;
|
---|
| 105 | typedef unsigned int UniqueId;
|
---|
| 106 |
|
---|
| 107 | class TypeSubstitution;
|
---|
| 108 |
|
---|
[0dd3a2f] | 109 | #endif // SYNTREE_H
|
---|
[51b73452] | 110 |
|
---|
[0dd3a2f] | 111 | // Local Variables: //
|
---|
| 112 | // tab-width: 4 //
|
---|
| 113 | // mode: c++ //
|
---|
| 114 | // compile-command: "make install" //
|
---|
| 115 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.