//===--- CSClosure.cpp - Closures -----------------------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2018 Apple Inc. and the Swift project authors // Licensed under Apache License v2.0 with Runtime Library Exception // // See https://swift.org/LICENSE.txt for license information // See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors // //===----------------------------------------------------------------------===// // // This file implements constraint generation and solution application for // closures. It provides part of the implementation of the ConstraintSystem // class. // //===----------------------------------------------------------------------===// #include "ConstraintSystem.h" using namespace swift; using namespace swift::constraints; namespace { // MARK: Constraint generation /// Statement visitor that generates constraints for a given closure body. class ClosureConstraintGenerator : public StmtVisitor { friend StmtVisitor; ConstraintSystem &cs; ClosureExpr *closure; Type closureResultType; public: /// Whether an error was encountered while generating constraints. bool hadError = false; ClosureConstraintGenerator(ConstraintSystem &cs, ClosureExpr *closure, Type closureResultType) : cs(cs), closure(closure), closureResultType(closureResultType) { } private: void visitDecl(Decl *decl) { // Just ignore #if; the chosen children should appear in the // surrounding context. This isn't good for source tools but it // at least works. if (isa(decl)) return; // Skip #warning/#error; we'll handle them when applying the closure. if (isa(decl)) return; // Ignore variable declarations, because they're always handled within // their enclosing pattern bindings. if (isa(decl)) return; llvm_unreachable("Unimplemented case for closure body"); } void visitBraceStmt(BraceStmt *braceStmt) { for (auto node : braceStmt->getElements()) { if (auto expr = node.dyn_cast()) { auto generatedExpr = cs.generateConstraints( expr, closure, /*isInputExpression=*/false); if (!generatedExpr) { hadError = true; } } else if (auto stmt = node.dyn_cast()) { visit(stmt); } else { visitDecl(node.get()); } } } void visitReturnStmt(ReturnStmt *returnStmt) { auto expr = returnStmt->getResult(); // FIXME: Implies Void return? if (!expr) return; // FIXME: Use SolutionApplicationTarget? expr = cs.generateConstraints(expr, closure, /*isInputExpression=*/false); if (!expr) { hadError = true; return; } // FIXME: Locator should point at the return statement? bool hasReturn = hasExplicitResult(closure); cs.addConstraint( ConstraintKind::Conversion, cs.getType(expr), closureResultType, cs.getConstraintLocator( closure, LocatorPathElt::ClosureBody(hasReturn))); } #define UNSUPPORTED_STMT(STMT) void visit##STMT##Stmt(STMT##Stmt *) { \ llvm_unreachable("Unsupported statement kind " #STMT); \ } UNSUPPORTED_STMT(Yield) UNSUPPORTED_STMT(Defer) UNSUPPORTED_STMT(If) UNSUPPORTED_STMT(Guard) UNSUPPORTED_STMT(While) UNSUPPORTED_STMT(Do) UNSUPPORTED_STMT(DoCatch) UNSUPPORTED_STMT(RepeatWhile) UNSUPPORTED_STMT(ForEach) UNSUPPORTED_STMT(Switch) UNSUPPORTED_STMT(Case) UNSUPPORTED_STMT(Break) UNSUPPORTED_STMT(Continue) UNSUPPORTED_STMT(Fallthrough) UNSUPPORTED_STMT(Fail) UNSUPPORTED_STMT(Throw) UNSUPPORTED_STMT(PoundAssert) #undef UNSUPPORTED_STMT }; } bool ConstraintSystem::generateConstraints( ClosureExpr *closure, Type resultType) { ClosureConstraintGenerator generator(*this, closure, resultType); generator.visit(closure->getBody()); return generator.hadError; } // MARK: Solution application namespace { /// Statement visitor that applies constraints for a given closure body. class ClosureConstraintApplication : public StmtVisitor { friend StmtVisitor; Solution &solution; ClosureExpr *closure; Type resultType; RewriteTargetFn rewriteTarget; bool isSingleExpression; public: /// Whether an error was encountered while generating constraints. bool hadError = false; ClosureConstraintApplication( Solution &solution, ClosureExpr *closure, Type resultType, RewriteTargetFn rewriteTarget) : solution(solution), closure(closure), resultType(resultType), rewriteTarget(rewriteTarget), isSingleExpression(closure->hasSingleExpressionBody()) { } private: /// Rewrite an expression without any particularly special context. Expr *rewriteExpr(Expr *expr) { auto result = rewriteTarget( SolutionApplicationTarget(expr, closure, CTP_Unused, Type(), /*isDiscarded=*/false)); if (result) return result->getAsExpr(); return nullptr; } void visitDecl(Decl *decl) { llvm_unreachable("Declarations not supported"); } ASTNode visitBraceStmt(BraceStmt *braceStmt) { for (auto &node : braceStmt->getElements()) { if (auto expr = node.dyn_cast()) { // Rewrite the expression. if (auto rewrittenExpr = rewriteExpr(expr)) node = expr; else hadError = true; } else if (auto stmt = node.dyn_cast()) { node = visit(stmt); } else { visitDecl(node.get()); } } return braceStmt; } ASTNode visitReturnStmt(ReturnStmt *returnStmt) { auto resultExpr = returnStmt->getResult(); if (!resultExpr) return returnStmt; enum { convertToResult, coerceToVoid, coerceFromNever, } mode; auto resultExprType = solution.simplifyType(solution.getType(resultExpr))->getRValueType(); // A closure with a non-void return expression can coerce to a closure // that returns Void. if (resultType->isVoid() && !resultExprType->isVoid()) { mode = coerceToVoid; // A single-expression closure with a Never expression type // coerces to any other function type. } else if (isSingleExpression && resultExprType->isUninhabited()) { mode = coerceFromNever; // Normal rule is to coerce to the return expression to the closure type. } else { mode = convertToResult; } SolutionApplicationTarget resultTarget( resultExpr, closure, mode == convertToResult ? CTP_ReturnStmt : CTP_Unused, mode == convertToResult ? resultType : Type(), /*isDiscarded=*/false); if (auto newResultTarget = rewriteTarget(resultTarget)) resultExpr = newResultTarget->getAsExpr(); switch (mode) { case convertToResult: // Record the coerced expression. returnStmt->setResult(resultExpr); return returnStmt; case coerceToVoid: { // Evaluate the expression, then produce a return statement that // returns nothing. TypeChecker::checkIgnoredExpr(resultExpr); auto &ctx = solution.getConstraintSystem().getASTContext(); auto newReturnStmt = new (ctx) ReturnStmt( returnStmt->getStartLoc(), nullptr, /*implicit=*/true); ASTNode elements[2] = { resultExpr, newReturnStmt }; return BraceStmt::create(ctx, returnStmt->getStartLoc(), elements, returnStmt->getEndLoc(), /*implicit*/ true); } case coerceFromNever: // Replace the return statement with its expression, so that the // expression is evaluated directly. This only works because coercion // from never is limited to single-expression closures. return resultExpr; } return returnStmt; } #define UNSUPPORTED_STMT(STMT) ASTNode visit##STMT##Stmt(STMT##Stmt *) { \ llvm_unreachable("Unsupported statement kind " #STMT); \ } UNSUPPORTED_STMT(Yield) UNSUPPORTED_STMT(Defer) UNSUPPORTED_STMT(If) UNSUPPORTED_STMT(Guard) UNSUPPORTED_STMT(While) UNSUPPORTED_STMT(Do) UNSUPPORTED_STMT(DoCatch) UNSUPPORTED_STMT(RepeatWhile) UNSUPPORTED_STMT(ForEach) UNSUPPORTED_STMT(Switch) UNSUPPORTED_STMT(Case) UNSUPPORTED_STMT(Break) UNSUPPORTED_STMT(Continue) UNSUPPORTED_STMT(Fallthrough) UNSUPPORTED_STMT(Fail) UNSUPPORTED_STMT(Throw) UNSUPPORTED_STMT(PoundAssert) #undef UNSUPPORTED_STMT }; } SolutionApplicationToFunctionResult ConstraintSystem::applySolution( Solution &solution, AnyFunctionRef fn, DeclContext *¤tDC, RewriteTargetFn rewriteTarget) { auto &cs = solution.getConstraintSystem(); auto closure = dyn_cast_or_null(fn.getAbstractClosureExpr()); FunctionType *closureFnType = nullptr; if (closure) { // Update the closure's type. auto closureType = solution.simplifyType(cs.getType(closure)); cs.setType(closure, closureType); // Coerce the parameter types. closureFnType = closureType->castTo(); auto *params = closure->getParameters(); TypeChecker::coerceParameterListToType(params, closure, closureFnType); // Coerce the result type, if it was written explicitly. if (closure->hasExplicitResultType()) { closure->setExplicitResultType(closureFnType->getResult()); } } // Enter the context of the function before performing any additional // transformations. llvm::SaveAndRestore savedDC(currentDC, fn.getAsDeclContext()); // Apply the function builder transform, if there is one. if (auto transform = solution.getAppliedBuilderTransform(fn)) { // Apply the function builder to the closure. We want to be in the // context of the closure for subsequent transforms. auto newBody = applyFunctionBuilderTransform( solution, *transform, fn.getBody(), fn.getAsDeclContext(), [&](SolutionApplicationTarget target) { auto resultTarget = rewriteTarget(target); if (resultTarget) { if (auto expr = resultTarget->getAsExpr()) solution.setExprTypes(expr); } return resultTarget; }); if (!newBody) return SolutionApplicationToFunctionResult::Failure; fn.setBody(newBody, /*isSingleExpression=*/false); if (closure) { solution.setExprTypes(closure); } return SolutionApplicationToFunctionResult::Success; } assert(closure && "Can only get here with a closure at the moment"); // If this closure is checked as part of the enclosing expression, handle // that now. if (shouldTypeCheckInEnclosingExpression(closure)) { ClosureConstraintApplication application( solution, closure, closureFnType->getResult(), rewriteTarget); application.visit(fn.getBody()); closure->setBodyState(ClosureExpr::BodyState::TypeCheckedAtOnce); return SolutionApplicationToFunctionResult::Success; } // Otherwise, we need to delay type checking of the closure until later. solution.setExprTypes(closure); closure->setBodyState(ClosureExpr::BodyState::ReadyForTypeChecking); return SolutionApplicationToFunctionResult::Delay; }