[a32b204] | 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 | // |
---|
[dc2e7e0] | 7 | // AlternativeFinder.h -- |
---|
[a32b204] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Sat May 16 23:56:12 2015 |
---|
[a5f0529] | 11 | // Last Modified By : Andrew Beach |
---|
| 12 | // Last Modified On : Wed Jul 26 11:24:00 2017 |
---|
| 13 | // Update Count : 4 |
---|
[dc2e7e0] | 14 | // |
---|
[a32b204] | 15 | |
---|
[6b0b624] | 16 | #pragma once |
---|
[51b7345] | 17 | |
---|
[ea6332d] | 18 | #include <algorithm> // for copy |
---|
| 19 | #include <list> // for list |
---|
| 20 | #include <string> // for string |
---|
[51b7345] | 21 | |
---|
[ea6332d] | 22 | #include "Alternative.h" // for AltList, Alternative |
---|
| 23 | #include "ResolvExpr/Cost.h" // for Cost, Cost::infinity |
---|
| 24 | #include "ResolvExpr/TypeEnvironment.h" // for AssertionSet, OpenVarSet |
---|
| 25 | #include "SynTree/Visitor.h" // for Visitor |
---|
| 26 | #include "SynTree/SynTree.h" // for Visitor Nodes |
---|
| 27 | |
---|
| 28 | namespace SymTab { |
---|
| 29 | class Indexer; |
---|
| 30 | } // namespace SymTab |
---|
[51b7345] | 31 | |
---|
| 32 | namespace ResolvExpr { |
---|
[a32b204] | 33 | class AlternativeFinder : public Visitor { |
---|
| 34 | public: |
---|
| 35 | AlternativeFinder( const SymTab::Indexer &indexer, const TypeEnvironment &env ); |
---|
[b6fe7e6] | 36 | void find( Expression *expr, bool adjust = false, bool prune = true ); |
---|
[0f19d763] | 37 | /// Calls find with the adjust flag set; adjustment turns array and function types into equivalent pointer types |
---|
[b6fe7e6] | 38 | void findWithAdjustment( Expression *expr, bool prune = true ); |
---|
[a32b204] | 39 | AltList &get_alternatives() { return alternatives; } |
---|
| 40 | |
---|
| 41 | // make this look like an STL container so that we can apply generic algorithms |
---|
| 42 | typedef Alternative value_type; |
---|
| 43 | typedef AltList::iterator iterator; |
---|
| 44 | typedef AltList::const_iterator const_iterator; |
---|
| 45 | AltList::iterator begin() { return alternatives.begin(); } |
---|
| 46 | AltList::iterator end() { return alternatives.end(); } |
---|
| 47 | AltList::const_iterator begin() const { return alternatives.begin(); } |
---|
| 48 | AltList::const_iterator end() const { return alternatives.end(); } |
---|
[51b7345] | 49 | |
---|
[a32b204] | 50 | const SymTab::Indexer &get_indexer() const { return indexer; } |
---|
| 51 | const TypeEnvironment &get_environ() const { return env; } |
---|
| 52 | private: |
---|
| 53 | virtual void visit( ApplicationExpr *applicationExpr ); |
---|
| 54 | virtual void visit( UntypedExpr *untypedExpr ); |
---|
| 55 | virtual void visit( AddressExpr *addressExpr ); |
---|
| 56 | virtual void visit( CastExpr *castExpr ); |
---|
[a5f0529] | 57 | virtual void visit( VirtualCastExpr *castExpr ); |
---|
[a32b204] | 58 | virtual void visit( UntypedMemberExpr *memberExpr ); |
---|
| 59 | virtual void visit( MemberExpr *memberExpr ); |
---|
| 60 | virtual void visit( NameExpr *variableExpr ); |
---|
| 61 | virtual void visit( VariableExpr *variableExpr ); |
---|
[dc2e7e0] | 62 | virtual void visit( ConstantExpr *constantExpr ); |
---|
[a32b204] | 63 | virtual void visit( SizeofExpr *sizeofExpr ); |
---|
[25a054f] | 64 | virtual void visit( AlignofExpr *alignofExpr ); |
---|
[2a4b088] | 65 | virtual void visit( UntypedOffsetofExpr *offsetofExpr ); |
---|
[25a054f] | 66 | virtual void visit( OffsetofExpr *offsetofExpr ); |
---|
[afc1045] | 67 | virtual void visit( OffsetPackExpr *offsetPackExpr ); |
---|
[a32b204] | 68 | virtual void visit( AttrExpr *attrExpr ); |
---|
| 69 | virtual void visit( LogicalExpr *logicalExpr ); |
---|
| 70 | virtual void visit( ConditionalExpr *conditionalExpr ); |
---|
| 71 | virtual void visit( CommaExpr *commaExpr ); |
---|
[dc2e7e0] | 72 | virtual void visit( ImplicitCopyCtorExpr * impCpCtorExpr ); |
---|
[b6fe7e6] | 73 | virtual void visit( ConstructorExpr * ctorExpr ); |
---|
[8a5cad8] | 74 | virtual void visit( RangeExpr * rangeExpr ); |
---|
[907eccb] | 75 | virtual void visit( UntypedTupleExpr *tupleExpr ); |
---|
| 76 | virtual void visit( TupleExpr *tupleExpr ); |
---|
[8f7cea1] | 77 | virtual void visit( TupleIndexExpr *tupleExpr ); |
---|
[aa8f9df] | 78 | virtual void visit( TupleAssignExpr *tupleExpr ); |
---|
[bf32bb8] | 79 | virtual void visit( UniqueExpr *unqExpr ); |
---|
[722617d] | 80 | virtual void visit( StmtExpr *stmtExpr ); |
---|
[e4d829b] | 81 | virtual void visit( UntypedInitExpr *initExpr ); |
---|
[5af62f1] | 82 | /// Runs a new alternative finder on each element in [begin, end) |
---|
| 83 | /// and writes each alternative finder to out. |
---|
[a32b204] | 84 | template< typename InputIterator, typename OutputIterator > |
---|
| 85 | void findSubExprs( InputIterator begin, InputIterator end, OutputIterator out ); |
---|
[51b7345] | 86 | |
---|
[4b0f997] | 87 | /// Adds alternatives for anonymous members |
---|
| 88 | void addAnonConversions( const Alternative & alt ); |
---|
[2a4b088] | 89 | /// Adds alternatives for member expressions, given the aggregate, conversion cost for that aggregate, and name of the member |
---|
[add7117] | 90 | template< typename StructOrUnionType > void addAggMembers( StructOrUnionType *aggInst, Expression *expr, const Cost &newCost, const TypeEnvironment & env, Expression * member ); |
---|
[848ce71] | 91 | /// Adds alternatives for member expressions where the left side has tuple type |
---|
| 92 | void addTupleMembers( TupleType * tupleType, Expression *expr, const Cost &newCost, const TypeEnvironment & env, Expression * member ); |
---|
[2a4b088] | 93 | /// Adds alternatives for offsetof expressions, given the base type and name of the member |
---|
| 94 | template< typename StructOrUnionType > void addOffsetof( StructOrUnionType *aggInst, const std::string &name ); |
---|
[aefcc3b] | 95 | bool instantiateFunction( std::list< DeclarationWithType* >& formals, const AltList &actuals, bool isVarArgs, OpenVarSet& openVars, TypeEnvironment &resultEnv, AssertionSet &resultNeed, AssertionSet &resultHave, AltList & out ); |
---|
[a32b204] | 96 | template< typename OutputIterator > |
---|
[aefcc3b] | 97 | void makeFunctionAlternatives( const Alternative &func, FunctionType *funcType, const AltList &actualAlt, OutputIterator out ); |
---|
[a32b204] | 98 | template< typename OutputIterator > |
---|
| 99 | void inferParameters( const AssertionSet &need, AssertionSet &have, const Alternative &newAlt, OpenVarSet &openVars, OutputIterator out ); |
---|
| 100 | void resolveAttr( DeclarationWithType *funcDecl, FunctionType *function, Type *argType, const TypeEnvironment &env ); |
---|
[51b7345] | 101 | |
---|
[a32b204] | 102 | const SymTab::Indexer &indexer; |
---|
| 103 | AltList alternatives; |
---|
| 104 | const TypeEnvironment &env; |
---|
[7933351] | 105 | Type * targetType = nullptr; |
---|
[a32b204] | 106 | }; // AlternativeFinder |
---|
| 107 | |
---|
| 108 | Expression *resolveInVoidContext( Expression *expr, const SymTab::Indexer &indexer, TypeEnvironment &env ); |
---|
[5af62f1] | 109 | |
---|
| 110 | template< typename InputIterator, typename OutputIterator > |
---|
| 111 | void findMinCost( InputIterator begin, InputIterator end, OutputIterator out ) { |
---|
| 112 | AltList alternatives; |
---|
| 113 | |
---|
| 114 | // select the alternatives that have the minimum parameter cost |
---|
| 115 | Cost minCost = Cost::infinity; |
---|
| 116 | for ( InputIterator i = begin; i != end; ++i ) { |
---|
| 117 | if ( i->cost < minCost ) { |
---|
| 118 | minCost = i->cost; |
---|
| 119 | i->cost = i->cvtCost; |
---|
| 120 | alternatives.clear(); |
---|
| 121 | alternatives.push_back( *i ); |
---|
| 122 | } else if ( i->cost == minCost ) { |
---|
| 123 | i->cost = i->cvtCost; |
---|
| 124 | alternatives.push_back( *i ); |
---|
| 125 | } |
---|
| 126 | } |
---|
| 127 | std::copy( alternatives.begin(), alternatives.end(), out ); |
---|
| 128 | } |
---|
[908cc83] | 129 | |
---|
| 130 | Cost sumCost( const AltList &in ); |
---|
[ac9ca96] | 131 | |
---|
| 132 | template< typename InputIterator > |
---|
| 133 | void simpleCombineEnvironments( InputIterator begin, InputIterator end, TypeEnvironment &result ) { |
---|
| 134 | while ( begin != end ) { |
---|
| 135 | result.simpleCombine( (*begin++).env ); |
---|
| 136 | } |
---|
| 137 | } |
---|
[51b7345] | 138 | } // namespace ResolvExpr |
---|
| 139 | |
---|
[a32b204] | 140 | // Local Variables: // |
---|
| 141 | // tab-width: 4 // |
---|
| 142 | // mode: c++ // |
---|
| 143 | // compile-command: "make install" // |
---|
| 144 | // End: // |
---|