source: src/SynTree/Visitor.h @ 68fe077a

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 68fe077a was 138e29e, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Implemented filename and linenumber errors in most cases, only missing constructor errors apparently

  • Property mode set to 100644
File size: 5.9 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 : Thu Feb  9 14:23:24 2017
13// Update Count     : 10
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( TraitDecl *aggregateDecl );
34        virtual void visit( TypeDecl *typeDecl );
35        virtual void visit( TypedefDecl *typeDecl );
36        virtual void visit( AsmDecl *asmDecl );
37
38        virtual void visit( CompoundStmt *compoundStmt );
39        virtual void visit( ExprStmt *exprStmt );
40        virtual void visit( AsmStmt *asmStmt );
41        virtual void visit( IfStmt *ifStmt );
42        virtual void visit( WhileStmt *whileStmt );
43        virtual void visit( ForStmt *forStmt );
44        virtual void visit( SwitchStmt *switchStmt );
45        virtual void visit( CaseStmt *caseStmt );
46        virtual void visit( BranchStmt *branchStmt );
47        virtual void visit( ReturnStmt *returnStmt );
48        virtual void visit( TryStmt *tryStmt );
49        virtual void visit( CatchStmt *catchStmt );
50        virtual void visit( FinallyStmt *finallyStmt );
51        virtual void visit( NullStmt *nullStmt );
52        virtual void visit( DeclStmt *declStmt );
53        virtual void visit( ImplicitCtorDtorStmt *impCtorDtorStmt );
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( UntypedOffsetofExpr *offsetofExpr );
68        virtual void visit( OffsetofExpr *offsetofExpr );
69        virtual void visit( OffsetPackExpr *offsetPackExpr );
70        virtual void visit( AttrExpr *attrExpr );
71        virtual void visit( LogicalExpr *logicalExpr );
72        virtual void visit( ConditionalExpr *conditionalExpr );
73        virtual void visit( CommaExpr *commaExpr );
74        virtual void visit( TypeExpr *typeExpr );
75        virtual void visit( AsmExpr *asmExpr );
76        virtual void visit( ImplicitCopyCtorExpr *impCpCtorExpr );
77        virtual void visit( ConstructorExpr * ctorExpr );
78        virtual void visit( CompoundLiteralExpr *compLitExpr );
79        virtual void visit( UntypedValofExpr *valofExpr );
80        virtual void visit( RangeExpr *rangeExpr );
81        virtual void visit( UntypedTupleExpr *tupleExpr );
82        virtual void visit( TupleExpr *tupleExpr );
83        virtual void visit( TupleIndexExpr *tupleExpr );
84        virtual void visit( MemberTupleExpr *tupleExpr );
85        virtual void visit( TupleAssignExpr *assignExpr );
86        virtual void visit( StmtExpr * stmtExpr );
87        virtual void visit( UniqueExpr * uniqueExpr );
88
89        virtual void visit( VoidType *basicType );
90        virtual void visit( BasicType *basicType );
91        virtual void visit( PointerType *pointerType );
92        virtual void visit( ArrayType *arrayType );
93        virtual void visit( FunctionType *functionType );
94        virtual void visit( StructInstType *aggregateUseType );
95        virtual void visit( UnionInstType *aggregateUseType );
96        virtual void visit( EnumInstType *aggregateUseType );
97        virtual void visit( TraitInstType *aggregateUseType );
98        virtual void visit( TypeInstType *aggregateUseType );
99        virtual void visit( TupleType *tupleType );
100        virtual void visit( TypeofType *typeofType );
101        virtual void visit( AttrType *attrType );
102        virtual void visit( VarArgsType *varArgsType );
103        virtual void visit( ZeroType *zeroType );
104        virtual void visit( OneType *oneType );
105
106        virtual void visit( SingleInit *singleInit );
107        virtual void visit( ListInit *listInit );
108        virtual void visit( ConstructorInit *ctorInit );
109
110        virtual void visit( Subrange *subrange );
111
112        virtual void visit( Constant *constant );
113  private:
114        virtual void handleAggregateDecl( AggregateDecl *aggregateDecl );
115        virtual void handleNamedTypeDecl( NamedTypeDecl *typeDecl );
116        virtual void handleReferenceToType( ReferenceToType *aggregateUseType );
117};
118
119template< typename TreeType, typename VisitorType >
120inline void maybeAccept( TreeType *tree, VisitorType &visitor ) {
121        if ( tree ) {
122                tree->accept( visitor );
123        }
124}
125
126template< typename Container, typename VisitorType >
127inline void acceptAll( Container &container, VisitorType &visitor ) {
128        SemanticError errors;
129        for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
130                try {
131                        if ( *i ) {
132                                (*i)->accept( visitor );
133                        }
134                } catch( SemanticError &e ) {
135                        e.set_location( (*i)->location );
136                        errors.append( e );
137                }
138        }
139        if ( ! errors.isEmpty() ) {
140                throw errors;
141        }
142}
143
144template< typename Container, typename VisitorType >
145void acceptAllFold( Container &container, VisitorType &visitor, VisitorType &around ) {
146        SemanticError errors;
147        for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
148                try {
149                        if ( *i ) {
150                                VisitorType *v = new VisitorType;
151                                (*i)->accept( *v );
152
153                                typename Container::iterator nxt = i; nxt++; // forward_iterator
154                                if ( nxt == container.end() )
155                                        visitor += *v;
156                                else
157                                        visitor += *v + around;
158
159                                delete v;
160                        } // if
161                } catch( SemanticError &e ) {
162                        e.set_location( (*i)->location );                       
163                        errors.append( e );
164                } // try
165        } // for
166        if ( ! errors.isEmpty() ) {
167                throw errors;
168        } // if
169}
170
171#endif // VISITOR_H
172
173// Local Variables: //
174// tab-width: 4 //
175// mode: c++ //
176// compile-command: "make install" //
177// End: //
Note: See TracBrowser for help on using the repository browser.