ADT
        aaron-thesis
        arm-eh
        ast-experimental
        cleanup-dtors
        deferred_resn
        demangler
        enum
        forall-pointer-decay
        jacob/cs343-translation
        jenkins-sandbox
        new-ast
        new-ast-unique-expr
        new-env
        no_list
        persistent-indexer
        pthread-emulation
        qualifiedEnum
        resolv-new
        with_gc
      
      
        
          | Last change
 on this file since 921fe6a was             579263a, checked in by Rob Schluntz <rschlunt@…>, 8 years ago | 
        
          | 
Merge branch 'master' into designations
 
Conflicts:
 
src/InitTweak/FixInit.ccsrc/SymTab/Autogen.h
 src/SynTree/Initializer.cc
 src/SynTree/Initializer.h
 src/Tuples/TupleExpansion.cc
 
 | 
        
          | 
              
Property                 mode
 set to                 100644 | 
        
          | File size:
            2.6 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 : Andrew Beach | 
|---|
| 12 | // Last Modified On : Thu Jun  8 17:00:00 2017 | 
|---|
| 13 | // Update Count     : 9 | 
|---|
| 14 | // | 
|---|
| 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 BaseSyntaxNode; | 
|---|
| 25 |  | 
|---|
| 26 | class Declaration; | 
|---|
| 27 | class DeclarationWithType; | 
|---|
| 28 | class ObjectDecl; | 
|---|
| 29 | class FunctionDecl; | 
|---|
| 30 | class AggregateDecl; | 
|---|
| 31 | class StructDecl; | 
|---|
| 32 | class UnionDecl; | 
|---|
| 33 | class EnumDecl; | 
|---|
| 34 | class TraitDecl; | 
|---|
| 35 | class NamedTypeDecl; | 
|---|
| 36 | class TypeDecl; | 
|---|
| 37 | class FtypeDecl; | 
|---|
| 38 | class DtypeDecl; | 
|---|
| 39 | class TypedefDecl; | 
|---|
| 40 | class AsmDecl; | 
|---|
| 41 |  | 
|---|
| 42 | class Statement; | 
|---|
| 43 | class CompoundStmt; | 
|---|
| 44 | class ExprStmt; | 
|---|
| 45 | class AsmStmt; | 
|---|
| 46 | class IfStmt; | 
|---|
| 47 | class WhileStmt; | 
|---|
| 48 | class ForStmt; | 
|---|
| 49 | class SwitchStmt; | 
|---|
| 50 | class CaseStmt; | 
|---|
| 51 | class BranchStmt; | 
|---|
| 52 | class ReturnStmt; | 
|---|
| 53 | class ThrowStmt; | 
|---|
| 54 | class TryStmt; | 
|---|
| 55 | class CatchStmt; | 
|---|
| 56 | class FinallyStmt; | 
|---|
| 57 | class NullStmt; | 
|---|
| 58 | class DeclStmt; | 
|---|
| 59 | class NullStmt; | 
|---|
| 60 | class ImplicitCtorDtorStmt; | 
|---|
| 61 |  | 
|---|
| 62 | class Expression; | 
|---|
| 63 | class ApplicationExpr; | 
|---|
| 64 | class UntypedExpr; | 
|---|
| 65 | class NameExpr; | 
|---|
| 66 | class AddressExpr; | 
|---|
| 67 | class LabelAddressExpr; | 
|---|
| 68 | class CastExpr; | 
|---|
| 69 | class MemberExpr; | 
|---|
| 70 | class UntypedMemberExpr; | 
|---|
| 71 | class VariableExpr; | 
|---|
| 72 | class ConstantExpr; | 
|---|
| 73 | class SizeofExpr; | 
|---|
| 74 | class AlignofExpr; | 
|---|
| 75 | class UntypedOffsetofExpr; | 
|---|
| 76 | class OffsetofExpr; | 
|---|
| 77 | class OffsetPackExpr; | 
|---|
| 78 | class AttrExpr; | 
|---|
| 79 | class LogicalExpr; | 
|---|
| 80 | class ConditionalExpr; | 
|---|
| 81 | class CommaExpr; | 
|---|
| 82 | class TypeExpr; | 
|---|
| 83 | class AsmExpr; | 
|---|
| 84 | class ImplicitCopyCtorExpr; | 
|---|
| 85 | class ConstructorExpr; | 
|---|
| 86 | class CompoundLiteralExpr; | 
|---|
| 87 | class UntypedValofExpr; | 
|---|
| 88 | class RangeExpr; | 
|---|
| 89 | class UntypedTupleExpr; | 
|---|
| 90 | class TupleExpr; | 
|---|
| 91 | class TupleIndexExpr; | 
|---|
| 92 | class TupleAssignExpr; | 
|---|
| 93 | class StmtExpr; | 
|---|
| 94 | class UniqueExpr; | 
|---|
| 95 | class UntypedInitExpr; | 
|---|
| 96 | class InitExpr; | 
|---|
| 97 |  | 
|---|
| 98 | class Type; | 
|---|
| 99 | class VoidType; | 
|---|
| 100 | class BasicType; | 
|---|
| 101 | class PointerType; | 
|---|
| 102 | class ArrayType; | 
|---|
| 103 | class FunctionType; | 
|---|
| 104 | class ReferenceToType; | 
|---|
| 105 | class StructInstType; | 
|---|
| 106 | class UnionInstType; | 
|---|
| 107 | class EnumInstType; | 
|---|
| 108 | class TraitInstType; | 
|---|
| 109 | class TypeInstType; | 
|---|
| 110 | class TupleType; | 
|---|
| 111 | class TypeofType; | 
|---|
| 112 | class AttrType; | 
|---|
| 113 | class VarArgsType; | 
|---|
| 114 | class ZeroType; | 
|---|
| 115 | class OneType; | 
|---|
| 116 |  | 
|---|
| 117 | class Designation; | 
|---|
| 118 | class Initializer; | 
|---|
| 119 | class SingleInit; | 
|---|
| 120 | class ListInit; | 
|---|
| 121 | class ConstructorInit; | 
|---|
| 122 |  | 
|---|
| 123 | class Subrange; | 
|---|
| 124 |  | 
|---|
| 125 | //template <class T>    // emulate a union with templates? | 
|---|
| 126 | class Constant; | 
|---|
| 127 |  | 
|---|
| 128 | // typedef std::string Label; | 
|---|
| 129 | class Label; | 
|---|
| 130 | typedef unsigned int UniqueId; | 
|---|
| 131 |  | 
|---|
| 132 | class TypeSubstitution; | 
|---|
| 133 |  | 
|---|
| 134 | // gcc attribute | 
|---|
| 135 | class Attribute; | 
|---|
| 136 |  | 
|---|
| 137 | #endif // SYNTREE_H | 
|---|
| 138 |  | 
|---|
| 139 | // Local Variables: // | 
|---|
| 140 | // tab-width: 4 // | 
|---|
| 141 | // mode: c++ // | 
|---|
| 142 | // compile-command: "make install" // | 
|---|
| 143 | // End: // | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.