Changeset fd344aa


Ignore:
Timestamp:
Aug 11, 2017, 10:11:27 AM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
9236060
Parents:
83a071f9
Message:

Remove unused cost functions functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/typeops.h

    r83a071f9 rfd344aa  
    6767        Cost castCost( Type *src, Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env );
    6868
    69         template< typename SrcIterator, typename DestIterator >
    70         Cost castCostList( SrcIterator srcBegin, SrcIterator srcEnd, DestIterator destBegin, DestIterator destEnd, const SymTab::Indexer &indexer, const TypeEnvironment &env ) {
    71                 Cost ret;
    72                 if ( destBegin == destEnd ) {
    73                         if ( srcBegin == srcEnd ) {
    74                                 return Cost::zero;
    75                         } else {
    76                                 return Cost( 0, 0, 1 );
    77                         } // if
    78                 } // if
    79                 while ( srcBegin != srcEnd && destBegin != destEnd ) {
    80                         Cost thisCost = castCost( *srcBegin++, *destBegin++, indexer, env );
    81                         if ( thisCost == Cost::infinity ) {
    82                                 return Cost::infinity;
    83                         } // if
    84                         ret += thisCost;
    85                 } // while
    86                 if ( srcBegin == srcEnd && destBegin == destEnd ) {
    87                         return ret;
    88                 } else {
    89                         return Cost::infinity;
    90                 } // if
    91         }
    92 
    9369        // in ConversionCost.cc
    9470        Cost conversionCost( Type *src, Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env );
    95 
    96         template< typename SrcIterator, typename DestIterator >
    97         Cost conversionCostList( SrcIterator srcBegin, SrcIterator srcEnd, DestIterator destBegin, DestIterator destEnd, const SymTab::Indexer &indexer, const TypeEnvironment &env ) {
    98                 Cost ret;
    99                 while ( srcBegin != srcEnd && destBegin != destEnd ) {
    100                         Cost thisCost = conversionCost( *srcBegin++, *destBegin++, indexer, env );
    101                         if ( thisCost == Cost::infinity ) {
    102                                 return Cost::infinity;
    103                         } // if
    104                         ret += thisCost;
    105                 } // while
    106                 if ( srcBegin == srcEnd && destBegin == destEnd ) {
    107                         return ret;
    108                 } else {
    109                         return Cost::infinity;
    110                 } // if
    111         }
    11271
    11372        // in PtrsAssignable.cc
Note: See TracChangeset for help on using the changeset viewer.