source: src/SynTree/Visitor.h @ d3b7937

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 d3b7937 was d3b7937, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

building runtime library (first attempt)

  • Property mode set to 100644
File size: 5.0 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// Visitor.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 Jan 25 21:20:44 2016
13// Update Count     : 5
14//
15
16#ifndef VISITOR_H
17#define VISITOR_H
18
19#include "SynTree.h"
20#include "Common/SemanticError.h"
21#include "Common/CompilerError.h"
22
23class Visitor {
24  protected:
25        Visitor();
26        virtual ~Visitor();
27  public:
28        virtual void visit( ObjectDecl *objectDecl );
29        virtual void visit( FunctionDecl *functionDecl );
30        virtual void visit( StructDecl *aggregateDecl );
31        virtual void visit( UnionDecl *aggregateDecl );
32        virtual void visit( EnumDecl *aggregateDecl );
33        virtual void visit( ContextDecl *aggregateDecl );
34        virtual void visit( TypeDecl *typeDecl );
35        virtual void visit( TypedefDecl *typeDecl );
36
37        virtual void visit( CompoundStmt *compoundStmt );
38        virtual void visit( ExprStmt *exprStmt );
39        virtual void visit( AsmStmt *asmStmt );
40        virtual void visit( IfStmt *ifStmt );
41        virtual void visit( WhileStmt *whileStmt );
42        virtual void visit( ForStmt *forStmt );
43        virtual void visit( SwitchStmt *switchStmt );
44        virtual void visit( ChooseStmt *switchStmt );
45        virtual void visit( FallthruStmt *switchStmt );
46        virtual void visit( CaseStmt *caseStmt );
47        virtual void visit( BranchStmt *branchStmt );
48        virtual void visit( ReturnStmt *returnStmt );
49        virtual void visit( TryStmt *tryStmt );
50        virtual void visit( CatchStmt *catchStmt );
51        virtual void visit( FinallyStmt *finallyStmt );
52        virtual void visit( NullStmt *nullStmt );
53        virtual void visit( DeclStmt *declStmt );
54
55        virtual void visit( ApplicationExpr *applicationExpr );
56        virtual void visit( UntypedExpr *untypedExpr );
57        virtual void visit( NameExpr *nameExpr );
58        virtual void visit( CastExpr *castExpr );
59        virtual void visit( AddressExpr *addressExpr );
60        virtual void visit( LabelAddressExpr *labAddressExpr );
61        virtual void visit( UntypedMemberExpr *memberExpr );
62        virtual void visit( MemberExpr *memberExpr );
63        virtual void visit( VariableExpr *variableExpr );
64        virtual void visit( ConstantExpr *constantExpr ); 
65        virtual void visit( SizeofExpr *sizeofExpr );
66        virtual void visit( AlignofExpr *alignofExpr );
67        virtual void visit( AttrExpr *attrExpr );
68        virtual void visit( LogicalExpr *logicalExpr );
69        virtual void visit( ConditionalExpr *conditionalExpr );
70        virtual void visit( CommaExpr *commaExpr );
71        virtual void visit( TupleExpr *tupleExpr );
72        virtual void visit( SolvedTupleExpr *tupleExpr );
73        virtual void visit( TypeExpr *typeExpr );
74        virtual void visit( AsmExpr *asmExpr );
75        virtual void visit( UntypedValofExpr *valofExpr );
76
77        virtual void visit( VoidType *basicType );
78        virtual void visit( BasicType *basicType );
79        virtual void visit( PointerType *pointerType );
80        virtual void visit( ArrayType *arrayType );
81        virtual void visit( FunctionType *functionType );
82        virtual void visit( StructInstType *aggregateUseType );
83        virtual void visit( UnionInstType *aggregateUseType );
84        virtual void visit( EnumInstType *aggregateUseType );
85        virtual void visit( ContextInstType *aggregateUseType );
86        virtual void visit( TypeInstType *aggregateUseType );
87        virtual void visit( TupleType *tupleType );
88        virtual void visit( TypeofType *typeofType );
89        virtual void visit( AttrType *attrType );
90
91        virtual void visit( SingleInit *singleInit );
92        virtual void visit( ListInit *listInit );
93
94        virtual void visit( Subrange *subrange );
95
96        virtual void visit( Constant *constant );
97  private:
98        virtual void visit( AggregateDecl *aggregateDecl );
99        virtual void visit( NamedTypeDecl *typeDecl );
100        virtual void visit( ReferenceToType *aggregateUseType );
101};
102
103template< typename TreeType, typename VisitorType >
104inline void maybeAccept( TreeType *tree, VisitorType &visitor ) {
105        if ( tree ) {
106                tree->accept( visitor );
107        }
108}
109
110template< typename Container, typename VisitorType >
111inline void acceptAll( Container &container, VisitorType &visitor ) {
112        SemanticError errors;
113        for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
114                try {
115                        if ( *i ) {
116                                (*i)->accept( visitor );
117                        }
118                } catch( SemanticError &e ) {
119                        errors.append( e );
120                }
121        }
122        if ( ! errors.isEmpty() ) {
123                throw errors;
124        }
125}
126
127template< typename Container, typename VisitorType >
128void acceptAllFold( Container &container, VisitorType &visitor, VisitorType &around ) {
129        SemanticError errors;
130        for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
131                try {
132                        if ( *i ) {
133                                VisitorType *v = new VisitorType;
134                                (*i)->accept( *v );
135
136                                typename Container::iterator nxt = i; nxt++; // forward_iterator
137                                if ( nxt == container.end() )
138                                        visitor += *v;
139                                else
140                                        visitor += *v + around;
141
142                                delete v;
143                        } // if
144                } catch( SemanticError &e ) {
145                        errors.append( e );
146                } // try
147        } // for
148        if ( ! errors.isEmpty() ) {
149                throw errors;
150        } // if
151}
152
153#endif // VISITOR_H
154
155// Local Variables: //
156// tab-width: 4 //
157// mode: c++ //
158// compile-command: "make install" //
159// End: //
Note: See TracBrowser for help on using the repository browser.