source: src/SynTree/Visitor.h@ c8c03683

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 c8c03683 was f1b1e4c, checked in by Rob Schluntz <rschlunt@…>, 9 years ago

can construct global const objects, except with intrinsic constructors

  • Property mode set to 100644
File size: 5.5 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 : Rob Schluntz
12// Last Modified On : Thu Apr 14 15:30:58 2016
13// Update Count : 7
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
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 virtual void visit( ImplicitCtorDtorStmt *impCtorDtorStmt );
55
56 virtual void visit( ApplicationExpr *applicationExpr );
57 virtual void visit( UntypedExpr *untypedExpr );
58 virtual void visit( NameExpr *nameExpr );
59 virtual void visit( CastExpr *castExpr );
60 virtual void visit( AddressExpr *addressExpr );
61 virtual void visit( LabelAddressExpr *labAddressExpr );
62 virtual void visit( UntypedMemberExpr *memberExpr );
63 virtual void visit( MemberExpr *memberExpr );
64 virtual void visit( VariableExpr *variableExpr );
65 virtual void visit( ConstantExpr *constantExpr );
66 virtual void visit( SizeofExpr *sizeofExpr );
67 virtual void visit( AlignofExpr *alignofExpr );
68 virtual void visit( UntypedOffsetofExpr *offsetofExpr );
69 virtual void visit( OffsetofExpr *offsetofExpr );
70 virtual void visit( OffsetPackExpr *offsetPackExpr );
71 virtual void visit( AttrExpr *attrExpr );
72 virtual void visit( LogicalExpr *logicalExpr );
73 virtual void visit( ConditionalExpr *conditionalExpr );
74 virtual void visit( CommaExpr *commaExpr );
75 virtual void visit( TupleExpr *tupleExpr );
76 virtual void visit( SolvedTupleExpr *tupleExpr );
77 virtual void visit( TypeExpr *typeExpr );
78 virtual void visit( AsmExpr *asmExpr );
79 virtual void visit( ImplicitCopyCtorExpr *impCpCtorExpr );
80 virtual void visit( UntypedValofExpr *valofExpr );
81 virtual void visit( CompoundLiteralExpr *compLitExpr );
82
83 virtual void visit( VoidType *basicType );
84 virtual void visit( BasicType *basicType );
85 virtual void visit( PointerType *pointerType );
86 virtual void visit( ArrayType *arrayType );
87 virtual void visit( FunctionType *functionType );
88 virtual void visit( StructInstType *aggregateUseType );
89 virtual void visit( UnionInstType *aggregateUseType );
90 virtual void visit( EnumInstType *aggregateUseType );
91 virtual void visit( TraitInstType *aggregateUseType );
92 virtual void visit( TypeInstType *aggregateUseType );
93 virtual void visit( TupleType *tupleType );
94 virtual void visit( TypeofType *typeofType );
95 virtual void visit( AttrType *attrType );
96 virtual void visit( VarArgsType *varArgsType );
97
98 virtual void visit( SingleInit *singleInit );
99 virtual void visit( ListInit *listInit );
100 virtual void visit( ConstructorInit *ctorInit );
101
102 virtual void visit( Subrange *subrange );
103
104 virtual void visit( Constant *constant );
105 private:
106 virtual void visit( AggregateDecl *aggregateDecl );
107 virtual void visit( NamedTypeDecl *typeDecl );
108 virtual void visit( ReferenceToType *aggregateUseType );
109};
110
111template< typename TreeType, typename VisitorType >
112inline void maybeAccept( TreeType *tree, VisitorType &visitor ) {
113 if ( tree ) {
114 tree->accept( visitor );
115 }
116}
117
118template< typename Container, typename VisitorType >
119inline void acceptAll( Container &container, VisitorType &visitor ) {
120 SemanticError errors;
121 for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
122 try {
123 if ( *i ) {
124 (*i)->accept( visitor );
125 }
126 } catch( SemanticError &e ) {
127 errors.append( e );
128 }
129 }
130 if ( ! errors.isEmpty() ) {
131 throw errors;
132 }
133}
134
135template< typename Container, typename VisitorType >
136void acceptAllFold( Container &container, VisitorType &visitor, VisitorType &around ) {
137 SemanticError errors;
138 for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
139 try {
140 if ( *i ) {
141 VisitorType *v = new VisitorType;
142 (*i)->accept( *v );
143
144 typename Container::iterator nxt = i; nxt++; // forward_iterator
145 if ( nxt == container.end() )
146 visitor += *v;
147 else
148 visitor += *v + around;
149
150 delete v;
151 } // if
152 } catch( SemanticError &e ) {
153 errors.append( e );
154 } // try
155 } // for
156 if ( ! errors.isEmpty() ) {
157 throw errors;
158 } // if
159}
160
161#endif // VISITOR_H
162
163// Local Variables: //
164// tab-width: 4 //
165// mode: c++ //
166// compile-command: "make install" //
167// End: //
Note: See TracBrowser for help on using the repository browser.