blob: 1d5454ca778bcd7ded62805cfa1371bf33db8b7f [file] [log] [blame]
Richard Smithcfd53b42015-10-22 06:13:50 +00001//===--- SemaCoroutines.cpp - Semantic Analysis for Coroutines ------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for C++ Coroutines.
11//
Brian Gesiakc1b173a2018-06-23 18:01:02 +000012// This file contains references to sections of the Coroutines TS, which
13// can be found at http://wg21.link/coroutines.
14//
Richard Smithcfd53b42015-10-22 06:13:50 +000015//===----------------------------------------------------------------------===//
16
Eric Fiselierbee782b2017-04-03 19:21:00 +000017#include "CoroutineStmtBuilder.h"
Brian Gesiak98606222018-02-15 20:37:22 +000018#include "clang/AST/ASTLambda.h"
Richard Smith9f690bd2015-10-27 06:02:45 +000019#include "clang/AST/Decl.h"
20#include "clang/AST/ExprCXX.h"
21#include "clang/AST/StmtCXX.h"
22#include "clang/Lex/Preprocessor.h"
Richard Smith2af65c42015-11-24 02:34:39 +000023#include "clang/Sema/Initialization.h"
Richard Smith9f690bd2015-10-27 06:02:45 +000024#include "clang/Sema/Overload.h"
Reid Kleckner04f9bca2018-03-07 22:48:35 +000025#include "clang/Sema/ScopeInfo.h"
Eric Fiselierbee782b2017-04-03 19:21:00 +000026#include "clang/Sema/SemaInternal.h"
27
Richard Smithcfd53b42015-10-22 06:13:50 +000028using namespace clang;
29using namespace sema;
30
Eric Fiselierfc50f622017-05-25 14:59:39 +000031static LookupResult lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD,
32 SourceLocation Loc, bool &Res) {
Eric Fiselier20f25cb2017-03-06 23:38:15 +000033 DeclarationName DN = S.PP.getIdentifierInfo(Name);
34 LookupResult LR(S, DN, Loc, Sema::LookupMemberName);
35 // Suppress diagnostics when a private member is selected. The same warnings
36 // will be produced again when building the call.
37 LR.suppressDiagnostics();
Eric Fiselierfc50f622017-05-25 14:59:39 +000038 Res = S.LookupQualifiedName(LR, RD);
39 return LR;
40}
41
42static bool lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD,
43 SourceLocation Loc) {
44 bool Res;
45 lookupMember(S, Name, RD, Loc, Res);
46 return Res;
Eric Fiselier20f25cb2017-03-06 23:38:15 +000047}
48
Richard Smith9f690bd2015-10-27 06:02:45 +000049/// Look up the std::coroutine_traits<...>::promise_type for the given
50/// function type.
Eric Fiselier166c6e62017-07-10 01:27:22 +000051static QualType lookupPromiseType(Sema &S, const FunctionDecl *FD,
52 SourceLocation KwLoc) {
53 const FunctionProtoType *FnType = FD->getType()->castAs<FunctionProtoType>();
54 const SourceLocation FuncLoc = FD->getLocation();
Richard Smith9f690bd2015-10-27 06:02:45 +000055 // FIXME: Cache std::coroutine_traits once we've found it.
Gor Nishanov3e048bb2016-10-04 00:31:16 +000056 NamespaceDecl *StdExp = S.lookupStdExperimentalNamespace();
57 if (!StdExp) {
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +000058 S.Diag(KwLoc, diag::err_implied_coroutine_type_not_found)
59 << "std::experimental::coroutine_traits";
Richard Smith9f690bd2015-10-27 06:02:45 +000060 return QualType();
61 }
62
Brian Gesiak3e65d9a2018-07-14 18:21:44 +000063 ClassTemplateDecl *CoroTraits = S.lookupCoroutineTraits(KwLoc, FuncLoc);
Richard Smith9f690bd2015-10-27 06:02:45 +000064 if (!CoroTraits) {
Richard Smith9f690bd2015-10-27 06:02:45 +000065 return QualType();
66 }
67
Eric Fiselier166c6e62017-07-10 01:27:22 +000068 // Form template argument list for coroutine_traits<R, P1, P2, ...> according
69 // to [dcl.fct.def.coroutine]3
Eric Fiselier89bf0e72017-03-06 22:52:28 +000070 TemplateArgumentListInfo Args(KwLoc, KwLoc);
Eric Fiselier166c6e62017-07-10 01:27:22 +000071 auto AddArg = [&](QualType T) {
Richard Smith9f690bd2015-10-27 06:02:45 +000072 Args.addArgument(TemplateArgumentLoc(
Eric Fiselier89bf0e72017-03-06 22:52:28 +000073 TemplateArgument(T), S.Context.getTrivialTypeSourceInfo(T, KwLoc)));
Eric Fiselier166c6e62017-07-10 01:27:22 +000074 };
75 AddArg(FnType->getReturnType());
76 // If the function is a non-static member function, add the type
77 // of the implicit object parameter before the formal parameters.
78 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
79 if (MD->isInstance()) {
80 // [over.match.funcs]4
81 // For non-static member functions, the type of the implicit object
82 // parameter is
Eric Fiselierbf166ce2017-07-10 02:52:34 +000083 // -- "lvalue reference to cv X" for functions declared without a
84 // ref-qualifier or with the & ref-qualifier
85 // -- "rvalue reference to cv X" for functions declared with the &&
86 // ref-qualifier
Eric Fiselier166c6e62017-07-10 01:27:22 +000087 QualType T =
88 MD->getThisType(S.Context)->getAs<PointerType>()->getPointeeType();
89 T = FnType->getRefQualifier() == RQ_RValue
90 ? S.Context.getRValueReferenceType(T)
91 : S.Context.getLValueReferenceType(T, /*SpelledAsLValue*/ true);
92 AddArg(T);
93 }
94 }
95 for (QualType T : FnType->getParamTypes())
96 AddArg(T);
Richard Smith9f690bd2015-10-27 06:02:45 +000097
98 // Build the template-id.
99 QualType CoroTrait =
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000100 S.CheckTemplateIdType(TemplateName(CoroTraits), KwLoc, Args);
Richard Smith9f690bd2015-10-27 06:02:45 +0000101 if (CoroTrait.isNull())
102 return QualType();
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000103 if (S.RequireCompleteType(KwLoc, CoroTrait,
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000104 diag::err_coroutine_type_missing_specialization))
Richard Smith9f690bd2015-10-27 06:02:45 +0000105 return QualType();
106
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000107 auto *RD = CoroTrait->getAsCXXRecordDecl();
Richard Smith9f690bd2015-10-27 06:02:45 +0000108 assert(RD && "specialization of class template is not a class?");
109
110 // Look up the ::promise_type member.
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000111 LookupResult R(S, &S.PP.getIdentifierTable().get("promise_type"), KwLoc,
Richard Smith9f690bd2015-10-27 06:02:45 +0000112 Sema::LookupOrdinaryName);
113 S.LookupQualifiedName(R, RD);
114 auto *Promise = R.getAsSingle<TypeDecl>();
115 if (!Promise) {
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000116 S.Diag(FuncLoc,
117 diag::err_implied_std_coroutine_traits_promise_type_not_found)
Gor Nishanov8df64e92016-10-27 16:28:31 +0000118 << RD;
Richard Smith9f690bd2015-10-27 06:02:45 +0000119 return QualType();
120 }
Richard Smith9f690bd2015-10-27 06:02:45 +0000121 // The promise type is required to be a class type.
122 QualType PromiseType = S.Context.getTypeDeclType(Promise);
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000123
124 auto buildElaboratedType = [&]() {
Gor Nishanov3e048bb2016-10-04 00:31:16 +0000125 auto *NNS = NestedNameSpecifier::Create(S.Context, nullptr, StdExp);
Richard Smith9b2f53e2015-11-19 02:36:35 +0000126 NNS = NestedNameSpecifier::Create(S.Context, NNS, false,
127 CoroTrait.getTypePtr());
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000128 return S.Context.getElaboratedType(ETK_None, NNS, PromiseType);
129 };
Richard Smith9b2f53e2015-11-19 02:36:35 +0000130
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000131 if (!PromiseType->getAsCXXRecordDecl()) {
132 S.Diag(FuncLoc,
133 diag::err_implied_std_coroutine_traits_promise_type_not_class)
134 << buildElaboratedType();
Richard Smith9f690bd2015-10-27 06:02:45 +0000135 return QualType();
136 }
Eric Fiselier89bf0e72017-03-06 22:52:28 +0000137 if (S.RequireCompleteType(FuncLoc, buildElaboratedType(),
138 diag::err_coroutine_promise_type_incomplete))
139 return QualType();
Richard Smith9f690bd2015-10-27 06:02:45 +0000140
141 return PromiseType;
142}
143
Gor Nishanov29ff6382017-05-24 14:34:19 +0000144/// Look up the std::experimental::coroutine_handle<PromiseType>.
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000145static QualType lookupCoroutineHandleType(Sema &S, QualType PromiseType,
146 SourceLocation Loc) {
147 if (PromiseType.isNull())
148 return QualType();
149
150 NamespaceDecl *StdExp = S.lookupStdExperimentalNamespace();
151 assert(StdExp && "Should already be diagnosed");
152
153 LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"),
154 Loc, Sema::LookupOrdinaryName);
155 if (!S.LookupQualifiedName(Result, StdExp)) {
156 S.Diag(Loc, diag::err_implied_coroutine_type_not_found)
157 << "std::experimental::coroutine_handle";
158 return QualType();
159 }
160
161 ClassTemplateDecl *CoroHandle = Result.getAsSingle<ClassTemplateDecl>();
162 if (!CoroHandle) {
163 Result.suppressDiagnostics();
164 // We found something weird. Complain about the first thing we found.
165 NamedDecl *Found = *Result.begin();
166 S.Diag(Found->getLocation(), diag::err_malformed_std_coroutine_handle);
167 return QualType();
168 }
169
170 // Form template argument list for coroutine_handle<Promise>.
171 TemplateArgumentListInfo Args(Loc, Loc);
172 Args.addArgument(TemplateArgumentLoc(
173 TemplateArgument(PromiseType),
174 S.Context.getTrivialTypeSourceInfo(PromiseType, Loc)));
175
176 // Build the template-id.
177 QualType CoroHandleType =
178 S.CheckTemplateIdType(TemplateName(CoroHandle), Loc, Args);
179 if (CoroHandleType.isNull())
180 return QualType();
181 if (S.RequireCompleteType(Loc, CoroHandleType,
182 diag::err_coroutine_type_missing_specialization))
183 return QualType();
184
185 return CoroHandleType;
186}
187
Eric Fiselierc8efda72016-10-27 18:43:28 +0000188static bool isValidCoroutineContext(Sema &S, SourceLocation Loc,
189 StringRef Keyword) {
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000190 // 'co_await' and 'co_yield' are not permitted in unevaluated operands,
191 // such as subexpressions of \c sizeof.
192 //
193 // [expr.await]p2, emphasis added: "An await-expression shall appear only in
194 // a *potentially evaluated* expression within the compound-statement of a
195 // function-body outside of a handler [...] A context within a function where
196 // an await-expression can appear is called a suspension context of the
197 // function." And per [expr.yield]p1: "A yield-expression shall appear only
198 // within a suspension context of a function."
Richard Smith744b2242015-11-20 02:54:01 +0000199 if (S.isUnevaluatedContext()) {
200 S.Diag(Loc, diag::err_coroutine_unevaluated_context) << Keyword;
Eric Fiselierc8efda72016-10-27 18:43:28 +0000201 return false;
Richard Smith744b2242015-11-20 02:54:01 +0000202 }
Richard Smithcfd53b42015-10-22 06:13:50 +0000203
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000204 // Per [expr.await]p2, any other usage must be within a function.
205 // FIXME: This also covers [expr.await]p2: "An await-expression shall not
206 // appear in a default argument." But the diagnostic QoI here could be
207 // improved to inform the user that default arguments specifically are not
208 // allowed.
Richard Smithcfd53b42015-10-22 06:13:50 +0000209 auto *FD = dyn_cast<FunctionDecl>(S.CurContext);
210 if (!FD) {
211 S.Diag(Loc, isa<ObjCMethodDecl>(S.CurContext)
212 ? diag::err_coroutine_objc_method
213 : diag::err_coroutine_outside_function) << Keyword;
Eric Fiselierc8efda72016-10-27 18:43:28 +0000214 return false;
Richard Smithcfd53b42015-10-22 06:13:50 +0000215 }
216
Eric Fiselierc8efda72016-10-27 18:43:28 +0000217 // An enumeration for mapping the diagnostic type to the correct diagnostic
218 // selection index.
219 enum InvalidFuncDiag {
220 DiagCtor = 0,
221 DiagDtor,
222 DiagCopyAssign,
223 DiagMoveAssign,
224 DiagMain,
225 DiagConstexpr,
226 DiagAutoRet,
227 DiagVarargs,
228 };
229 bool Diagnosed = false;
230 auto DiagInvalid = [&](InvalidFuncDiag ID) {
231 S.Diag(Loc, diag::err_coroutine_invalid_func_context) << ID << Keyword;
232 Diagnosed = true;
233 return false;
234 };
235
236 // Diagnose when a constructor, destructor, copy/move assignment operator,
237 // or the function 'main' are declared as a coroutine.
238 auto *MD = dyn_cast<CXXMethodDecl>(FD);
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000239 // [class.ctor]p6: "A constructor shall not be a coroutine."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000240 if (MD && isa<CXXConstructorDecl>(MD))
241 return DiagInvalid(DiagCtor);
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000242 // [class.dtor]p17: "A destructor shall not be a coroutine."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000243 else if (MD && isa<CXXDestructorDecl>(MD))
244 return DiagInvalid(DiagDtor);
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000245 // N4499 [special]p6: "A special member function shall not be a coroutine."
246 // Per C++ [special]p1, special member functions are the "default constructor,
247 // copy constructor and copy assignment operator, move constructor and move
248 // assignment operator, and destructor."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000249 else if (MD && MD->isCopyAssignmentOperator())
250 return DiagInvalid(DiagCopyAssign);
251 else if (MD && MD->isMoveAssignmentOperator())
252 return DiagInvalid(DiagMoveAssign);
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000253 // [basic.start.main]p3: "The function main shall not be a coroutine."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000254 else if (FD->isMain())
255 return DiagInvalid(DiagMain);
256
257 // Emit a diagnostics for each of the following conditions which is not met.
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000258 // [expr.const]p2: "An expression e is a core constant expression unless the
259 // evaluation of e [...] would evaluate one of the following expressions:
260 // [...] an await-expression [...] a yield-expression."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000261 if (FD->isConstexpr())
262 DiagInvalid(DiagConstexpr);
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000263 // [dcl.spec.auto]p15: "A function declared with a return type that uses a
264 // placeholder type shall not be a coroutine."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000265 if (FD->getReturnType()->isUndeducedType())
266 DiagInvalid(DiagAutoRet);
Brian Gesiakc1b173a2018-06-23 18:01:02 +0000267 // [dcl.fct.def.coroutine]p1: "The parameter-declaration-clause of the
268 // coroutine shall not terminate with an ellipsis that is not part of a
269 // parameter-declaration."
Eric Fiselierc8efda72016-10-27 18:43:28 +0000270 if (FD->isVariadic())
271 DiagInvalid(DiagVarargs);
272
273 return !Diagnosed;
274}
275
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000276static ExprResult buildOperatorCoawaitLookupExpr(Sema &SemaRef, Scope *S,
277 SourceLocation Loc) {
278 DeclarationName OpName =
279 SemaRef.Context.DeclarationNames.getCXXOperatorName(OO_Coawait);
280 LookupResult Operators(SemaRef, OpName, SourceLocation(),
281 Sema::LookupOperatorName);
282 SemaRef.LookupName(Operators, S);
Eric Fiselierc8efda72016-10-27 18:43:28 +0000283
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000284 assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous");
285 const auto &Functions = Operators.asUnresolvedSet();
286 bool IsOverloaded =
287 Functions.size() > 1 ||
288 (Functions.size() == 1 && isa<FunctionTemplateDecl>(*Functions.begin()));
289 Expr *CoawaitOp = UnresolvedLookupExpr::Create(
290 SemaRef.Context, /*NamingClass*/ nullptr, NestedNameSpecifierLoc(),
291 DeclarationNameInfo(OpName, Loc), /*RequiresADL*/ true, IsOverloaded,
292 Functions.begin(), Functions.end());
293 assert(CoawaitOp);
294 return CoawaitOp;
295}
Eric Fiselierc8efda72016-10-27 18:43:28 +0000296
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000297/// Build a call to 'operator co_await' if there is a suitable operator for
298/// the given expression.
299static ExprResult buildOperatorCoawaitCall(Sema &SemaRef, SourceLocation Loc,
300 Expr *E,
301 UnresolvedLookupExpr *Lookup) {
302 UnresolvedSet<16> Functions;
303 Functions.append(Lookup->decls_begin(), Lookup->decls_end());
304 return SemaRef.CreateOverloadedUnaryOp(Loc, UO_Coawait, Functions, E);
305}
Eric Fiselierc8efda72016-10-27 18:43:28 +0000306
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000307static ExprResult buildOperatorCoawaitCall(Sema &SemaRef, Scope *S,
308 SourceLocation Loc, Expr *E) {
309 ExprResult R = buildOperatorCoawaitLookupExpr(SemaRef, S, Loc);
310 if (R.isInvalid())
311 return ExprError();
312 return buildOperatorCoawaitCall(SemaRef, Loc, E,
313 cast<UnresolvedLookupExpr>(R.get()));
Richard Smithcfd53b42015-10-22 06:13:50 +0000314}
315
Gor Nishanov8df64e92016-10-27 16:28:31 +0000316static Expr *buildBuiltinCall(Sema &S, SourceLocation Loc, Builtin::ID Id,
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000317 MultiExprArg CallArgs) {
Gor Nishanov8df64e92016-10-27 16:28:31 +0000318 StringRef Name = S.Context.BuiltinInfo.getName(Id);
319 LookupResult R(S, &S.Context.Idents.get(Name), Loc, Sema::LookupOrdinaryName);
320 S.LookupName(R, S.TUScope, /*AllowBuiltinCreation=*/true);
321
322 auto *BuiltInDecl = R.getAsSingle<FunctionDecl>();
323 assert(BuiltInDecl && "failed to find builtin declaration");
324
325 ExprResult DeclRef =
326 S.BuildDeclRefExpr(BuiltInDecl, BuiltInDecl->getType(), VK_LValue, Loc);
327 assert(DeclRef.isUsable() && "Builtin reference cannot fail");
328
329 ExprResult Call =
330 S.ActOnCallExpr(/*Scope=*/nullptr, DeclRef.get(), Loc, CallArgs, Loc);
331
332 assert(!Call.isInvalid() && "Call to builtin cannot fail!");
333 return Call.get();
334}
335
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000336static ExprResult buildCoroutineHandle(Sema &S, QualType PromiseType,
337 SourceLocation Loc) {
338 QualType CoroHandleType = lookupCoroutineHandleType(S, PromiseType, Loc);
339 if (CoroHandleType.isNull())
340 return ExprError();
341
342 DeclContext *LookupCtx = S.computeDeclContext(CoroHandleType);
343 LookupResult Found(S, &S.PP.getIdentifierTable().get("from_address"), Loc,
344 Sema::LookupOrdinaryName);
345 if (!S.LookupQualifiedName(Found, LookupCtx)) {
346 S.Diag(Loc, diag::err_coroutine_handle_missing_member)
347 << "from_address";
348 return ExprError();
349 }
350
351 Expr *FramePtr =
352 buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_frame, {});
353
354 CXXScopeSpec SS;
355 ExprResult FromAddr =
356 S.BuildDeclarationNameExpr(SS, Found, /*NeedsADL=*/false);
357 if (FromAddr.isInvalid())
358 return ExprError();
359
360 return S.ActOnCallExpr(nullptr, FromAddr.get(), Loc, FramePtr, Loc);
361}
Richard Smithcfd53b42015-10-22 06:13:50 +0000362
Richard Smith9f690bd2015-10-27 06:02:45 +0000363struct ReadySuspendResumeResult {
Eric Fiselierd978e532017-05-28 18:21:12 +0000364 enum AwaitCallType { ACT_Ready, ACT_Suspend, ACT_Resume };
Richard Smith9f690bd2015-10-27 06:02:45 +0000365 Expr *Results[3];
Gor Nishanovce43bd22017-03-11 01:30:17 +0000366 OpaqueValueExpr *OpaqueValue;
367 bool IsInvalid;
Richard Smith9f690bd2015-10-27 06:02:45 +0000368};
369
Richard Smith23da82c2015-11-20 22:40:06 +0000370static ExprResult buildMemberCall(Sema &S, Expr *Base, SourceLocation Loc,
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000371 StringRef Name, MultiExprArg Args) {
Richard Smith23da82c2015-11-20 22:40:06 +0000372 DeclarationNameInfo NameInfo(&S.PP.getIdentifierTable().get(Name), Loc);
373
374 // FIXME: Fix BuildMemberReferenceExpr to take a const CXXScopeSpec&.
375 CXXScopeSpec SS;
376 ExprResult Result = S.BuildMemberReferenceExpr(
377 Base, Base->getType(), Loc, /*IsPtr=*/false, SS,
378 SourceLocation(), nullptr, NameInfo, /*TemplateArgs=*/nullptr,
379 /*Scope=*/nullptr);
380 if (Result.isInvalid())
381 return ExprError();
382
Gor Nishanovd4507262018-03-27 20:38:19 +0000383 // We meant exactly what we asked for. No need for typo correction.
384 if (auto *TE = dyn_cast<TypoExpr>(Result.get())) {
385 S.clearDelayedTypo(TE);
386 S.Diag(Loc, diag::err_no_member)
387 << NameInfo.getName() << Base->getType()->getAsCXXRecordDecl()
388 << Base->getSourceRange();
389 return ExprError();
390 }
391
Richard Smith23da82c2015-11-20 22:40:06 +0000392 return S.ActOnCallExpr(nullptr, Result.get(), Loc, Args, Loc, nullptr);
393}
394
Gor Nishanov0f333002017-08-25 04:46:54 +0000395// See if return type is coroutine-handle and if so, invoke builtin coro-resume
396// on its address. This is to enable experimental support for coroutine-handle
Alexander Kornienko2a8c18d2018-04-06 15:14:32 +0000397// returning await_suspend that results in a guaranteed tail call to the target
Gor Nishanov0f333002017-08-25 04:46:54 +0000398// coroutine.
399static Expr *maybeTailCall(Sema &S, QualType RetType, Expr *E,
400 SourceLocation Loc) {
401 if (RetType->isReferenceType())
402 return nullptr;
403 Type const *T = RetType.getTypePtr();
404 if (!T->isClassType() && !T->isStructureType())
405 return nullptr;
406
407 // FIXME: Add convertability check to coroutine_handle<>. Possibly via
408 // EvaluateBinaryTypeTrait(BTT_IsConvertible, ...) which is at the moment
409 // a private function in SemaExprCXX.cpp
410
411 ExprResult AddressExpr = buildMemberCall(S, E, Loc, "address", None);
412 if (AddressExpr.isInvalid())
413 return nullptr;
414
415 Expr *JustAddress = AddressExpr.get();
416 // FIXME: Check that the type of AddressExpr is void*
417 return buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_resume,
418 JustAddress);
419}
420
Richard Smith9f690bd2015-10-27 06:02:45 +0000421/// Build calls to await_ready, await_suspend, and await_resume for a co_await
422/// expression.
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000423static ReadySuspendResumeResult buildCoawaitCalls(Sema &S, VarDecl *CoroPromise,
424 SourceLocation Loc, Expr *E) {
Gor Nishanovce43bd22017-03-11 01:30:17 +0000425 OpaqueValueExpr *Operand = new (S.Context)
426 OpaqueValueExpr(Loc, E->getType(), VK_LValue, E->getObjectKind(), E);
427
Richard Smith9f690bd2015-10-27 06:02:45 +0000428 // Assume invalid until we see otherwise.
Gor Nishanovce43bd22017-03-11 01:30:17 +0000429 ReadySuspendResumeResult Calls = {{}, Operand, /*IsInvalid=*/true};
Richard Smith9f690bd2015-10-27 06:02:45 +0000430
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000431 ExprResult CoroHandleRes = buildCoroutineHandle(S, CoroPromise->getType(), Loc);
432 if (CoroHandleRes.isInvalid())
433 return Calls;
434 Expr *CoroHandle = CoroHandleRes.get();
435
Richard Smith9f690bd2015-10-27 06:02:45 +0000436 const StringRef Funcs[] = {"await_ready", "await_suspend", "await_resume"};
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000437 MultiExprArg Args[] = {None, CoroHandle, None};
Richard Smith9f690bd2015-10-27 06:02:45 +0000438 for (size_t I = 0, N = llvm::array_lengthof(Funcs); I != N; ++I) {
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000439 ExprResult Result = buildMemberCall(S, Operand, Loc, Funcs[I], Args[I]);
Richard Smith9f690bd2015-10-27 06:02:45 +0000440 if (Result.isInvalid())
441 return Calls;
442 Calls.Results[I] = Result.get();
443 }
444
Eric Fiselierd978e532017-05-28 18:21:12 +0000445 // Assume the calls are valid; all further checking should make them invalid.
Richard Smith9f690bd2015-10-27 06:02:45 +0000446 Calls.IsInvalid = false;
Eric Fiselierd978e532017-05-28 18:21:12 +0000447
448 using ACT = ReadySuspendResumeResult::AwaitCallType;
449 CallExpr *AwaitReady = cast<CallExpr>(Calls.Results[ACT::ACT_Ready]);
450 if (!AwaitReady->getType()->isDependentType()) {
451 // [expr.await]p3 [...]
452 // — await-ready is the expression e.await_ready(), contextually converted
453 // to bool.
454 ExprResult Conv = S.PerformContextuallyConvertToBool(AwaitReady);
455 if (Conv.isInvalid()) {
456 S.Diag(AwaitReady->getDirectCallee()->getLocStart(),
457 diag::note_await_ready_no_bool_conversion);
458 S.Diag(Loc, diag::note_coroutine_promise_call_implicitly_required)
459 << AwaitReady->getDirectCallee() << E->getSourceRange();
460 Calls.IsInvalid = true;
461 }
462 Calls.Results[ACT::ACT_Ready] = Conv.get();
463 }
464 CallExpr *AwaitSuspend = cast<CallExpr>(Calls.Results[ACT::ACT_Suspend]);
465 if (!AwaitSuspend->getType()->isDependentType()) {
466 // [expr.await]p3 [...]
467 // - await-suspend is the expression e.await_suspend(h), which shall be
468 // a prvalue of type void or bool.
Eric Fiselier84ee7ff2017-05-31 23:41:11 +0000469 QualType RetType = AwaitSuspend->getCallReturnType(S.Context);
Gor Nishanovdb419a62017-09-05 19:31:52 +0000470
Gor Nishanov0f333002017-08-25 04:46:54 +0000471 // Experimental support for coroutine_handle returning await_suspend.
472 if (Expr *TailCallSuspend = maybeTailCall(S, RetType, AwaitSuspend, Loc))
473 Calls.Results[ACT::ACT_Suspend] = TailCallSuspend;
474 else {
475 // non-class prvalues always have cv-unqualified types
Gor Nishanov0f333002017-08-25 04:46:54 +0000476 if (RetType->isReferenceType() ||
Gor Nishanovdb419a62017-09-05 19:31:52 +0000477 (!RetType->isBooleanType() && !RetType->isVoidType())) {
Gor Nishanov0f333002017-08-25 04:46:54 +0000478 S.Diag(AwaitSuspend->getCalleeDecl()->getLocation(),
479 diag::err_await_suspend_invalid_return_type)
480 << RetType;
481 S.Diag(Loc, diag::note_coroutine_promise_call_implicitly_required)
482 << AwaitSuspend->getDirectCallee();
483 Calls.IsInvalid = true;
484 }
Eric Fiselierd978e532017-05-28 18:21:12 +0000485 }
486 }
487
Richard Smith9f690bd2015-10-27 06:02:45 +0000488 return Calls;
489}
490
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000491static ExprResult buildPromiseCall(Sema &S, VarDecl *Promise,
492 SourceLocation Loc, StringRef Name,
493 MultiExprArg Args) {
494
495 // Form a reference to the promise.
496 ExprResult PromiseRef = S.BuildDeclRefExpr(
497 Promise, Promise->getType().getNonReferenceType(), VK_LValue, Loc);
498 if (PromiseRef.isInvalid())
499 return ExprError();
500
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000501 return buildMemberCall(S, PromiseRef.get(), Loc, Name, Args);
502}
503
504VarDecl *Sema::buildCoroutinePromise(SourceLocation Loc) {
505 assert(isa<FunctionDecl>(CurContext) && "not in a function scope");
506 auto *FD = cast<FunctionDecl>(CurContext);
Eric Fiselier166c6e62017-07-10 01:27:22 +0000507 bool IsThisDependentType = [&] {
508 if (auto *MD = dyn_cast_or_null<CXXMethodDecl>(FD))
509 return MD->isInstance() && MD->getThisType(Context)->isDependentType();
510 else
511 return false;
512 }();
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000513
Eric Fiselier166c6e62017-07-10 01:27:22 +0000514 QualType T = FD->getType()->isDependentType() || IsThisDependentType
515 ? Context.DependentTy
516 : lookupPromiseType(*this, FD, Loc);
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000517 if (T.isNull())
518 return nullptr;
519
520 auto *VD = VarDecl::Create(Context, FD, FD->getLocation(), FD->getLocation(),
521 &PP.getIdentifierTable().get("__promise"), T,
522 Context.getTrivialTypeSourceInfo(T, Loc), SC_None);
523 CheckVariableDeclarationType(VD);
524 if (VD->isInvalidDecl())
525 return nullptr;
Brian Gesiak61f4ac92018-01-24 22:15:42 +0000526
527 auto *ScopeInfo = getCurFunction();
528 // Build a list of arguments, based on the coroutine functions arguments,
529 // that will be passed to the promise type's constructor.
530 llvm::SmallVector<Expr *, 4> CtorArgExprs;
Gor Nishanov07ac63f2018-05-28 18:08:47 +0000531
532 // Add implicit object parameter.
533 if (auto *MD = dyn_cast<CXXMethodDecl>(FD)) {
534 if (MD->isInstance() && !isLambdaCallOperator(MD)) {
535 ExprResult ThisExpr = ActOnCXXThis(Loc);
536 if (ThisExpr.isInvalid())
537 return nullptr;
538 ThisExpr = CreateBuiltinUnaryOp(Loc, UO_Deref, ThisExpr.get());
539 if (ThisExpr.isInvalid())
540 return nullptr;
541 CtorArgExprs.push_back(ThisExpr.get());
542 }
543 }
544
Brian Gesiak61f4ac92018-01-24 22:15:42 +0000545 auto &Moves = ScopeInfo->CoroutineParameterMoves;
546 for (auto *PD : FD->parameters()) {
547 if (PD->getType()->isDependentType())
548 continue;
549
550 auto RefExpr = ExprEmpty();
551 auto Move = Moves.find(PD);
Brian Gesiak98606222018-02-15 20:37:22 +0000552 assert(Move != Moves.end() &&
553 "Coroutine function parameter not inserted into move map");
554 // If a reference to the function parameter exists in the coroutine
555 // frame, use that reference.
556 auto *MoveDecl =
557 cast<VarDecl>(cast<DeclStmt>(Move->second)->getSingleDecl());
558 RefExpr =
559 BuildDeclRefExpr(MoveDecl, MoveDecl->getType().getNonReferenceType(),
560 ExprValueKind::VK_LValue, FD->getLocation());
Brian Gesiak61f4ac92018-01-24 22:15:42 +0000561 if (RefExpr.isInvalid())
562 return nullptr;
563 CtorArgExprs.push_back(RefExpr.get());
564 }
565
566 // Create an initialization sequence for the promise type using the
567 // constructor arguments, wrapped in a parenthesized list expression.
568 Expr *PLE = new (Context) ParenListExpr(Context, FD->getLocation(),
569 CtorArgExprs, FD->getLocation());
570 InitializedEntity Entity = InitializedEntity::InitializeVariable(VD);
571 InitializationKind Kind = InitializationKind::CreateForInit(
572 VD->getLocation(), /*DirectInit=*/true, PLE);
573 InitializationSequence InitSeq(*this, Entity, Kind, CtorArgExprs,
574 /*TopLevelOfInitList=*/false,
575 /*TreatUnavailableAsInvalid=*/false);
576
577 // Attempt to initialize the promise type with the arguments.
578 // If that fails, fall back to the promise type's default constructor.
579 if (InitSeq) {
580 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, CtorArgExprs);
581 if (Result.isInvalid()) {
582 VD->setInvalidDecl();
583 } else if (Result.get()) {
584 VD->setInit(MaybeCreateExprWithCleanups(Result.get()));
585 VD->setInitStyle(VarDecl::CallInit);
586 CheckCompleteVariableDeclaration(VD);
587 }
588 } else
589 ActOnUninitializedDecl(VD);
590
Eric Fiselier37b8a372017-05-31 19:36:59 +0000591 FD->addDecl(VD);
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000592 return VD;
593}
594
595/// Check that this is a context in which a coroutine suspension can appear.
596static FunctionScopeInfo *checkCoroutineContext(Sema &S, SourceLocation Loc,
Eric Fiseliercac0a592017-03-11 02:35:37 +0000597 StringRef Keyword,
598 bool IsImplicit = false) {
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000599 if (!isValidCoroutineContext(S, Loc, Keyword))
600 return nullptr;
601
602 assert(isa<FunctionDecl>(S.CurContext) && "not in a function scope");
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000603
604 auto *ScopeInfo = S.getCurFunction();
605 assert(ScopeInfo && "missing function scope for function");
606
Eric Fiseliercac0a592017-03-11 02:35:37 +0000607 if (ScopeInfo->FirstCoroutineStmtLoc.isInvalid() && !IsImplicit)
608 ScopeInfo->setFirstCoroutineStmt(Loc, Keyword);
609
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000610 if (ScopeInfo->CoroutinePromise)
611 return ScopeInfo;
612
Brian Gesiak61f4ac92018-01-24 22:15:42 +0000613 if (!S.buildCoroutineParameterMoves(Loc))
614 return nullptr;
615
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000616 ScopeInfo->CoroutinePromise = S.buildCoroutinePromise(Loc);
617 if (!ScopeInfo->CoroutinePromise)
618 return nullptr;
619
620 return ScopeInfo;
621}
622
Eric Fiselierb936a392017-06-14 03:24:55 +0000623bool Sema::ActOnCoroutineBodyStart(Scope *SC, SourceLocation KWLoc,
624 StringRef Keyword) {
625 if (!checkCoroutineContext(*this, KWLoc, Keyword))
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000626 return false;
Eric Fiselierb936a392017-06-14 03:24:55 +0000627 auto *ScopeInfo = getCurFunction();
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000628 assert(ScopeInfo->CoroutinePromise);
629
630 // If we have existing coroutine statements then we have already built
631 // the initial and final suspend points.
632 if (!ScopeInfo->NeedsCoroutineSuspends)
633 return true;
634
635 ScopeInfo->setNeedsCoroutineSuspends(false);
636
Eric Fiselierb936a392017-06-14 03:24:55 +0000637 auto *Fn = cast<FunctionDecl>(CurContext);
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000638 SourceLocation Loc = Fn->getLocation();
639 // Build the initial suspend point
640 auto buildSuspends = [&](StringRef Name) mutable -> StmtResult {
641 ExprResult Suspend =
Eric Fiselierb936a392017-06-14 03:24:55 +0000642 buildPromiseCall(*this, ScopeInfo->CoroutinePromise, Loc, Name, None);
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000643 if (Suspend.isInvalid())
644 return StmtError();
Eric Fiselierb936a392017-06-14 03:24:55 +0000645 Suspend = buildOperatorCoawaitCall(*this, SC, Loc, Suspend.get());
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000646 if (Suspend.isInvalid())
647 return StmtError();
Eric Fiselierb936a392017-06-14 03:24:55 +0000648 Suspend = BuildResolvedCoawaitExpr(Loc, Suspend.get(),
649 /*IsImplicit*/ true);
650 Suspend = ActOnFinishFullExpr(Suspend.get());
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000651 if (Suspend.isInvalid()) {
Eric Fiselierb936a392017-06-14 03:24:55 +0000652 Diag(Loc, diag::note_coroutine_promise_suspend_implicitly_required)
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000653 << ((Name == "initial_suspend") ? 0 : 1);
Eric Fiselierb936a392017-06-14 03:24:55 +0000654 Diag(KWLoc, diag::note_declared_coroutine_here) << Keyword;
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000655 return StmtError();
656 }
657 return cast<Stmt>(Suspend.get());
658 };
659
660 StmtResult InitSuspend = buildSuspends("initial_suspend");
661 if (InitSuspend.isInvalid())
662 return true;
663
664 StmtResult FinalSuspend = buildSuspends("final_suspend");
665 if (FinalSuspend.isInvalid())
666 return true;
667
668 ScopeInfo->setCoroutineSuspends(InitSuspend.get(), FinalSuspend.get());
669
670 return true;
671}
672
Richard Smith9f690bd2015-10-27 06:02:45 +0000673ExprResult Sema::ActOnCoawaitExpr(Scope *S, SourceLocation Loc, Expr *E) {
Eric Fiselierb936a392017-06-14 03:24:55 +0000674 if (!ActOnCoroutineBodyStart(S, Loc, "co_await")) {
Eric Fiseliera5465282016-09-29 21:47:39 +0000675 CorrectDelayedTyposInExpr(E);
676 return ExprError();
677 }
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000678
Richard Smith10610f72015-11-20 22:57:24 +0000679 if (E->getType()->isPlaceholderType()) {
680 ExprResult R = CheckPlaceholderExpr(E);
681 if (R.isInvalid()) return ExprError();
682 E = R.get();
683 }
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000684 ExprResult Lookup = buildOperatorCoawaitLookupExpr(*this, S, Loc);
685 if (Lookup.isInvalid())
686 return ExprError();
687 return BuildUnresolvedCoawaitExpr(Loc, E,
688 cast<UnresolvedLookupExpr>(Lookup.get()));
689}
Richard Smith10610f72015-11-20 22:57:24 +0000690
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000691ExprResult Sema::BuildUnresolvedCoawaitExpr(SourceLocation Loc, Expr *E,
Eric Fiseliercac0a592017-03-11 02:35:37 +0000692 UnresolvedLookupExpr *Lookup) {
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000693 auto *FSI = checkCoroutineContext(*this, Loc, "co_await");
694 if (!FSI)
695 return ExprError();
696
697 if (E->getType()->isPlaceholderType()) {
698 ExprResult R = CheckPlaceholderExpr(E);
699 if (R.isInvalid())
700 return ExprError();
701 E = R.get();
702 }
703
704 auto *Promise = FSI->CoroutinePromise;
705 if (Promise->getType()->isDependentType()) {
706 Expr *Res =
707 new (Context) DependentCoawaitExpr(Loc, Context.DependentTy, E, Lookup);
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000708 return Res;
709 }
710
711 auto *RD = Promise->getType()->getAsCXXRecordDecl();
712 if (lookupMember(*this, "await_transform", RD, Loc)) {
713 ExprResult R = buildPromiseCall(*this, Promise, Loc, "await_transform", E);
714 if (R.isInvalid()) {
715 Diag(Loc,
716 diag::note_coroutine_promise_implicit_await_transform_required_here)
717 << E->getSourceRange();
718 return ExprError();
719 }
720 E = R.get();
721 }
722 ExprResult Awaitable = buildOperatorCoawaitCall(*this, Loc, E, Lookup);
Richard Smith9f690bd2015-10-27 06:02:45 +0000723 if (Awaitable.isInvalid())
724 return ExprError();
Eric Fiseliera5465282016-09-29 21:47:39 +0000725
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000726 return BuildResolvedCoawaitExpr(Loc, Awaitable.get());
Richard Smith9f690bd2015-10-27 06:02:45 +0000727}
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000728
729ExprResult Sema::BuildResolvedCoawaitExpr(SourceLocation Loc, Expr *E,
730 bool IsImplicit) {
Eric Fiseliercac0a592017-03-11 02:35:37 +0000731 auto *Coroutine = checkCoroutineContext(*this, Loc, "co_await", IsImplicit);
Richard Smith744b2242015-11-20 02:54:01 +0000732 if (!Coroutine)
733 return ExprError();
Richard Smith9f690bd2015-10-27 06:02:45 +0000734
Richard Smith9f690bd2015-10-27 06:02:45 +0000735 if (E->getType()->isPlaceholderType()) {
736 ExprResult R = CheckPlaceholderExpr(E);
737 if (R.isInvalid()) return ExprError();
738 E = R.get();
739 }
740
Richard Smith10610f72015-11-20 22:57:24 +0000741 if (E->getType()->isDependentType()) {
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000742 Expr *Res = new (Context)
743 CoawaitExpr(Loc, Context.DependentTy, E, IsImplicit);
Richard Smith10610f72015-11-20 22:57:24 +0000744 return Res;
745 }
746
Richard Smith1f38edd2015-11-22 03:13:02 +0000747 // If the expression is a temporary, materialize it as an lvalue so that we
748 // can use it multiple times.
749 if (E->getValueKind() == VK_RValue)
Tim Shen4a05bb82016-06-21 20:29:17 +0000750 E = CreateMaterializeTemporaryExpr(E->getType(), E, true);
Richard Smith9f690bd2015-10-27 06:02:45 +0000751
Eric Fiselierd2e30d32018-03-27 03:15:46 +0000752 // The location of the `co_await` token cannot be used when constructing
753 // the member call expressions since it's before the location of `Expr`, which
754 // is used as the start of the member call expression.
755 SourceLocation CallLoc = E->getExprLoc();
756
Richard Smith9f690bd2015-10-27 06:02:45 +0000757 // Build the await_ready, await_suspend, await_resume calls.
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000758 ReadySuspendResumeResult RSS =
Eric Fiselierd2e30d32018-03-27 03:15:46 +0000759 buildCoawaitCalls(*this, Coroutine->CoroutinePromise, CallLoc, E);
Richard Smith9f690bd2015-10-27 06:02:45 +0000760 if (RSS.IsInvalid)
761 return ExprError();
762
Gor Nishanovce43bd22017-03-11 01:30:17 +0000763 Expr *Res =
764 new (Context) CoawaitExpr(Loc, E, RSS.Results[0], RSS.Results[1],
765 RSS.Results[2], RSS.OpaqueValue, IsImplicit);
Eric Fiseliercac0a592017-03-11 02:35:37 +0000766
Richard Smithcfd53b42015-10-22 06:13:50 +0000767 return Res;
768}
769
Richard Smith9f690bd2015-10-27 06:02:45 +0000770ExprResult Sema::ActOnCoyieldExpr(Scope *S, SourceLocation Loc, Expr *E) {
Eric Fiselierb936a392017-06-14 03:24:55 +0000771 if (!ActOnCoroutineBodyStart(S, Loc, "co_yield")) {
Eric Fiseliera5465282016-09-29 21:47:39 +0000772 CorrectDelayedTyposInExpr(E);
Richard Smith23da82c2015-11-20 22:40:06 +0000773 return ExprError();
Eric Fiseliera5465282016-09-29 21:47:39 +0000774 }
Richard Smith23da82c2015-11-20 22:40:06 +0000775
776 // Build yield_value call.
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000777 ExprResult Awaitable = buildPromiseCall(
778 *this, getCurFunction()->CoroutinePromise, Loc, "yield_value", E);
Richard Smith9f690bd2015-10-27 06:02:45 +0000779 if (Awaitable.isInvalid())
780 return ExprError();
Richard Smith23da82c2015-11-20 22:40:06 +0000781
782 // Build 'operator co_await' call.
783 Awaitable = buildOperatorCoawaitCall(*this, S, Loc, Awaitable.get());
784 if (Awaitable.isInvalid())
785 return ExprError();
786
Richard Smith9f690bd2015-10-27 06:02:45 +0000787 return BuildCoyieldExpr(Loc, Awaitable.get());
788}
789ExprResult Sema::BuildCoyieldExpr(SourceLocation Loc, Expr *E) {
790 auto *Coroutine = checkCoroutineContext(*this, Loc, "co_yield");
Richard Smith744b2242015-11-20 02:54:01 +0000791 if (!Coroutine)
792 return ExprError();
Richard Smithcfd53b42015-10-22 06:13:50 +0000793
Richard Smith10610f72015-11-20 22:57:24 +0000794 if (E->getType()->isPlaceholderType()) {
795 ExprResult R = CheckPlaceholderExpr(E);
796 if (R.isInvalid()) return ExprError();
797 E = R.get();
798 }
799
Richard Smithd7bed4d2015-11-22 02:57:17 +0000800 if (E->getType()->isDependentType()) {
801 Expr *Res = new (Context) CoyieldExpr(Loc, Context.DependentTy, E);
Richard Smithd7bed4d2015-11-22 02:57:17 +0000802 return Res;
803 }
804
Richard Smith1f38edd2015-11-22 03:13:02 +0000805 // If the expression is a temporary, materialize it as an lvalue so that we
806 // can use it multiple times.
807 if (E->getValueKind() == VK_RValue)
Tim Shen4a05bb82016-06-21 20:29:17 +0000808 E = CreateMaterializeTemporaryExpr(E->getType(), E, true);
Richard Smithd7bed4d2015-11-22 02:57:17 +0000809
810 // Build the await_ready, await_suspend, await_resume calls.
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000811 ReadySuspendResumeResult RSS =
812 buildCoawaitCalls(*this, Coroutine->CoroutinePromise, Loc, E);
Richard Smithd7bed4d2015-11-22 02:57:17 +0000813 if (RSS.IsInvalid)
814 return ExprError();
815
Eric Fiselierb936a392017-06-14 03:24:55 +0000816 Expr *Res =
817 new (Context) CoyieldExpr(Loc, E, RSS.Results[0], RSS.Results[1],
818 RSS.Results[2], RSS.OpaqueValue);
Eric Fiseliercac0a592017-03-11 02:35:37 +0000819
Richard Smithcfd53b42015-10-22 06:13:50 +0000820 return Res;
821}
822
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000823StmtResult Sema::ActOnCoreturnStmt(Scope *S, SourceLocation Loc, Expr *E) {
Eric Fiselierb936a392017-06-14 03:24:55 +0000824 if (!ActOnCoroutineBodyStart(S, Loc, "co_return")) {
Eric Fiseliera5465282016-09-29 21:47:39 +0000825 CorrectDelayedTyposInExpr(E);
826 return StmtError();
827 }
Richard Smith9f690bd2015-10-27 06:02:45 +0000828 return BuildCoreturnStmt(Loc, E);
829}
Gor Nishanov3e048bb2016-10-04 00:31:16 +0000830
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000831StmtResult Sema::BuildCoreturnStmt(SourceLocation Loc, Expr *E,
832 bool IsImplicit) {
Eric Fiseliercac0a592017-03-11 02:35:37 +0000833 auto *FSI = checkCoroutineContext(*this, Loc, "co_return", IsImplicit);
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000834 if (!FSI)
Richard Smith71d403e2015-11-22 07:33:28 +0000835 return StmtError();
836
837 if (E && E->getType()->isPlaceholderType() &&
838 !E->getType()->isSpecificPlaceholderType(BuiltinType::Overload)) {
Richard Smith10610f72015-11-20 22:57:24 +0000839 ExprResult R = CheckPlaceholderExpr(E);
840 if (R.isInvalid()) return StmtError();
841 E = R.get();
842 }
843
Richard Smith4ba66602015-11-22 07:05:16 +0000844 // FIXME: If the operand is a reference to a variable that's about to go out
Richard Smith2af65c42015-11-24 02:34:39 +0000845 // of scope, we should treat the operand as an xvalue for this overload
Richard Smith4ba66602015-11-22 07:05:16 +0000846 // resolution.
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000847 VarDecl *Promise = FSI->CoroutinePromise;
Richard Smith4ba66602015-11-22 07:05:16 +0000848 ExprResult PC;
Eric Fiselier98131312016-10-06 21:23:38 +0000849 if (E && (isa<InitListExpr>(E) || !E->getType()->isVoidType())) {
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000850 PC = buildPromiseCall(*this, Promise, Loc, "return_value", E);
Richard Smith4ba66602015-11-22 07:05:16 +0000851 } else {
852 E = MakeFullDiscardedValueExpr(E).get();
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000853 PC = buildPromiseCall(*this, Promise, Loc, "return_void", None);
Richard Smith4ba66602015-11-22 07:05:16 +0000854 }
855 if (PC.isInvalid())
856 return StmtError();
857
858 Expr *PCE = ActOnFinishFullExpr(PC.get()).get();
859
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000860 Stmt *Res = new (Context) CoreturnStmt(Loc, E, PCE, IsImplicit);
Richard Smithcfd53b42015-10-22 06:13:50 +0000861 return Res;
862}
863
Eric Fiselierf692e7d2017-04-18 03:12:48 +0000864/// Look up the std::nothrow object.
865static Expr *buildStdNoThrowDeclRef(Sema &S, SourceLocation Loc) {
866 NamespaceDecl *Std = S.getStdNamespace();
867 assert(Std && "Should already be diagnosed");
868
869 LookupResult Result(S, &S.PP.getIdentifierTable().get("nothrow"), Loc,
870 Sema::LookupOrdinaryName);
871 if (!S.LookupQualifiedName(Result, Std)) {
872 // FIXME: <experimental/coroutine> should have been included already.
873 // If we require it to include <new> then this diagnostic is no longer
874 // needed.
875 S.Diag(Loc, diag::err_implicit_coroutine_std_nothrow_type_not_found);
876 return nullptr;
877 }
878
Eric Fiselierf692e7d2017-04-18 03:12:48 +0000879 auto *VD = Result.getAsSingle<VarDecl>();
880 if (!VD) {
881 Result.suppressDiagnostics();
882 // We found something weird. Complain about the first thing we found.
883 NamedDecl *Found = *Result.begin();
884 S.Diag(Found->getLocation(), diag::err_malformed_std_nothrow);
885 return nullptr;
886 }
887
888 ExprResult DR = S.BuildDeclRefExpr(VD, VD->getType(), VK_LValue, Loc);
889 if (DR.isInvalid())
890 return nullptr;
891
892 return DR.get();
893}
894
Gor Nishanov8df64e92016-10-27 16:28:31 +0000895// Find an appropriate delete for the promise.
896static FunctionDecl *findDeleteForPromise(Sema &S, SourceLocation Loc,
897 QualType PromiseType) {
898 FunctionDecl *OperatorDelete = nullptr;
899
900 DeclarationName DeleteName =
901 S.Context.DeclarationNames.getCXXOperatorName(OO_Delete);
902
903 auto *PointeeRD = PromiseType->getAsCXXRecordDecl();
904 assert(PointeeRD && "PromiseType must be a CxxRecordDecl type");
905
906 if (S.FindDeallocationFunction(Loc, PointeeRD, DeleteName, OperatorDelete))
907 return nullptr;
908
909 if (!OperatorDelete) {
910 // Look for a global declaration.
911 const bool CanProvideSize = S.isCompleteType(Loc, PromiseType);
912 const bool Overaligned = false;
913 OperatorDelete = S.FindUsualDeallocationFunction(Loc, CanProvideSize,
914 Overaligned, DeleteName);
915 }
916 S.MarkFunctionReferenced(Loc, OperatorDelete);
917 return OperatorDelete;
918}
919
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000920
921void Sema::CheckCompletedCoroutineBody(FunctionDecl *FD, Stmt *&Body) {
922 FunctionScopeInfo *Fn = getCurFunction();
Eric Fiselierda8f9b52017-05-25 02:16:53 +0000923 assert(Fn && Fn->isCoroutine() && "not a coroutine");
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000924 if (!Body) {
925 assert(FD->isInvalidDecl() &&
926 "a null body is only allowed for invalid declarations");
927 return;
928 }
Eric Fiselierda8f9b52017-05-25 02:16:53 +0000929 // We have a function that uses coroutine keywords, but we failed to build
930 // the promise type.
931 if (!Fn->CoroutinePromise)
932 return FD->setInvalidDecl();
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000933
934 if (isa<CoroutineBodyStmt>(Body)) {
Gor Nishanov29ff6382017-05-24 14:34:19 +0000935 // Nothing todo. the body is already a transformed coroutine body statement.
Gor Nishanov6dcb0eb2017-03-09 03:09:43 +0000936 return;
937 }
938
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000939 // Coroutines [stmt.return]p1:
940 // A return statement shall not appear in a coroutine.
941 if (Fn->FirstReturnLoc.isValid()) {
Eric Fiseliercac0a592017-03-11 02:35:37 +0000942 assert(Fn->FirstCoroutineStmtLoc.isValid() &&
943 "first coroutine location not set");
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000944 Diag(Fn->FirstReturnLoc, diag::err_return_in_coroutine);
Eric Fiseliercac0a592017-03-11 02:35:37 +0000945 Diag(Fn->FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
946 << Fn->getFirstCoroutineStmtKeyword();
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000947 }
Eric Fiselierbee782b2017-04-03 19:21:00 +0000948 CoroutineStmtBuilder Builder(*this, *FD, *Fn, Body);
949 if (Builder.isInvalid() || !Builder.buildStatements())
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000950 return FD->setInvalidDecl();
951
952 // Build body for the coroutine wrapper statement.
953 Body = CoroutineBodyStmt::Create(Context, Builder);
954}
955
Eric Fiselierbee782b2017-04-03 19:21:00 +0000956CoroutineStmtBuilder::CoroutineStmtBuilder(Sema &S, FunctionDecl &FD,
957 sema::FunctionScopeInfo &Fn,
958 Stmt *Body)
959 : S(S), FD(FD), Fn(Fn), Loc(FD.getLocation()),
960 IsPromiseDependentType(
961 !Fn.CoroutinePromise ||
962 Fn.CoroutinePromise->getType()->isDependentType()) {
963 this->Body = Body;
Brian Gesiak61f4ac92018-01-24 22:15:42 +0000964
965 for (auto KV : Fn.CoroutineParameterMoves)
966 this->ParamMovesVector.push_back(KV.second);
967 this->ParamMoves = this->ParamMovesVector;
968
Eric Fiselierbee782b2017-04-03 19:21:00 +0000969 if (!IsPromiseDependentType) {
970 PromiseRecordDecl = Fn.CoroutinePromise->getType()->getAsCXXRecordDecl();
971 assert(PromiseRecordDecl && "Type should have already been checked");
972 }
973 this->IsValid = makePromiseStmt() && makeInitialAndFinalSuspend();
974}
975
976bool CoroutineStmtBuilder::buildStatements() {
977 assert(this->IsValid && "coroutine already invalid");
Brian Gesiak61f4ac92018-01-24 22:15:42 +0000978 this->IsValid = makeReturnObject();
Eric Fiselierbee782b2017-04-03 19:21:00 +0000979 if (this->IsValid && !IsPromiseDependentType)
980 buildDependentStatements();
981 return this->IsValid;
982}
983
984bool CoroutineStmtBuilder::buildDependentStatements() {
985 assert(this->IsValid && "coroutine already invalid");
986 assert(!this->IsPromiseDependentType &&
987 "coroutine cannot have a dependent promise type");
988 this->IsValid = makeOnException() && makeOnFallthrough() &&
Gor Nishanov6a470682017-05-22 20:22:23 +0000989 makeGroDeclAndReturnStmt() && makeReturnOnAllocFailure() &&
990 makeNewAndDeleteExpr();
Eric Fiselierbee782b2017-04-03 19:21:00 +0000991 return this->IsValid;
992}
993
994bool CoroutineStmtBuilder::makePromiseStmt() {
Eric Fiselier20f25cb2017-03-06 23:38:15 +0000995 // Form a declaration statement for the promise declaration, so that AST
996 // visitors can more easily find it.
997 StmtResult PromiseStmt =
998 S.ActOnDeclStmt(S.ConvertDeclToDeclGroup(Fn.CoroutinePromise), Loc, Loc);
999 if (PromiseStmt.isInvalid())
1000 return false;
1001
1002 this->Promise = PromiseStmt.get();
1003 return true;
1004}
1005
Eric Fiselierbee782b2017-04-03 19:21:00 +00001006bool CoroutineStmtBuilder::makeInitialAndFinalSuspend() {
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001007 if (Fn.hasInvalidCoroutineSuspends())
1008 return false;
1009 this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first);
1010 this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second);
1011 return true;
1012}
1013
Gor Nishanov3aa9eb32017-03-27 23:36:59 +00001014static bool diagReturnOnAllocFailure(Sema &S, Expr *E,
1015 CXXRecordDecl *PromiseRecordDecl,
1016 FunctionScopeInfo &Fn) {
1017 auto Loc = E->getExprLoc();
1018 if (auto *DeclRef = dyn_cast_or_null<DeclRefExpr>(E)) {
1019 auto *Decl = DeclRef->getDecl();
1020 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(Decl)) {
1021 if (Method->isStatic())
1022 return true;
1023 else
1024 Loc = Decl->getLocation();
1025 }
1026 }
1027
1028 S.Diag(
1029 Loc,
1030 diag::err_coroutine_promise_get_return_object_on_allocation_failure)
1031 << PromiseRecordDecl;
1032 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
1033 << Fn.getFirstCoroutineStmtKeyword();
1034 return false;
1035}
1036
Eric Fiselierbee782b2017-04-03 19:21:00 +00001037bool CoroutineStmtBuilder::makeReturnOnAllocFailure() {
1038 assert(!IsPromiseDependentType &&
1039 "cannot make statement while the promise type is dependent");
Gor Nishanov3aa9eb32017-03-27 23:36:59 +00001040
1041 // [dcl.fct.def.coroutine]/8
1042 // The unqualified-id get_return_object_on_allocation_failure is looked up in
1043 // the scope of class P by class member access lookup (3.4.5). ...
1044 // If an allocation function returns nullptr, ... the coroutine return value
1045 // is obtained by a call to ... get_return_object_on_allocation_failure().
1046
1047 DeclarationName DN =
1048 S.PP.getIdentifierInfo("get_return_object_on_allocation_failure");
1049 LookupResult Found(S, DN, Loc, Sema::LookupMemberName);
Eric Fiselierbee782b2017-04-03 19:21:00 +00001050 if (!S.LookupQualifiedName(Found, PromiseRecordDecl))
1051 return true;
Gor Nishanov3aa9eb32017-03-27 23:36:59 +00001052
1053 CXXScopeSpec SS;
1054 ExprResult DeclNameExpr =
1055 S.BuildDeclarationNameExpr(SS, Found, /*NeedsADL=*/false);
Eric Fiselierbee782b2017-04-03 19:21:00 +00001056 if (DeclNameExpr.isInvalid())
1057 return false;
Gor Nishanov3aa9eb32017-03-27 23:36:59 +00001058
1059 if (!diagReturnOnAllocFailure(S, DeclNameExpr.get(), PromiseRecordDecl, Fn))
1060 return false;
1061
1062 ExprResult ReturnObjectOnAllocationFailure =
1063 S.ActOnCallExpr(nullptr, DeclNameExpr.get(), Loc, {}, Loc);
Eric Fiselierbee782b2017-04-03 19:21:00 +00001064 if (ReturnObjectOnAllocationFailure.isInvalid())
1065 return false;
Gor Nishanov3aa9eb32017-03-27 23:36:59 +00001066
Gor Nishanovc4a19082017-03-28 02:51:45 +00001067 StmtResult ReturnStmt =
1068 S.BuildReturnStmt(Loc, ReturnObjectOnAllocationFailure.get());
Gor Nishanov6a470682017-05-22 20:22:23 +00001069 if (ReturnStmt.isInvalid()) {
Eric Fiselierfc50f622017-05-25 14:59:39 +00001070 S.Diag(Found.getFoundDecl()->getLocation(), diag::note_member_declared_here)
1071 << DN;
Gor Nishanov6a470682017-05-22 20:22:23 +00001072 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
1073 << Fn.getFirstCoroutineStmtKeyword();
Eric Fiselierbee782b2017-04-03 19:21:00 +00001074 return false;
Gor Nishanov6a470682017-05-22 20:22:23 +00001075 }
Gor Nishanov3aa9eb32017-03-27 23:36:59 +00001076
1077 this->ReturnStmtOnAllocFailure = ReturnStmt.get();
1078 return true;
1079}
1080
Eric Fiselierbee782b2017-04-03 19:21:00 +00001081bool CoroutineStmtBuilder::makeNewAndDeleteExpr() {
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001082 // Form and check allocation and deallocation calls.
Eric Fiselierbee782b2017-04-03 19:21:00 +00001083 assert(!IsPromiseDependentType &&
1084 "cannot make statement while the promise type is dependent");
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001085 QualType PromiseType = Fn.CoroutinePromise->getType();
Gor Nishanov8df64e92016-10-27 16:28:31 +00001086
1087 if (S.RequireCompleteType(Loc, PromiseType, diag::err_incomplete_type))
1088 return false;
1089
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001090 const bool RequiresNoThrowAlloc = ReturnStmtOnAllocFailure != nullptr;
1091
Brian Gesiak98606222018-02-15 20:37:22 +00001092 // [dcl.fct.def.coroutine]/7
1093 // Lookup allocation functions using a parameter list composed of the
1094 // requested size of the coroutine state being allocated, followed by
1095 // the coroutine function's arguments. If a matching allocation function
1096 // exists, use it. Otherwise, use an allocation function that just takes
1097 // the requested size.
Gor Nishanov8df64e92016-10-27 16:28:31 +00001098
1099 FunctionDecl *OperatorNew = nullptr;
1100 FunctionDecl *OperatorDelete = nullptr;
1101 FunctionDecl *UnusedResult = nullptr;
1102 bool PassAlignment = false;
Eric Fiselierf747f532017-04-18 05:08:08 +00001103 SmallVector<Expr *, 1> PlacementArgs;
Gor Nishanov8df64e92016-10-27 16:28:31 +00001104
Brian Gesiak98606222018-02-15 20:37:22 +00001105 // [dcl.fct.def.coroutine]/7
1106 // "The allocation function’s name is looked up in the scope of P.
1107 // [...] If the lookup finds an allocation function in the scope of P,
1108 // overload resolution is performed on a function call created by assembling
1109 // an argument list. The first argument is the amount of space requested,
1110 // and has type std::size_t. The lvalues p1 ... pn are the succeeding
1111 // arguments."
1112 //
1113 // ...where "p1 ... pn" are defined earlier as:
1114 //
1115 // [dcl.fct.def.coroutine]/3
1116 // "For a coroutine f that is a non-static member function, let P1 denote the
1117 // type of the implicit object parameter (13.3.1) and P2 ... Pn be the types
1118 // of the function parameters; otherwise let P1 ... Pn be the types of the
1119 // function parameters. Let p1 ... pn be lvalues denoting those objects."
1120 if (auto *MD = dyn_cast<CXXMethodDecl>(&FD)) {
1121 if (MD->isInstance() && !isLambdaCallOperator(MD)) {
1122 ExprResult ThisExpr = S.ActOnCXXThis(Loc);
1123 if (ThisExpr.isInvalid())
1124 return false;
1125 ThisExpr = S.CreateBuiltinUnaryOp(Loc, UO_Deref, ThisExpr.get());
1126 if (ThisExpr.isInvalid())
1127 return false;
1128 PlacementArgs.push_back(ThisExpr.get());
1129 }
1130 }
1131 for (auto *PD : FD.parameters()) {
1132 if (PD->getType()->isDependentType())
1133 continue;
1134
1135 // Build a reference to the parameter.
1136 auto PDLoc = PD->getLocation();
1137 ExprResult PDRefExpr =
1138 S.BuildDeclRefExpr(PD, PD->getOriginalType().getNonReferenceType(),
1139 ExprValueKind::VK_LValue, PDLoc);
1140 if (PDRefExpr.isInvalid())
1141 return false;
1142
1143 PlacementArgs.push_back(PDRefExpr.get());
1144 }
Brian Gesiakcb024022018-04-01 22:59:22 +00001145 S.FindAllocationFunctions(Loc, SourceRange(), /*NewScope*/ Sema::AFS_Class,
1146 /*DeleteScope*/ Sema::AFS_Both, PromiseType,
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001147 /*isArray*/ false, PassAlignment, PlacementArgs,
Brian Gesiak98606222018-02-15 20:37:22 +00001148 OperatorNew, UnusedResult, /*Diagnose*/ false);
1149
1150 // [dcl.fct.def.coroutine]/7
1151 // "If no matching function is found, overload resolution is performed again
1152 // on a function call created by passing just the amount of space required as
1153 // an argument of type std::size_t."
1154 if (!OperatorNew && !PlacementArgs.empty()) {
1155 PlacementArgs.clear();
Brian Gesiakcb024022018-04-01 22:59:22 +00001156 S.FindAllocationFunctions(Loc, SourceRange(), /*NewScope*/ Sema::AFS_Class,
1157 /*DeleteScope*/ Sema::AFS_Both, PromiseType,
1158 /*isArray*/ false, PassAlignment, PlacementArgs,
1159 OperatorNew, UnusedResult, /*Diagnose*/ false);
1160 }
1161
1162 // [dcl.fct.def.coroutine]/7
1163 // "The allocation function’s name is looked up in the scope of P. If this
1164 // lookup fails, the allocation function’s name is looked up in the global
1165 // scope."
1166 if (!OperatorNew) {
1167 S.FindAllocationFunctions(Loc, SourceRange(), /*NewScope*/ Sema::AFS_Global,
1168 /*DeleteScope*/ Sema::AFS_Both, PromiseType,
1169 /*isArray*/ false, PassAlignment, PlacementArgs,
1170 OperatorNew, UnusedResult);
Brian Gesiak98606222018-02-15 20:37:22 +00001171 }
Gor Nishanov8df64e92016-10-27 16:28:31 +00001172
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001173 bool IsGlobalOverload =
1174 OperatorNew && !isa<CXXRecordDecl>(OperatorNew->getDeclContext());
1175 // If we didn't find a class-local new declaration and non-throwing new
1176 // was is required then we need to lookup the non-throwing global operator
1177 // instead.
1178 if (RequiresNoThrowAlloc && (!OperatorNew || IsGlobalOverload)) {
1179 auto *StdNoThrow = buildStdNoThrowDeclRef(S, Loc);
1180 if (!StdNoThrow)
1181 return false;
Eric Fiselierf747f532017-04-18 05:08:08 +00001182 PlacementArgs = {StdNoThrow};
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001183 OperatorNew = nullptr;
Brian Gesiakcb024022018-04-01 22:59:22 +00001184 S.FindAllocationFunctions(Loc, SourceRange(), /*NewScope*/ Sema::AFS_Both,
1185 /*DeleteScope*/ Sema::AFS_Both, PromiseType,
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001186 /*isArray*/ false, PassAlignment, PlacementArgs,
1187 OperatorNew, UnusedResult);
1188 }
Gor Nishanov8df64e92016-10-27 16:28:31 +00001189
Brian Gesiak98606222018-02-15 20:37:22 +00001190 if (!OperatorNew)
1191 return false;
Eric Fiselierc5128752017-04-18 05:30:39 +00001192
1193 if (RequiresNoThrowAlloc) {
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001194 const auto *FT = OperatorNew->getType()->getAs<FunctionProtoType>();
Richard Smitheaf11ad2018-05-03 03:58:32 +00001195 if (!FT->isNothrow(/*ResultIfDependent*/ false)) {
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001196 S.Diag(OperatorNew->getLocation(),
1197 diag::err_coroutine_promise_new_requires_nothrow)
1198 << OperatorNew;
1199 S.Diag(Loc, diag::note_coroutine_promise_call_implicitly_required)
1200 << OperatorNew;
1201 return false;
1202 }
1203 }
1204
1205 if ((OperatorDelete = findDeleteForPromise(S, Loc, PromiseType)) == nullptr)
Gor Nishanov8df64e92016-10-27 16:28:31 +00001206 return false;
1207
1208 Expr *FramePtr =
1209 buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_frame, {});
1210
1211 Expr *FrameSize =
1212 buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_size, {});
1213
1214 // Make new call.
1215
1216 ExprResult NewRef =
1217 S.BuildDeclRefExpr(OperatorNew, OperatorNew->getType(), VK_LValue, Loc);
1218 if (NewRef.isInvalid())
1219 return false;
1220
Eric Fiselierf747f532017-04-18 05:08:08 +00001221 SmallVector<Expr *, 2> NewArgs(1, FrameSize);
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001222 for (auto Arg : PlacementArgs)
1223 NewArgs.push_back(Arg);
1224
Gor Nishanov8df64e92016-10-27 16:28:31 +00001225 ExprResult NewExpr =
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001226 S.ActOnCallExpr(S.getCurScope(), NewRef.get(), Loc, NewArgs, Loc);
1227 NewExpr = S.ActOnFinishFullExpr(NewExpr.get());
Gor Nishanov8df64e92016-10-27 16:28:31 +00001228 if (NewExpr.isInvalid())
1229 return false;
1230
Gor Nishanov8df64e92016-10-27 16:28:31 +00001231 // Make delete call.
1232
1233 QualType OpDeleteQualType = OperatorDelete->getType();
1234
1235 ExprResult DeleteRef =
1236 S.BuildDeclRefExpr(OperatorDelete, OpDeleteQualType, VK_LValue, Loc);
1237 if (DeleteRef.isInvalid())
1238 return false;
1239
1240 Expr *CoroFree =
1241 buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_free, {FramePtr});
1242
1243 SmallVector<Expr *, 2> DeleteArgs{CoroFree};
1244
1245 // Check if we need to pass the size.
1246 const auto *OpDeleteType =
1247 OpDeleteQualType.getTypePtr()->getAs<FunctionProtoType>();
1248 if (OpDeleteType->getNumParams() > 1)
1249 DeleteArgs.push_back(FrameSize);
1250
1251 ExprResult DeleteExpr =
1252 S.ActOnCallExpr(S.getCurScope(), DeleteRef.get(), Loc, DeleteArgs, Loc);
Eric Fiselierf692e7d2017-04-18 03:12:48 +00001253 DeleteExpr = S.ActOnFinishFullExpr(DeleteExpr.get());
Gor Nishanov8df64e92016-10-27 16:28:31 +00001254 if (DeleteExpr.isInvalid())
1255 return false;
1256
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001257 this->Allocate = NewExpr.get();
1258 this->Deallocate = DeleteExpr.get();
Gor Nishanov8df64e92016-10-27 16:28:31 +00001259
1260 return true;
1261}
1262
Eric Fiselierbee782b2017-04-03 19:21:00 +00001263bool CoroutineStmtBuilder::makeOnFallthrough() {
1264 assert(!IsPromiseDependentType &&
1265 "cannot make statement while the promise type is dependent");
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001266
1267 // [dcl.fct.def.coroutine]/4
1268 // The unqualified-ids 'return_void' and 'return_value' are looked up in
1269 // the scope of class P. If both are found, the program is ill-formed.
Eric Fiselierfc50f622017-05-25 14:59:39 +00001270 bool HasRVoid, HasRValue;
1271 LookupResult LRVoid =
1272 lookupMember(S, "return_void", PromiseRecordDecl, Loc, HasRVoid);
1273 LookupResult LRValue =
1274 lookupMember(S, "return_value", PromiseRecordDecl, Loc, HasRValue);
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001275
Eric Fiselier709d1b32016-10-27 07:30:31 +00001276 StmtResult Fallthrough;
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001277 if (HasRVoid && HasRValue) {
1278 // FIXME Improve this diagnostic
Eric Fiselierfc50f622017-05-25 14:59:39 +00001279 S.Diag(FD.getLocation(),
1280 diag::err_coroutine_promise_incompatible_return_functions)
1281 << PromiseRecordDecl;
1282 S.Diag(LRVoid.getRepresentativeDecl()->getLocation(),
1283 diag::note_member_first_declared_here)
1284 << LRVoid.getLookupName();
1285 S.Diag(LRValue.getRepresentativeDecl()->getLocation(),
1286 diag::note_member_first_declared_here)
1287 << LRValue.getLookupName();
1288 return false;
1289 } else if (!HasRVoid && !HasRValue) {
1290 // FIXME: The PDTS currently specifies this case as UB, not ill-formed.
1291 // However we still diagnose this as an error since until the PDTS is fixed.
1292 S.Diag(FD.getLocation(),
1293 diag::err_coroutine_promise_requires_return_function)
1294 << PromiseRecordDecl;
1295 S.Diag(PromiseRecordDecl->getLocation(), diag::note_defined_here)
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001296 << PromiseRecordDecl;
1297 return false;
1298 } else if (HasRVoid) {
1299 // If the unqualified-id return_void is found, flowing off the end of a
1300 // coroutine is equivalent to a co_return with no operand. Otherwise,
1301 // flowing off the end of a coroutine results in undefined behavior.
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001302 Fallthrough = S.BuildCoreturnStmt(FD.getLocation(), nullptr,
1303 /*IsImplicit*/false);
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001304 Fallthrough = S.ActOnFinishFullStmt(Fallthrough.get());
1305 if (Fallthrough.isInvalid())
1306 return false;
Eric Fiselier709d1b32016-10-27 07:30:31 +00001307 }
Richard Smith2af65c42015-11-24 02:34:39 +00001308
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001309 this->OnFallthrough = Fallthrough.get();
1310 return true;
1311}
1312
Eric Fiselierbee782b2017-04-03 19:21:00 +00001313bool CoroutineStmtBuilder::makeOnException() {
Eric Fiseliera9fdb342017-03-23 00:33:33 +00001314 // Try to form 'p.unhandled_exception();'
Eric Fiselierbee782b2017-04-03 19:21:00 +00001315 assert(!IsPromiseDependentType &&
1316 "cannot make statement while the promise type is dependent");
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001317
Eric Fiseliera9fdb342017-03-23 00:33:33 +00001318 const bool RequireUnhandledException = S.getLangOpts().CXXExceptions;
1319
1320 if (!lookupMember(S, "unhandled_exception", PromiseRecordDecl, Loc)) {
1321 auto DiagID =
1322 RequireUnhandledException
1323 ? diag::err_coroutine_promise_unhandled_exception_required
1324 : diag::
1325 warn_coroutine_promise_unhandled_exception_required_with_exceptions;
1326 S.Diag(Loc, DiagID) << PromiseRecordDecl;
Gor Nishanov29ff6382017-05-24 14:34:19 +00001327 S.Diag(PromiseRecordDecl->getLocation(), diag::note_defined_here)
1328 << PromiseRecordDecl;
Eric Fiseliera9fdb342017-03-23 00:33:33 +00001329 return !RequireUnhandledException;
1330 }
1331
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001332 // If exceptions are disabled, don't try to build OnException.
1333 if (!S.getLangOpts().CXXExceptions)
1334 return true;
1335
Eric Fiseliera9fdb342017-03-23 00:33:33 +00001336 ExprResult UnhandledException = buildPromiseCall(S, Fn.CoroutinePromise, Loc,
1337 "unhandled_exception", None);
1338 UnhandledException = S.ActOnFinishFullExpr(UnhandledException.get(), Loc);
1339 if (UnhandledException.isInvalid())
1340 return false;
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001341
Gor Nishanov5b050e42017-05-22 22:33:17 +00001342 // Since the body of the coroutine will be wrapped in try-catch, it will
1343 // be incompatible with SEH __try if present in a function.
1344 if (!S.getLangOpts().Borland && Fn.FirstSEHTryLoc.isValid()) {
1345 S.Diag(Fn.FirstSEHTryLoc, diag::err_seh_in_a_coroutine_with_cxx_exceptions);
1346 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
1347 << Fn.getFirstCoroutineStmtKeyword();
1348 return false;
1349 }
1350
Eric Fiseliera9fdb342017-03-23 00:33:33 +00001351 this->OnException = UnhandledException.get();
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001352 return true;
1353}
1354
Eric Fiselierbee782b2017-04-03 19:21:00 +00001355bool CoroutineStmtBuilder::makeReturnObject() {
Richard Smith2af65c42015-11-24 02:34:39 +00001356 // Build implicit 'p.get_return_object()' expression and form initialization
1357 // of return type from it.
1358 ExprResult ReturnObject =
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001359 buildPromiseCall(S, Fn.CoroutinePromise, Loc, "get_return_object", None);
Richard Smith2af65c42015-11-24 02:34:39 +00001360 if (ReturnObject.isInvalid())
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001361 return false;
Richard Smith2af65c42015-11-24 02:34:39 +00001362
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001363 this->ReturnValue = ReturnObject.get();
1364 return true;
1365}
1366
Gor Nishanov6a470682017-05-22 20:22:23 +00001367static void noteMemberDeclaredHere(Sema &S, Expr *E, FunctionScopeInfo &Fn) {
1368 if (auto *MbrRef = dyn_cast<CXXMemberCallExpr>(E)) {
1369 auto *MethodDecl = MbrRef->getMethodDecl();
Eric Fiselierfc50f622017-05-25 14:59:39 +00001370 S.Diag(MethodDecl->getLocation(), diag::note_member_declared_here)
1371 << MethodDecl;
Gor Nishanov6a470682017-05-22 20:22:23 +00001372 }
1373 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
1374 << Fn.getFirstCoroutineStmtKeyword();
1375}
1376
1377bool CoroutineStmtBuilder::makeGroDeclAndReturnStmt() {
1378 assert(!IsPromiseDependentType &&
1379 "cannot make statement while the promise type is dependent");
1380 assert(this->ReturnValue && "ReturnValue must be already formed");
1381
1382 QualType const GroType = this->ReturnValue->getType();
1383 assert(!GroType->isDependentType() &&
1384 "get_return_object type must no longer be dependent");
1385
1386 QualType const FnRetType = FD.getReturnType();
1387 assert(!FnRetType->isDependentType() &&
1388 "get_return_object type must no longer be dependent");
1389
1390 if (FnRetType->isVoidType()) {
1391 ExprResult Res = S.ActOnFinishFullExpr(this->ReturnValue, Loc);
1392 if (Res.isInvalid())
1393 return false;
1394
1395 this->ResultDecl = Res.get();
1396 return true;
1397 }
1398
1399 if (GroType->isVoidType()) {
1400 // Trigger a nice error message.
1401 InitializedEntity Entity =
1402 InitializedEntity::InitializeResult(Loc, FnRetType, false);
1403 S.PerformMoveOrCopyInitialization(Entity, nullptr, FnRetType, ReturnValue);
1404 noteMemberDeclaredHere(S, ReturnValue, Fn);
1405 return false;
1406 }
1407
1408 auto *GroDecl = VarDecl::Create(
1409 S.Context, &FD, FD.getLocation(), FD.getLocation(),
1410 &S.PP.getIdentifierTable().get("__coro_gro"), GroType,
1411 S.Context.getTrivialTypeSourceInfo(GroType, Loc), SC_None);
1412
1413 S.CheckVariableDeclarationType(GroDecl);
1414 if (GroDecl->isInvalidDecl())
1415 return false;
1416
1417 InitializedEntity Entity = InitializedEntity::InitializeVariable(GroDecl);
1418 ExprResult Res = S.PerformMoveOrCopyInitialization(Entity, nullptr, GroType,
1419 this->ReturnValue);
1420 if (Res.isInvalid())
1421 return false;
1422
1423 Res = S.ActOnFinishFullExpr(Res.get());
1424 if (Res.isInvalid())
1425 return false;
1426
Gor Nishanov6a470682017-05-22 20:22:23 +00001427 S.AddInitializerToDecl(GroDecl, Res.get(),
1428 /*DirectInit=*/false);
1429
1430 S.FinalizeDeclaration(GroDecl);
1431
1432 // Form a declaration statement for the return declaration, so that AST
1433 // visitors can more easily find it.
1434 StmtResult GroDeclStmt =
1435 S.ActOnDeclStmt(S.ConvertDeclToDeclGroup(GroDecl), Loc, Loc);
1436 if (GroDeclStmt.isInvalid())
1437 return false;
1438
1439 this->ResultDecl = GroDeclStmt.get();
1440
1441 ExprResult declRef = S.BuildDeclRefExpr(GroDecl, GroType, VK_LValue, Loc);
1442 if (declRef.isInvalid())
1443 return false;
1444
1445 StmtResult ReturnStmt = S.BuildReturnStmt(Loc, declRef.get());
1446 if (ReturnStmt.isInvalid()) {
1447 noteMemberDeclaredHere(S, ReturnValue, Fn);
1448 return false;
1449 }
Eric Fiselier8ed97272018-02-01 23:47:54 +00001450 if (cast<clang::ReturnStmt>(ReturnStmt.get())->getNRVOCandidate() == GroDecl)
1451 GroDecl->setNRVOVariable(true);
Gor Nishanov6a470682017-05-22 20:22:23 +00001452
1453 this->ReturnStmt = ReturnStmt.get();
1454 return true;
1455}
1456
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001457// Create a static_cast\<T&&>(expr).
1458static Expr *castForMoving(Sema &S, Expr *E, QualType T = QualType()) {
1459 if (T.isNull())
1460 T = E->getType();
1461 QualType TargetType = S.BuildReferenceType(
1462 T, /*SpelledAsLValue*/ false, SourceLocation(), DeclarationName());
1463 SourceLocation ExprLoc = E->getLocStart();
1464 TypeSourceInfo *TargetLoc =
1465 S.Context.getTrivialTypeSourceInfo(TargetType, ExprLoc);
1466
1467 return S
1468 .BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
1469 SourceRange(ExprLoc, ExprLoc), E->getSourceRange())
1470 .get();
1471}
1472
Adrian Prantl9fc8faf2018-05-09 01:00:01 +00001473/// Build a variable declaration for move parameter.
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001474static VarDecl *buildVarDecl(Sema &S, SourceLocation Loc, QualType Type,
Eric Fiselierde7943b2017-06-03 00:22:18 +00001475 IdentifierInfo *II) {
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001476 TypeSourceInfo *TInfo = S.Context.getTrivialTypeSourceInfo(Type, Loc);
Brian Gesiak61f4ac92018-01-24 22:15:42 +00001477 VarDecl *Decl = VarDecl::Create(S.Context, S.CurContext, Loc, Loc, II, Type,
1478 TInfo, SC_None);
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001479 Decl->setImplicit();
1480 return Decl;
1481}
1482
Brian Gesiak61f4ac92018-01-24 22:15:42 +00001483// Build statements that move coroutine function parameters to the coroutine
1484// frame, and store them on the function scope info.
1485bool Sema::buildCoroutineParameterMoves(SourceLocation Loc) {
1486 assert(isa<FunctionDecl>(CurContext) && "not in a function scope");
1487 auto *FD = cast<FunctionDecl>(CurContext);
1488
1489 auto *ScopeInfo = getCurFunction();
1490 assert(ScopeInfo->CoroutineParameterMoves.empty() &&
1491 "Should not build parameter moves twice");
1492
1493 for (auto *PD : FD->parameters()) {
1494 if (PD->getType()->isDependentType())
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001495 continue;
1496
Brian Gesiak98606222018-02-15 20:37:22 +00001497 ExprResult PDRefExpr =
1498 BuildDeclRefExpr(PD, PD->getType().getNonReferenceType(),
1499 ExprValueKind::VK_LValue, Loc); // FIXME: scope?
1500 if (PDRefExpr.isInvalid())
1501 return false;
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001502
Brian Gesiak98606222018-02-15 20:37:22 +00001503 Expr *CExpr = nullptr;
1504 if (PD->getType()->getAsCXXRecordDecl() ||
1505 PD->getType()->isRValueReferenceType())
1506 CExpr = castForMoving(*this, PDRefExpr.get());
1507 else
1508 CExpr = PDRefExpr.get();
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001509
Brian Gesiak98606222018-02-15 20:37:22 +00001510 auto D = buildVarDecl(*this, Loc, PD->getType(), PD->getIdentifier());
1511 AddInitializerToDecl(D, CExpr, /*DirectInit=*/true);
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001512
Brian Gesiak98606222018-02-15 20:37:22 +00001513 // Convert decl to a statement.
1514 StmtResult Stmt = ActOnDeclStmt(ConvertDeclToDeclGroup(D), Loc, Loc);
1515 if (Stmt.isInvalid())
1516 return false;
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001517
Brian Gesiak98606222018-02-15 20:37:22 +00001518 ScopeInfo->CoroutineParameterMoves.insert(std::make_pair(PD, Stmt.get()));
Gor Nishanov33d5fd22017-05-24 20:09:14 +00001519 }
Gor Nishanovbbe1c072017-02-13 05:05:02 +00001520 return true;
Richard Smithcfd53b42015-10-22 06:13:50 +00001521}
Eric Fiselier20f25cb2017-03-06 23:38:15 +00001522
1523StmtResult Sema::BuildCoroutineBodyStmt(CoroutineBodyStmt::CtorArgs Args) {
1524 CoroutineBodyStmt *Res = CoroutineBodyStmt::Create(Context, Args);
1525 if (!Res)
1526 return StmtError();
1527 return Res;
1528}
Brian Gesiak3e65d9a2018-07-14 18:21:44 +00001529
1530ClassTemplateDecl *Sema::lookupCoroutineTraits(SourceLocation KwLoc,
1531 SourceLocation FuncLoc) {
1532 if (!StdCoroutineTraitsCache) {
1533 if (auto StdExp = lookupStdExperimentalNamespace()) {
1534 LookupResult Result(*this,
1535 &PP.getIdentifierTable().get("coroutine_traits"),
1536 FuncLoc, LookupOrdinaryName);
1537 if (!LookupQualifiedName(Result, StdExp)) {
1538 Diag(KwLoc, diag::err_implied_coroutine_type_not_found)
1539 << "std::experimental::coroutine_traits";
1540 return nullptr;
1541 }
1542 if (!(StdCoroutineTraitsCache =
1543 Result.getAsSingle<ClassTemplateDecl>())) {
1544 Result.suppressDiagnostics();
1545 NamedDecl *Found = *Result.begin();
1546 Diag(Found->getLocation(), diag::err_malformed_std_coroutine_traits);
1547 return nullptr;
1548 }
1549 }
1550 }
1551 return StdCoroutineTraitsCache;
1552}