source: src/SynTree/Visitor.h@ 4ef8fb3

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 4ef8fb3 was 3da470c, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

Merge branch 'master' of plg2:software/cfa/cfa-cc

  • Property mode set to 100644
File size: 5.3 KB
RevLine 
[0dd3a2f]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
[630a82a]12// Last Modified On : Fri Apr 1 17:26:55 2016
13// Update Count : 7
[0dd3a2f]14//
15
[51b73452]16#ifndef VISITOR_H
17#define VISITOR_H
18
19#include "SynTree.h"
[d3b7937]20#include "Common/SemanticError.h"
21#include "Common/CompilerError.h"
[51b73452]22
[d9a0e76]23class Visitor {
24 protected:
[0dd3a2f]25 Visitor();
26 virtual ~Visitor();
[d9a0e76]27 public:
[0dd3a2f]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 );
[4040425]33 virtual void visit( TraitDecl *aggregateDecl );
[0dd3a2f]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 );
[7f5566b]39 virtual void visit( AsmStmt *asmStmt );
[0dd3a2f]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 );
[47534159]66 virtual void visit( AlignofExpr *alignofExpr );
[2a4b088]67 virtual void visit( UntypedOffsetofExpr *offsetofExpr );
[25a054f]68 virtual void visit( OffsetofExpr *offsetofExpr );
[afc1045]69 virtual void visit( OffsetPackExpr *offsetPackExpr );
[0dd3a2f]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( TupleExpr *tupleExpr );
75 virtual void visit( SolvedTupleExpr *tupleExpr );
76 virtual void visit( TypeExpr *typeExpr );
[7f5566b]77 virtual void visit( AsmExpr *asmExpr );
[0dd3a2f]78 virtual void visit( UntypedValofExpr *valofExpr );
[630a82a]79 virtual void visit( CompoundLiteralExpr *compLitExpr );
[0dd3a2f]80
81 virtual void visit( VoidType *basicType );
82 virtual void visit( BasicType *basicType );
83 virtual void visit( PointerType *pointerType );
84 virtual void visit( ArrayType *arrayType );
85 virtual void visit( FunctionType *functionType );
86 virtual void visit( StructInstType *aggregateUseType );
87 virtual void visit( UnionInstType *aggregateUseType );
88 virtual void visit( EnumInstType *aggregateUseType );
[4040425]89 virtual void visit( TraitInstType *aggregateUseType );
[0dd3a2f]90 virtual void visit( TypeInstType *aggregateUseType );
91 virtual void visit( TupleType *tupleType );
92 virtual void visit( TypeofType *typeofType );
93 virtual void visit( AttrType *attrType );
[44b7088]94 virtual void visit( VarArgsType *varArgsType );
[0dd3a2f]95
96 virtual void visit( SingleInit *singleInit );
97 virtual void visit( ListInit *listInit );
98
99 virtual void visit( Subrange *subrange );
100
101 virtual void visit( Constant *constant );
[d9a0e76]102 private:
[0dd3a2f]103 virtual void visit( AggregateDecl *aggregateDecl );
104 virtual void visit( NamedTypeDecl *typeDecl );
105 virtual void visit( ReferenceToType *aggregateUseType );
[51b73452]106};
107
108template< typename TreeType, typename VisitorType >
[d9a0e76]109inline void maybeAccept( TreeType *tree, VisitorType &visitor ) {
[0dd3a2f]110 if ( tree ) {
111 tree->accept( visitor );
112 }
[51b73452]113}
114
115template< typename Container, typename VisitorType >
[d9a0e76]116inline void acceptAll( Container &container, VisitorType &visitor ) {
[0dd3a2f]117 SemanticError errors;
118 for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
119 try {
120 if ( *i ) {
121 (*i)->accept( visitor );
122 }
123 } catch( SemanticError &e ) {
124 errors.append( e );
125 }
126 }
127 if ( ! errors.isEmpty() ) {
128 throw errors;
[51b73452]129 }
130}
131
132template< typename Container, typename VisitorType >
[d9a0e76]133void acceptAllFold( Container &container, VisitorType &visitor, VisitorType &around ) {
[0dd3a2f]134 SemanticError errors;
135 for ( typename Container::iterator i = container.begin(); i != container.end(); ++i ) {
136 try {
137 if ( *i ) {
138 VisitorType *v = new VisitorType;
139 (*i)->accept( *v );
140
141 typename Container::iterator nxt = i; nxt++; // forward_iterator
142 if ( nxt == container.end() )
143 visitor += *v;
144 else
145 visitor += *v + around;
146
147 delete v;
148 } // if
149 } catch( SemanticError &e ) {
150 errors.append( e );
151 } // try
152 } // for
153 if ( ! errors.isEmpty() ) {
154 throw errors;
155 } // if
[51b73452]156}
157
[d9a0e76]158#endif // VISITOR_H
[0dd3a2f]159
160// Local Variables: //
161// tab-width: 4 //
162// mode: c++ //
163// compile-command: "make install" //
164// End: //
Note: See TracBrowser for help on using the repository browser.