| [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 | // | 
|---|
| [620cb95] | 7 | // AddVisit.h -- | 
|---|
| [0dd3a2f] | 8 | // | 
|---|
|  | 9 | // Author           : Richard C. Bilson | 
|---|
|  | 10 | // Created On       : Sun May 17 16:14:32 2015 | 
|---|
| [4e06c1e] | 11 | // Last Modified By : Peter A. Buhr | 
|---|
|  | 12 | // Last Modified On : Tue Jul 12 17:46:33 2016 | 
|---|
|  | 13 | // Update Count     : 6 | 
|---|
| [0dd3a2f] | 14 | // | 
|---|
| [51b73452] | 15 |  | 
|---|
|  | 16 | namespace SymTab { | 
|---|
| [0dd3a2f] | 17 | void addDecls( std::list< Declaration* > &declsToAdd, std::list< Statement* > &statements, std::list< Statement* >::iterator i ); | 
|---|
| [51b73452] | 18 |  | 
|---|
| [0dd3a2f] | 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 | } | 
|---|
| [51b73452] | 27 |  | 
|---|
| [0dd3a2f] | 28 | template< typename Visitor > | 
|---|
|  | 29 | inline void addVisit(CompoundStmt *compoundStmt, Visitor &visitor) { | 
|---|
|  | 30 | addVisitStatementList( compoundStmt->get_kids(), visitor ); | 
|---|
|  | 31 | } | 
|---|
| [51b73452] | 32 |  | 
|---|
| [0dd3a2f] | 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 | } | 
|---|
| [51b73452] | 38 |  | 
|---|
| [620cb95] | 39 | template< typename Visitor > | 
|---|
|  | 40 | void acceptAndAdd( std::list< Declaration * > &translationUnit, Visitor &visitor, bool addBefore ) { | 
|---|
|  | 41 | std::list< Declaration * >::iterator i = translationUnit.begin(); | 
|---|
|  | 42 | while ( i != translationUnit.end() ) { | 
|---|
|  | 43 | (*i)->accept( visitor ); | 
|---|
|  | 44 | std::list< Declaration * >::iterator next = i; | 
|---|
|  | 45 | next++; | 
|---|
|  | 46 | if ( ! visitor.get_declsToAdd().empty() ) { | 
|---|
|  | 47 | translationUnit.splice( addBefore ? i : next, visitor.get_declsToAdd() ); | 
|---|
|  | 48 | } // if | 
|---|
|  | 49 | i = next; | 
|---|
|  | 50 | } // while | 
|---|
|  | 51 | } | 
|---|
| [70a06f6] | 52 |  | 
|---|
| [51b73452] | 53 | } // namespace SymTab | 
|---|
| [0dd3a2f] | 54 |  | 
|---|
|  | 55 | // Local Variables: // | 
|---|
|  | 56 | // tab-width: 4 // | 
|---|
|  | 57 | // mode: c++ // | 
|---|
|  | 58 | // compile-command: "make install" // | 
|---|
|  | 59 | // End: // | 
|---|