Changeset 8e9d567
- Timestamp:
- Aug 19, 2020, 2:09:04 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 03a4c73
- Parents:
- 133a161 (diff), 13d33a75 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
r133a161 r8e9d567 167 167 LinkageSpec::Spec( node->linkage.val ), 168 168 bfwd, 169 type ,169 type->clone(), 170 170 init, 171 171 attr, -
src/AST/Print.cpp
r133a161 r8e9d567 237 237 void postprint( const ast::Expr * node ) { 238 238 print( node->inferred ); 239 240 if ( node->result ) { 241 os << endl << indent << "... with resolved type:" << endl; 242 ++indent; 243 os << indent; 244 node->result->accept( *this ); 245 --indent; 246 } 239 247 240 248 if ( node->env ) { -
src/AST/TypeSubstitution.hpp
r133a161 r8e9d567 195 195 assert( input ); 196 196 Pass<Substituter> sub( *this, true ); 197 input = strict_dynamic_cast< const SynTreeClass * >( input->accept( sub ) );197 input = strict_dynamic_cast< const SynTreeClass * >( deepCopy(input)->accept( sub ) ); 198 198 return { input, sub.core.subCount }; 199 199 } -
src/ResolvExpr/CandidateFinder.cpp
r133a161 r8e9d567 1473 1473 // unification run for side-effects 1474 1474 unify( toType, cand->expr->result, env, need, have, open, symtab ); 1475 Cost thisCost = c astCost( cand->expr->result, toType, cand->expr->get_lvalue(),1475 Cost thisCost = computeConversionCost( cand->expr->result, toType, cand->expr->get_lvalue(), 1476 1476 symtab, env ); 1477 1477 … … 1483 1483 initExpr->location, restructureCast( cand->expr, toType ), 1484 1484 initAlt.designation }, 1485 copy( cand->env), move( open ), move( need ), cand->cost, thisCost );1485 move(env), move( open ), move( need ), cand->cost, thisCost ); 1486 1486 inferParameters( newCand, matches ); 1487 1487 } -
src/ResolvExpr/Unify.cc
r133a161 r8e9d567 791 791 for ( const ast::DeclWithType * d : src ) { 792 792 ast::Pass<TtypeExpander_new> expander{ env }; 793 d = d->accept( expander ); 794 auto types = flatten( d->get_type() ); 793 // TtypeExpander pass is impure (may mutate nodes in place) 794 // need to make nodes shared to prevent accidental mutation 795 ast::ptr<ast::DeclWithType> dc = d; 796 dc = dc->accept( expander ); 797 auto types = flatten( dc->get_type() ); 795 798 for ( ast::ptr< ast::Type > & t : types ) { 796 799 // outermost const, volatile, _Atomic qualifiers in parameters should not play … … 801 804 // requirements than a non-mutex function 802 805 remove_qualifiers( t, ast::CV::Const | ast::CV::Volatile | ast::CV::Atomic ); 803 dst.emplace_back( new ast::ObjectDecl{ d ->location, "", t } );806 dst.emplace_back( new ast::ObjectDecl{ dc->location, "", t } ); 804 807 } 805 808 } … … 1110 1113 1111 1114 ast::Pass<TtypeExpander_new> expander{ tenv }; 1112 const ast::Type * flat = tuple->accept( expander ); 1113 const ast::Type * flat2 = tuple2->accept( expander ); 1115 1116 ast::ptr<ast::TupleType> tuplec = tuple; 1117 ast::ptr<ast::TupleType> tuple2c = tuple2; 1118 const ast::Type * flat = tuplec->accept( expander ); 1119 const ast::Type * flat2 = tuple2c->accept( expander ); 1114 1120 1115 1121 auto types = flatten( flat ); -
src/SynTree/Expression.cc
r133a161 r8e9d567 69 69 void Expression::print( std::ostream & os, Indenter indent ) const { 70 70 printInferParams( inferParams, os, indent+1, 0 ); 71 72 if ( result ) { 73 os << std::endl << indent << "with resolved type:" << std::endl; 74 os << (indent+1); 75 result->print( os, indent+1 ); 76 } 71 77 72 78 if ( env ) { -
src/Tuples/Explode.cc
r133a161 r8e9d567 161 161 castAdded = false; 162 162 const ast::Type * newType = getReferenceBase( newNode->result ); 163 return new ast::CastExpr{ newNode->location, n ode, newType };163 return new ast::CastExpr{ newNode->location, newNode, newType }; 164 164 } 165 165 return newNode;
Note: See TracChangeset
for help on using the changeset viewer.