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
        with_gc
      
      
        
          | Last change
 on this file since 1a66280 was             70a06f6, checked in by Rob Schluntz <rschlunt@…>, 10 years ago | 
        
          | 
Merge branch 'master' into ctor
 
Conflicts:
 
src/CodeGen/CodeGenerator.ccsrc/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 | 
      
      
| 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 : Rob Schluntz | 
|---|
| 12 | // Last Modified On : Thu Apr 14 15:31:36 2016 | 
|---|
| 13 | // Update Count     : 5 | 
|---|
| 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 Declaration; | 
|---|
| 25 | class DeclarationWithType; | 
|---|
| 26 | class ObjectDecl; | 
|---|
| 27 | class FunctionDecl; | 
|---|
| 28 | class AggregateDecl; | 
|---|
| 29 | class StructDecl; | 
|---|
| 30 | class UnionDecl; | 
|---|
| 31 | class EnumDecl; | 
|---|
| 32 | class TraitDecl; | 
|---|
| 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 AsmStmt; | 
|---|
| 43 | class IfStmt; | 
|---|
| 44 | class WhileStmt; | 
|---|
| 45 | class ForStmt; | 
|---|
| 46 | class SwitchStmt; | 
|---|
| 47 | class ChooseStmt; | 
|---|
| 48 | class FallthruStmt; | 
|---|
| 49 | class CaseStmt; | 
|---|
| 50 | class BranchStmt; | 
|---|
| 51 | class ReturnStmt; | 
|---|
| 52 | class TryStmt; | 
|---|
| 53 | class CatchStmt; | 
|---|
| 54 | class FinallyStmt; | 
|---|
| 55 | class NullStmt; | 
|---|
| 56 | class DeclStmt; | 
|---|
| 57 | class NullStmt; | 
|---|
| 58 |  | 
|---|
| 59 | class Expression; | 
|---|
| 60 | class ApplicationExpr; | 
|---|
| 61 | class UntypedExpr; | 
|---|
| 62 | class NameExpr; | 
|---|
| 63 | class AddressExpr; | 
|---|
| 64 | class LabelAddressExpr; | 
|---|
| 65 | class CastExpr; | 
|---|
| 66 | class MemberExpr; | 
|---|
| 67 | class UntypedMemberExpr; | 
|---|
| 68 | class VariableExpr; | 
|---|
| 69 | class ConstantExpr; | 
|---|
| 70 | class SizeofExpr; | 
|---|
| 71 | class AlignofExpr; | 
|---|
| 72 | class UntypedOffsetofExpr; | 
|---|
| 73 | class OffsetofExpr; | 
|---|
| 74 | class OffsetPackExpr; | 
|---|
| 75 | class AttrExpr; | 
|---|
| 76 | class LogicalExpr; | 
|---|
| 77 | class ConditionalExpr; | 
|---|
| 78 | class CommaExpr; | 
|---|
| 79 | class TupleExpr; | 
|---|
| 80 | class SolvedTupleExpr; | 
|---|
| 81 | class TypeExpr; | 
|---|
| 82 | class AsmExpr; | 
|---|
| 83 | class ImplicitCopyCtorExpr; | 
|---|
| 84 | class UntypedValofExpr; | 
|---|
| 85 | class CompoundLiteralExpr; | 
|---|
| 86 |  | 
|---|
| 87 | class Type; | 
|---|
| 88 | class VoidType; | 
|---|
| 89 | class BasicType; | 
|---|
| 90 | class PointerType; | 
|---|
| 91 | class ArrayType; | 
|---|
| 92 | class FunctionType; | 
|---|
| 93 | class ReferenceToType; | 
|---|
| 94 | class StructInstType; | 
|---|
| 95 | class UnionInstType; | 
|---|
| 96 | class EnumInstType; | 
|---|
| 97 | class TraitInstType; | 
|---|
| 98 | class TypeInstType; | 
|---|
| 99 | class TupleType; | 
|---|
| 100 | class TypeofType; | 
|---|
| 101 | class AttrType; | 
|---|
| 102 | class VarArgsType; | 
|---|
| 103 |  | 
|---|
| 104 | class Initializer; | 
|---|
| 105 | class SingleInit; | 
|---|
| 106 | class ListInit; | 
|---|
| 107 | class ConstructorInit; | 
|---|
| 108 |  | 
|---|
| 109 | class Subrange; | 
|---|
| 110 |  | 
|---|
| 111 | //template <class T>    // emulate a union with templates? | 
|---|
| 112 | class Constant; | 
|---|
| 113 |  | 
|---|
| 114 | typedef std::string Label; | 
|---|
| 115 | typedef unsigned int UniqueId; | 
|---|
| 116 |  | 
|---|
| 117 | class TypeSubstitution; | 
|---|
| 118 |  | 
|---|
| 119 | #endif // SYNTREE_H | 
|---|
| 120 |  | 
|---|
| 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.