Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/PolyCost.cc

    r5aa4656 r00ac42e  
    99// Author           : Richard C. Bilson
    1010// Created On       : Sun May 17 09:50:12 2015
    11 // Last Modified By : Andrew Beach
    12 // Last Modified On : Wed Jun 19 10:45:00 2019
    13 // Update Count     : 4
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Sun May 17 09:52:02 2015
     13// Update Count     : 3
    1414//
    1515
    16 #include "AST/SymbolTable.hpp"
    17 #include "AST/Type.hpp"
    18 #include "AST/TypeEnvironment.hpp"
    1916#include "Common/PassVisitor.h"
    2017#include "SymTab/Indexer.h"   // for Indexer
     
    5754        }
    5855
    59 // TODO: When the old PolyCost is torn out get rid of the _new suffix.
    60 struct PolyCost_new {
    61         int result;
    62         const ast::SymbolTable &symtab;
    63         const ast::TypeEnvironment &env_;
    64 
    65         PolyCost_new( const ast::SymbolTable & symtab, const ast::TypeEnvironment & env ) :
    66                 result( 0 ), symtab( symtab ), env_( env ) {}
    67 
    68         void previsit( const ast::TypeInstType * type ) {
    69                 if ( const ast::EqvClass * eqv = env_.lookup( type->name ) ) /* && */ if ( eqv->bound ) {
    70                         if ( const ast::TypeInstType * otherType = eqv->bound.as< ast::TypeInstType >() ) {
    71                                 if ( symtab.lookupType( otherType->name ) ) {
    72                                         // Bound to opaque type.
    73                                         result += 1;
    74                                 }
    75                         } else {
    76                                 // Bound to concrete type.
    77                                 result += 1;
    78                         }
    79                 }
    80         }
    81 };
    82 
    83 int polyCost(
    84         const ast::Type * type, const ast::SymbolTable & symtab, const ast::TypeEnvironment & env
    85 ) {
    86         ast::Pass<PolyCost_new> costing( symtab, env );
    87         type->accept( costing );
    88         return costing.pass.result;
    89 }
    90 
    9156} // namespace ResolvExpr
    9257
Note: See TracChangeset for help on using the changeset viewer.