source: src/SymTab/AddVisit.h@ 8f62de7

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 8f62de7 was 70a06f6, checked in by Rob Schluntz <rschlunt@…>, 9 years ago

Merge branch 'master' into ctor

Conflicts:

src/CodeGen/CodeGenerator.cc
src/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.4 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// AddVisit.h --
8//
9// Author : Richard C. Bilson
10// Created On : Sun May 17 16:14:32 2015
11// Last Modified By : Rob Schluntz
12// Last Modified On : Thu Apr 14 15:52:42 2016
13// Update Count : 5
14//
15
16namespace SymTab {
17 void addDecls( std::list< Declaration* > &declsToAdd, std::list< Statement* > &statements, std::list< Statement* >::iterator i );
18
19 template< typename Visitor >
20 inline void addVisitStatementList( std::list< Statement* > &statements, Visitor &visitor ) {
21 for ( std::list< Statement* >::iterator i = statements.begin(); i != statements.end(); ++i ) {
22 addDecls( visitor.get_declsToAdd(), statements, i );
23 (*i)->accept( visitor );
24 } // for
25 addDecls( visitor.get_declsToAdd(), statements, statements.end() );
26 }
27
28 template< typename Visitor >
29 inline void addVisit(CompoundStmt *compoundStmt, Visitor &visitor) {
30 addVisitStatementList( compoundStmt->get_kids(), visitor );
31 }
32
33 template< typename Visitor >
34 inline void addVisit(SwitchStmt *switchStmt, Visitor &visitor) {
35 addVisitStatementList( switchStmt->get_branches(), visitor );
36 maybeAccept( switchStmt->get_condition(), visitor );
37 }
38
39 template< typename Visitor >
40 inline void addVisit(ChooseStmt *switchStmt, Visitor &visitor) {
41 addVisitStatementList( switchStmt->get_branches(), visitor );
42 maybeAccept( switchStmt->get_condition(), visitor );
43 }
44
45 // template< typename Visitor >
46 // inline void addVisit(CaseStmt *caseStmt, Visitor &visitor) {
47 // addVisitStatementList( caseStmt->get_statements(), visitor );
48 // maybeAccept( caseStmt->get_condition(), visitor );
49 // }
50
51 template< typename Visitor >
52 void acceptAndAdd( std::list< Declaration * > &translationUnit, Visitor &visitor, bool addBefore ) {
53 std::list< Declaration * >::iterator i = translationUnit.begin();
54 while ( i != translationUnit.end() ) {
55 (*i)->accept( visitor );
56 std::list< Declaration * >::iterator next = i;
57 next++;
58 if ( ! visitor.get_declsToAdd().empty() ) {
59 translationUnit.splice( addBefore ? i : next, visitor.get_declsToAdd() );
60 } // if
61 i = next;
62 } // while
63 }
64
65} // namespace SymTab
66
67// Local Variables: //
68// tab-width: 4 //
69// mode: c++ //
70// compile-command: "make install" //
71// End: //
Note: See TracBrowser for help on using the repository browser.