[51587aa] | 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 | // |
---|
[b4cd03b7] | 7 | // FindFunction.cc -- |
---|
[51587aa] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Mon May 18 07:44:20 2015 |
---|
[c97b448] | 11 | // Last Modified By : Andrew Beach |
---|
| 12 | // Last Modified On : Fri Oct 7 17:05:20 2022 |
---|
| 13 | // Update Count : 7 |
---|
[51587aa] | 14 | // |
---|
[51b7345] | 15 | |
---|
| 16 | #include "FindFunction.h" |
---|
| 17 | |
---|
[08fc48f] | 18 | #include <utility> // for pair |
---|
| 19 | |
---|
[c97b448] | 20 | #include "AST/Pass.hpp" // for Pass |
---|
| 21 | #include "AST/Type.hpp" |
---|
[effdde0] | 22 | #include "Common/PassVisitor.h" // for PassVisitor |
---|
[08fc48f] | 23 | #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::iterator |
---|
| 24 | #include "GenPoly/GenPoly.h" // for TyVarMap |
---|
| 25 | #include "ScrubTyVars.h" // for ScrubTyVars |
---|
| 26 | #include "SynTree/Declaration.h" // for DeclarationWithType, TypeDecl |
---|
| 27 | #include "SynTree/Mutator.h" // for Mutator, mutateAll |
---|
| 28 | #include "SynTree/Type.h" // for FunctionType, Type, Type::For... |
---|
[b4cd03b7] | 29 | |
---|
[51b7345] | 30 | namespace GenPoly { |
---|
[effdde0] | 31 | class FindFunction : public WithGuards, public WithVisitorRef<FindFunction>, public WithShortCircuiting { |
---|
[01aeade] | 32 | public: |
---|
[4da152a] | 33 | FindFunction( std::list< FunctionType const* > &functions, const TyVarMap &tyVars, bool replaceMode, FindFunctionPredicate predicate ); |
---|
[b4cd03b7] | 34 | |
---|
[effdde0] | 35 | void premutate( FunctionType * functionType ); |
---|
| 36 | Type * postmutate( FunctionType * functionType ); |
---|
| 37 | void premutate( PointerType * pointerType ); |
---|
[01aeade] | 38 | private: |
---|
[8c49c0e] | 39 | void handleForall( const Type::ForallList &forall ); |
---|
[51b7345] | 40 | |
---|
[4da152a] | 41 | std::list< FunctionType const * > & functions; |
---|
[01aeade] | 42 | TyVarMap tyVars; |
---|
| 43 | bool replaceMode; |
---|
| 44 | FindFunctionPredicate predicate; |
---|
| 45 | }; |
---|
[51b7345] | 46 | |
---|
[4da152a] | 47 | void findFunction( Type *type, std::list< FunctionType const * > &functions, const TyVarMap &tyVars, FindFunctionPredicate predicate ) { |
---|
[effdde0] | 48 | PassVisitor<FindFunction> finder( functions, tyVars, false, predicate ); |
---|
[01aeade] | 49 | type->acceptMutator( finder ); |
---|
| 50 | } |
---|
[51b7345] | 51 | |
---|
[4da152a] | 52 | void findAndReplaceFunction( Type *&type, std::list< FunctionType const * > &functions, const TyVarMap &tyVars, FindFunctionPredicate predicate ) { |
---|
[effdde0] | 53 | PassVisitor<FindFunction> finder( functions, tyVars, true, predicate ); |
---|
[01aeade] | 54 | type = type->acceptMutator( finder ); |
---|
| 55 | } |
---|
[51b7345] | 56 | |
---|
[4da152a] | 57 | FindFunction::FindFunction( std::list< FunctionType const * > &functions, const TyVarMap &tyVars, bool replaceMode, FindFunctionPredicate predicate ) |
---|
[01aeade] | 58 | : functions( functions ), tyVars( tyVars ), replaceMode( replaceMode ), predicate( predicate ) { |
---|
| 59 | } |
---|
[51b7345] | 60 | |
---|
[8c49c0e] | 61 | void FindFunction::handleForall( const Type::ForallList &forall ) { |
---|
[effdde0] | 62 | for ( const Declaration * td : forall ) { |
---|
| 63 | TyVarMap::iterator var = tyVars.find( td->name ); |
---|
[01aeade] | 64 | if ( var != tyVars.end() ) { |
---|
[bfae637] | 65 | tyVars.erase( var->first ); |
---|
[01aeade] | 66 | } // if |
---|
| 67 | } // for |
---|
| 68 | } |
---|
[51b7345] | 69 | |
---|
[effdde0] | 70 | void FindFunction::premutate( FunctionType * functionType ) { |
---|
| 71 | visit_children = false; |
---|
| 72 | GuardScope( tyVars ); |
---|
[01aeade] | 73 | handleForall( functionType->get_forall() ); |
---|
[effdde0] | 74 | mutateAll( functionType->get_returnVals(), *visitor ); |
---|
| 75 | } |
---|
| 76 | |
---|
| 77 | Type * FindFunction::postmutate( FunctionType * functionType ) { |
---|
[01aeade] | 78 | Type *ret = functionType; |
---|
| 79 | if ( predicate( functionType, tyVars ) ) { |
---|
| 80 | functions.push_back( functionType ); |
---|
| 81 | if ( replaceMode ) { |
---|
[b4cd03b7] | 82 | // replace type parameters in function type with void* |
---|
| 83 | ret = ScrubTyVars::scrub( functionType->clone(), tyVars ); |
---|
[01aeade] | 84 | } // if |
---|
| 85 | } // if |
---|
| 86 | return ret; |
---|
| 87 | } |
---|
[51b7345] | 88 | |
---|
[effdde0] | 89 | void FindFunction::premutate( PointerType * pointerType ) { |
---|
| 90 | GuardScope( tyVars ); |
---|
[01aeade] | 91 | handleForall( pointerType->get_forall() ); |
---|
| 92 | } |
---|
[c97b448] | 93 | |
---|
| 94 | namespace { |
---|
| 95 | |
---|
| 96 | struct FindFunctionCore : |
---|
| 97 | public ast::WithGuards, |
---|
| 98 | public ast::WithShortCircuiting, |
---|
| 99 | public ast::WithVisitorRef<FindFunctionCore> { |
---|
| 100 | FindFunctionCore( |
---|
| 101 | std::vector<ast::ptr<ast::FunctionType>> & functions, |
---|
| 102 | const TypeVarMap & typeVars, FindFunctionPred predicate, |
---|
| 103 | bool replaceMode ); |
---|
| 104 | |
---|
| 105 | void previsit( ast::FunctionType const * type ); |
---|
| 106 | ast::Type const * postvisit( ast::FunctionType const * type ); |
---|
| 107 | void previsit( ast::PointerType const * type ); |
---|
| 108 | private: |
---|
| 109 | void handleForall( const ast::FunctionType::ForallList & forall ); |
---|
| 110 | |
---|
| 111 | std::vector<ast::ptr<ast::FunctionType>> &functions; |
---|
| 112 | TypeVarMap typeVars; |
---|
| 113 | FindFunctionPred predicate; |
---|
| 114 | bool replaceMode; |
---|
| 115 | }; |
---|
| 116 | |
---|
| 117 | FindFunctionCore::FindFunctionCore( |
---|
| 118 | std::vector<ast::ptr<ast::FunctionType>> & functions, |
---|
| 119 | const TypeVarMap &typeVars, FindFunctionPred predicate, |
---|
| 120 | bool replaceMode ) : |
---|
| 121 | functions( functions ), typeVars( typeVars ), |
---|
| 122 | predicate( predicate ), replaceMode( replaceMode ) {} |
---|
| 123 | |
---|
| 124 | void FindFunctionCore::handleForall( const ast::FunctionType::ForallList & forall ) { |
---|
| 125 | for ( const ast::ptr<ast::TypeInstType> & td : forall ) { |
---|
| 126 | TypeVarMap::iterator var = typeVars.find( *td ); |
---|
| 127 | if ( var != typeVars.end() ) { |
---|
| 128 | typeVars.erase( var->first ); |
---|
| 129 | } // if |
---|
| 130 | } // for |
---|
| 131 | } |
---|
| 132 | |
---|
| 133 | void FindFunctionCore::previsit( ast::FunctionType const * type ) { |
---|
| 134 | visit_children = false; |
---|
| 135 | GuardScope( typeVars ); |
---|
| 136 | handleForall( type->forall ); |
---|
| 137 | //ast::accept_all( type->returns, *visitor ); |
---|
| 138 | // This might have to become ast::mutate_each with return. |
---|
| 139 | ast::accept_each( type->returns, *visitor ); |
---|
| 140 | } |
---|
| 141 | |
---|
| 142 | ast::Type const * FindFunctionCore::postvisit( ast::FunctionType const * type ) { |
---|
| 143 | ast::Type const * ret = type; |
---|
| 144 | if ( predicate( type, typeVars ) ) { |
---|
| 145 | functions.push_back( type ); |
---|
| 146 | if ( replaceMode ) { |
---|
| 147 | // replace type parameters in function type with void* |
---|
| 148 | ret = scrubTypeVars( ast::deepCopy( type ), typeVars ); |
---|
| 149 | } // if |
---|
| 150 | } // if |
---|
| 151 | return ret; |
---|
| 152 | } |
---|
| 153 | |
---|
| 154 | void FindFunctionCore::previsit( ast::PointerType const * /*type*/ ) { |
---|
| 155 | GuardScope( typeVars ); |
---|
| 156 | //handleForall( type->forall ); |
---|
| 157 | } |
---|
| 158 | |
---|
| 159 | } // namespace |
---|
| 160 | |
---|
| 161 | void findFunction( const ast::Type * type, |
---|
| 162 | std::vector<ast::ptr<ast::FunctionType>> & functions, |
---|
| 163 | const TypeVarMap & typeVars, FindFunctionPred predicate ) { |
---|
| 164 | ast::Pass<FindFunctionCore> pass( functions, typeVars, predicate, false ); |
---|
| 165 | type->accept( pass ); |
---|
| 166 | //(void)type; |
---|
| 167 | //(void)functions; |
---|
| 168 | //(void)typeVars; |
---|
| 169 | //(void)predicate; |
---|
| 170 | } |
---|
| 171 | |
---|
| 172 | const ast::Type * findAndReplaceFunction( const ast::Type * type, |
---|
| 173 | std::vector<ast::ptr<ast::FunctionType>> & functions, |
---|
| 174 | const TypeVarMap & typeVars, FindFunctionPred predicate ) { |
---|
| 175 | ast::Pass<FindFunctionCore> pass( functions, typeVars, predicate, true ); |
---|
| 176 | return type->accept( pass ); |
---|
| 177 | //(void)functions; |
---|
| 178 | //(void)typeVars; |
---|
| 179 | //(void)predicate; |
---|
| 180 | //return type; |
---|
| 181 | } |
---|
| 182 | |
---|
[51b7345] | 183 | } // namespace GenPoly |
---|
[01aeade] | 184 | |
---|
[51587aa] | 185 | // Local Variables: // |
---|
| 186 | // tab-width: 4 // |
---|
| 187 | // mode: c++ // |
---|
| 188 | // compile-command: "make install" // |
---|
| 189 | // End: // |
---|