Changeset dc2e7e0
- Timestamp:
- Apr 22, 2016, 10:33:19 AM (9 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- fbfb38e
- Parents:
- b617e4b
- Location:
- src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:57:46201612 // Last Modified On : Mon Apr 18 13:22:15 2016 13 13 // Update Count : 295 14 14 // … … 784 784 arg++; 785 785 } else { 786 /// xxx - should this be an assertion? 786 787 throw SemanticError( "unbound type variable in application ", appExpr ); 787 788 } // if -
src/ResolvExpr/AlternativeFinder.cc
rb617e4b rdc2e7e0 10 10 // Created On : Sat May 16 23:52:08 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Feb 10 17:00:04201612 // Last Modified On : Wed Apr 20 14:24:03 2016 13 13 // Update Count : 24 14 14 // … … 982 982 } // for 983 983 } 984 985 void AlternativeFinder::visit( ImplicitCopyCtorExpr * impCpCtorExpr ) { 986 alternatives.push_back( Alternative( impCpCtorExpr->clone(), env, Cost::zero ) ); 987 } 984 988 } // namespace ResolvExpr 985 989 -
src/ResolvExpr/AlternativeFinder.h
rb617e4b rdc2e7e0 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // AlternativeFinder.h -- 7 // AlternativeFinder.h -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sat May 16 23:56:12 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Sat May 16 23:58:43 201511 // Last Modified By : Rob Schluntz 12 // Last Modified On : Tue Apr 19 11:44:53 2016 13 13 // Update Count : 2 14 // 14 // 15 15 16 16 #ifndef ALTERNATIVEFINDER_H … … 54 54 virtual void visit( NameExpr *variableExpr ); 55 55 virtual void visit( VariableExpr *variableExpr ); 56 virtual void visit( ConstantExpr *constantExpr ); 56 virtual void visit( ConstantExpr *constantExpr ); 57 57 virtual void visit( SizeofExpr *sizeofExpr ); 58 58 virtual void visit( AlignofExpr *alignofExpr ); … … 65 65 virtual void visit( CommaExpr *commaExpr ); 66 66 virtual void visit( TupleExpr *tupleExpr ); 67 virtual void visit( ImplicitCopyCtorExpr * impCpCtorExpr ); 67 68 public: // xxx - temporary hack - should make Tuples::TupleAssignment a friend 68 69 template< typename InputIterator, typename OutputIterator > -
src/SynTree/Expression.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:33:12201612 // Last Modified On : Mon Apr 18 17:25:06 2016 13 13 // Update Count : 40 14 14 // … … 486 486 os << std::endl << std::string( indent, ' ' ) << "with copyCtors:" << std::endl; 487 487 printAll(copyCtors, os, indent+2); 488 os << std::endl << std::string( indent, ' ' ) << "with return temporaries:" << std::endl; 489 printAll(returnDecls, os, indent+2); 488 490 Expression::print( os, indent ); 489 491 } -
src/SynTree/Mutator.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:32:19201612 // Last Modified On : Mon Apr 18 17:29:55 2016 13 13 // Update Count : 16 14 14 // … … 341 341 mutateAll( impCpCtorExpr->get_copyCtors(), *this ); 342 342 mutateAll( impCpCtorExpr->get_tempDecls(), *this ); 343 mutateAll( impCpCtorExpr->get_returnDecls(), *this ); 343 344 return impCpCtorExpr; 344 345 } -
src/SynTree/Visitor.cc
rb617e4b rdc2e7e0 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Rob Schluntz 12 // Last Modified On : Thu Apr 14 15:31:18201612 // Last Modified On : Mon Apr 18 17:30:10 2016 13 13 // Update Count : 18 14 14 // … … 288 288 acceptAll( impCpCtorExpr->get_copyCtors(), *this ); 289 289 acceptAll( impCpCtorExpr->get_tempDecls(), *this ); 290 acceptAll( impCpCtorExpr->get_returnDecls(), *this ); 290 291 } 291 292
Note: See TracChangeset
for help on using the changeset viewer.