Changes in / [1f9a4d0:4432b52]
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/andrew_beach_MMath/Makefile
r1f9a4d0 r4432b52 31 31 ${GLOSSARY} ${BUILD}/${BASE} 32 32 ${LATEX} ${BASE} 33 ${LATEX} ${BASE}34 33 35 34 ${DOC}: ${BUILD}/${DOC} -
doc/theses/andrew_beach_MMath/cfalab.sty
r1f9a4d0 r4432b52 27 27 % Cforall with the forall symbol. 28 28 \newsymbolcmd\CFA{\textsf{C}\raisebox{\depth}{\rotatebox{180}{\textsf{A}}}} 29 % C++ with kerning. (No standard number support.) 30 \newsymbolcmd\CPP{\textrm{C}\kern-.1em\hbox{+\kern-.25em+}} 31 32 % This is executed very early in the \begin{document} code. 33 \AtEndPreamble{ 34 \@ifpackageloaded{hyperref}{ 35 % Convert symbols to pdf compatable forms when required. 36 \pdfstringdefDisableCommands{ 37 \def\CFA{CFA} 38 \def\CPP{C++} 39 } 40 }{} 41 } 29 42 30 43 % The CFA listings language. Based off of ANCI C and including GCC extensions. … … 72 85 \renewcommand\textunderscore{\csuse{cfalab@textunderscore@#1}}} 73 86 74 % This is executed very early in the \begin{document} code.75 \AtEndPreamble{76 \@ifpackageloaded{hyperref}{77 % Convert symbols to pdf compatable forms when required.78 \pdfstringdefDisableCommands{79 \def\CFA{CFA}80 }81 }{}82 }83 84 87 \endinput -
doc/theses/andrew_beach_MMath/thesis.tex
r1f9a4d0 r4432b52 50 50 % MAIN BODY 51 51 %---------------------------------------------------------------------- 52 \input{existing} 53 \input{features} 52 54 \input{unwinding} 55 \input{future} 53 56 54 57 %====================================================================== -
src/ResolvExpr/AlternativeFinder.cc
r1f9a4d0 r4432b52 251 251 SemanticError( expr, "No reasonable alternatives for expression " ); 252 252 } 253 if ( mode. satisfyAssns || mode.prune ) {253 if ( mode.prune ) { 254 254 // trim candidates just to those where the assertions resolve 255 255 // - necessary pre-requisite to pruning -
src/ResolvExpr/CandidateFinder.cpp
r1f9a4d0 r4432b52 1645 1645 /// Prunes a list of candidates down to those that have the minimum conversion cost for a given 1646 1646 /// return type. Skips ambiguous candidates. 1647 CandidateList pruneCandidates( CandidateList & candidates ) { 1648 struct PruneStruct { 1649 CandidateRef candidate; 1650 bool ambiguous; 1651 1652 PruneStruct() = default; 1653 PruneStruct( const CandidateRef & c ) : candidate( c ), ambiguous( false ) {} 1654 }; 1655 1656 // find lowest-cost candidate for each type 1657 std::unordered_map< std::string, PruneStruct > selected; 1658 for ( CandidateRef & candidate : candidates ) { 1659 std::string mangleName; 1647 1648 } // anonymous namespace 1649 1650 bool CandidateFinder::pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors ) { 1651 struct PruneStruct { 1652 CandidateRef candidate; 1653 bool ambiguous; 1654 1655 PruneStruct() = default; 1656 PruneStruct( const CandidateRef & c ) : candidate( c ), ambiguous( false ) {} 1657 }; 1658 1659 // find lowest-cost candidate for each type 1660 std::unordered_map< std::string, PruneStruct > selected; 1661 // attempt to skip satisfyAssertions on more expensive alternatives if better options have been found 1662 std::sort(candidates.begin(), candidates.end(), [](const CandidateRef & x, const CandidateRef & y){return x->cost < y->cost;}); 1663 for ( CandidateRef & candidate : candidates ) { 1664 std::string mangleName; 1665 { 1666 ast::ptr< ast::Type > newType = candidate->expr->result; 1667 assertf(candidate->expr->result, "Result of expression %p for candidate is null", candidate->expr.get()); 1668 candidate->env.apply( newType ); 1669 mangleName = Mangle::mangle( newType ); 1670 } 1671 1672 auto found = selected.find( mangleName ); 1673 if (found != selected.end() && found->second.candidate->cost < candidate->cost) { 1674 PRINT( 1675 std::cerr << "cost " << candidate->cost << " loses to " 1676 << found->second.candidate->cost << std::endl; 1677 ) 1678 continue; 1679 } 1680 1681 // xxx - when do satisfyAssertions produce more than 1 result? 1682 // this should only happen when initial result type contains 1683 // unbound type parameters, then it should never be pruned by 1684 // the previous step, since renameTyVars guarantees the mangled name 1685 // is unique. 1686 CandidateList satisfied; 1687 bool needRecomputeKey = false; 1688 if (candidate->need.empty()) { 1689 satisfied.emplace_back(candidate); 1690 } 1691 else { 1692 satisfyAssertions(candidate, localSyms, satisfied, errors); 1693 needRecomputeKey = true; 1694 } 1695 1696 for (auto & newCand : satisfied) { 1697 // recomputes type key, if satisfyAssertions changed it 1698 if (needRecomputeKey) 1660 1699 { 1661 ast::ptr< ast::Type > newType = candidate->expr->result;1662 assertf( candidate->expr->result, "Result of expression %p for candidate is null", candidate->expr.get());1663 candidate->env.apply( newType );1700 ast::ptr< ast::Type > newType = newCand->expr->result; 1701 assertf(newCand->expr->result, "Result of expression %p for candidate is null", newCand->expr.get()); 1702 newCand->env.apply( newType ); 1664 1703 mangleName = Mangle::mangle( newType ); 1665 1704 } 1666 1667 1705 auto found = selected.find( mangleName ); 1668 1706 if ( found != selected.end() ) { 1669 if ( candidate->cost < found->second.candidate->cost ) {1707 if ( newCand->cost < found->second.candidate->cost ) { 1670 1708 PRINT( 1671 std::cerr << "cost " << candidate->cost << " beats "1709 std::cerr << "cost " << newCand->cost << " beats " 1672 1710 << found->second.candidate->cost << std::endl; 1673 1711 ) 1674 1712 1675 found->second = PruneStruct{ candidate};1676 } else if ( candidate->cost == found->second.candidate->cost ) {1713 found->second = PruneStruct{ newCand }; 1714 } else if ( newCand->cost == found->second.candidate->cost ) { 1677 1715 // if one of the candidates contains a deleted identifier, can pick the other, 1678 1716 // since deleted expressions should not be ambiguous if there is another option 1679 1717 // that is at least as good 1680 if ( findDeletedExpr( candidate->expr ) ) {1718 if ( findDeletedExpr( newCand->expr ) ) { 1681 1719 // do nothing 1682 1720 PRINT( std::cerr << "candidate is deleted" << std::endl; ) 1683 1721 } else if ( findDeletedExpr( found->second.candidate->expr ) ) { 1684 1722 PRINT( std::cerr << "current is deleted" << std::endl; ) 1685 found->second = PruneStruct{ candidate};1723 found->second = PruneStruct{ newCand }; 1686 1724 } else { 1687 1725 PRINT( std::cerr << "marking ambiguous" << std::endl; ) 1688 1726 found->second.ambiguous = true; 1689 1727 } 1690 } else { 1728 } else { 1729 // xxx - can satisfyAssertions increase the cost? 1691 1730 PRINT( 1692 std::cerr << "cost " << candidate->cost << " loses to "1731 std::cerr << "cost " << newCand->cost << " loses to " 1693 1732 << found->second.candidate->cost << std::endl; 1694 ) 1733 ) 1695 1734 } 1696 1735 } else { 1697 selected.emplace_hint( found, mangleName, candidate ); 1698 } 1699 } 1700 1701 // report unambiguous min-cost candidates 1702 CandidateList out; 1703 for ( auto & target : selected ) { 1704 if ( target.second.ambiguous ) continue; 1705 1706 CandidateRef cand = target.second.candidate; 1707 1708 ast::ptr< ast::Type > newResult = cand->expr->result; 1709 cand->env.applyFree( newResult ); 1710 cand->expr = ast::mutate_field( 1711 cand->expr.get(), &ast::Expr::result, move( newResult ) ); 1712 1713 out.emplace_back( cand ); 1714 } 1715 return out; 1736 selected.emplace_hint( found, mangleName, newCand ); 1737 } 1738 } 1716 1739 } 1717 1740 1718 } // anonymous namespace 1741 // report unambiguous min-cost candidates 1742 // CandidateList out; 1743 for ( auto & target : selected ) { 1744 if ( target.second.ambiguous ) continue; 1745 1746 CandidateRef cand = target.second.candidate; 1747 1748 ast::ptr< ast::Type > newResult = cand->expr->result; 1749 cand->env.applyFree( newResult ); 1750 cand->expr = ast::mutate_field( 1751 cand->expr.get(), &ast::Expr::result, move( newResult ) ); 1752 1753 out.emplace_back( cand ); 1754 } 1755 // if everything is lost in satisfyAssertions, report the error 1756 return !selected.empty(); 1757 } 1719 1758 1720 1759 void CandidateFinder::find( const ast::Expr * expr, ResolvMode mode ) { … … 1739 1778 } 1740 1779 1780 /* 1741 1781 if ( mode.satisfyAssns || mode.prune ) { 1742 1782 // trim candidates to just those where the assertions are satisfiable … … 1761 1801 candidates = move( satisfied ); 1762 1802 } 1803 */ 1763 1804 1764 1805 if ( mode.prune ) { … … 1769 1810 ) 1770 1811 1771 CandidateList pruned = pruneCandidates( candidates ); 1812 CandidateList pruned; 1813 std::vector<std::string> errors; 1814 bool found = pruneCandidates( candidates, pruned, errors ); 1772 1815 1773 1816 if ( mode.failFast && pruned.empty() ) { 1774 1817 std::ostringstream stream; 1775 CandidateList winners = findMinCost( candidates ); 1776 stream << "Cannot choose between " << winners.size() << " alternatives for " 1777 "expression\n"; 1778 ast::print( stream, expr ); 1779 stream << " Alternatives are:\n"; 1780 print( stream, winners, 1 ); 1781 SemanticError( expr->location, stream.str() ); 1818 if (found) { 1819 CandidateList winners = findMinCost( candidates ); 1820 stream << "Cannot choose between " << winners.size() << " alternatives for " 1821 "expression\n"; 1822 ast::print( stream, expr ); 1823 stream << " Alternatives are:\n"; 1824 print( stream, winners, 1 ); 1825 SemanticError( expr->location, stream.str() ); 1826 } 1827 else { 1828 stream << "No alternatives with satisfiable assertions for " << expr << "\n"; 1829 for ( const auto& err : errors ) { 1830 stream << err; 1831 } 1832 SemanticError( expr->location, stream.str() ); 1833 } 1782 1834 } 1783 1835 -
src/ResolvExpr/CandidateFinder.hpp
r1f9a4d0 r4432b52 40 40 /// Fill candidates with feasible resolutions for `expr` 41 41 void find( const ast::Expr * expr, ResolvMode mode = {} ); 42 bool pruneCandidates( CandidateList & candidates, CandidateList & out, std::vector<std::string> & errors ); 42 43 43 44 /// Runs new candidate finder on each element in xs, returning the list of finders -
src/ResolvExpr/ResolvMode.h
r1f9a4d0 r4432b52 22 22 const bool prune; ///< Prune alternatives to min-cost per return type? [true] 23 23 const bool failFast; ///< Fail on no resulting alternatives? [true] 24 const bool satisfyAssns; ///< Satisfy assertions? [false]25 24 26 25 private: 27 constexpr ResolvMode(bool a, bool p, bool ff , bool sa)28 : adjust(a), prune(p), failFast(ff) , satisfyAssns(sa){}26 constexpr ResolvMode(bool a, bool p, bool ff) 27 : adjust(a), prune(p), failFast(ff) {} 29 28 30 29 public: 31 30 /// Default settings 32 constexpr ResolvMode() : adjust(false), prune(true), failFast(true) , satisfyAssns(false){}31 constexpr ResolvMode() : adjust(false), prune(true), failFast(true) {} 33 32 34 33 /// With adjust flag set; turns array and function types into equivalent pointers 35 static constexpr ResolvMode withAdjustment() { return { true, true, true , false}; }34 static constexpr ResolvMode withAdjustment() { return { true, true, true }; } 36 35 37 36 /// With adjust flag set but prune unset; pruning ensures there is at least one alternative 38 37 /// per result type 39 static constexpr ResolvMode withoutPrune() { return { true, false, true , false}; }38 static constexpr ResolvMode withoutPrune() { return { true, false, true }; } 40 39 41 40 /// With adjust and prune flags set but failFast unset; failFast ensures there is at least 42 41 /// one resulting alternative 43 static constexpr ResolvMode withoutFailFast() { return { true, true, false , false}; }42 static constexpr ResolvMode withoutFailFast() { return { true, true, false }; } 44 43 45 44 /// The same mode, but with satisfyAssns turned on; for top-level calls 46 ResolvMode atTopLevel() const { return { adjust, prune, failFast, true}; }45 ResolvMode atTopLevel() const { return { adjust, true, failFast }; } 47 46 }; 48 47 } // namespace ResolvExpr -
src/ResolvExpr/SatisfyAssertions.hpp
r1f9a4d0 r4432b52 27 27 namespace ResolvExpr { 28 28 29 /// Recursively satisfies all assertions provided in a candidate; returns true if succeeds 29 /// Recursively satisfies all assertions provided in a candidate 30 /// returns true if it has been run (candidate has any assertions) 30 31 void satisfyAssertions( 31 32 CandidateRef & cand, const ast::SymbolTable & symtab, CandidateList & out,
Note: See TracChangeset
for help on using the changeset viewer.