123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233 |
- //===--- SemaCoroutines.cpp - Semantic Analysis for Coroutines ------------===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- //
- // This file implements semantic analysis for C++ Coroutines.
- //
- //===----------------------------------------------------------------------===//
- #include "CoroutineStmtBuilder.h"
- #include "clang/AST/Decl.h"
- #include "clang/AST/ExprCXX.h"
- #include "clang/AST/StmtCXX.h"
- #include "clang/Lex/Preprocessor.h"
- #include "clang/Sema/Initialization.h"
- #include "clang/Sema/Overload.h"
- #include "clang/Sema/SemaInternal.h"
- using namespace clang;
- using namespace sema;
- static bool lookupMember(Sema &S, const char *Name, CXXRecordDecl *RD,
- SourceLocation Loc) {
- DeclarationName DN = S.PP.getIdentifierInfo(Name);
- LookupResult LR(S, DN, Loc, Sema::LookupMemberName);
- // Suppress diagnostics when a private member is selected. The same warnings
- // will be produced again when building the call.
- LR.suppressDiagnostics();
- return S.LookupQualifiedName(LR, RD);
- }
- /// Look up the std::coroutine_traits<...>::promise_type for the given
- /// function type.
- static QualType lookupPromiseType(Sema &S, const FunctionProtoType *FnType,
- SourceLocation KwLoc,
- SourceLocation FuncLoc) {
- // FIXME: Cache std::coroutine_traits once we've found it.
- NamespaceDecl *StdExp = S.lookupStdExperimentalNamespace();
- if (!StdExp) {
- S.Diag(KwLoc, diag::err_implied_coroutine_type_not_found)
- << "std::experimental::coroutine_traits";
- return QualType();
- }
- LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_traits"),
- FuncLoc, Sema::LookupOrdinaryName);
- if (!S.LookupQualifiedName(Result, StdExp)) {
- S.Diag(KwLoc, diag::err_implied_coroutine_type_not_found)
- << "std::experimental::coroutine_traits";
- return QualType();
- }
- ClassTemplateDecl *CoroTraits = Result.getAsSingle<ClassTemplateDecl>();
- if (!CoroTraits) {
- Result.suppressDiagnostics();
- // We found something weird. Complain about the first thing we found.
- NamedDecl *Found = *Result.begin();
- S.Diag(Found->getLocation(), diag::err_malformed_std_coroutine_traits);
- return QualType();
- }
- // Form template argument list for coroutine_traits<R, P1, P2, ...>.
- TemplateArgumentListInfo Args(KwLoc, KwLoc);
- Args.addArgument(TemplateArgumentLoc(
- TemplateArgument(FnType->getReturnType()),
- S.Context.getTrivialTypeSourceInfo(FnType->getReturnType(), KwLoc)));
- // FIXME: If the function is a non-static member function, add the type
- // of the implicit object parameter before the formal parameters.
- for (QualType T : FnType->getParamTypes())
- Args.addArgument(TemplateArgumentLoc(
- TemplateArgument(T), S.Context.getTrivialTypeSourceInfo(T, KwLoc)));
- // Build the template-id.
- QualType CoroTrait =
- S.CheckTemplateIdType(TemplateName(CoroTraits), KwLoc, Args);
- if (CoroTrait.isNull())
- return QualType();
- if (S.RequireCompleteType(KwLoc, CoroTrait,
- diag::err_coroutine_type_missing_specialization))
- return QualType();
- auto *RD = CoroTrait->getAsCXXRecordDecl();
- assert(RD && "specialization of class template is not a class?");
- // Look up the ::promise_type member.
- LookupResult R(S, &S.PP.getIdentifierTable().get("promise_type"), KwLoc,
- Sema::LookupOrdinaryName);
- S.LookupQualifiedName(R, RD);
- auto *Promise = R.getAsSingle<TypeDecl>();
- if (!Promise) {
- S.Diag(FuncLoc,
- diag::err_implied_std_coroutine_traits_promise_type_not_found)
- << RD;
- return QualType();
- }
- // The promise type is required to be a class type.
- QualType PromiseType = S.Context.getTypeDeclType(Promise);
- auto buildElaboratedType = [&]() {
- auto *NNS = NestedNameSpecifier::Create(S.Context, nullptr, StdExp);
- NNS = NestedNameSpecifier::Create(S.Context, NNS, false,
- CoroTrait.getTypePtr());
- return S.Context.getElaboratedType(ETK_None, NNS, PromiseType);
- };
- if (!PromiseType->getAsCXXRecordDecl()) {
- S.Diag(FuncLoc,
- diag::err_implied_std_coroutine_traits_promise_type_not_class)
- << buildElaboratedType();
- return QualType();
- }
- if (S.RequireCompleteType(FuncLoc, buildElaboratedType(),
- diag::err_coroutine_promise_type_incomplete))
- return QualType();
- return PromiseType;
- }
- /// Look up the std::experimental::coroutine_handle<PromiseType>.
- static QualType lookupCoroutineHandleType(Sema &S, QualType PromiseType,
- SourceLocation Loc) {
- if (PromiseType.isNull())
- return QualType();
- NamespaceDecl *StdExp = S.lookupStdExperimentalNamespace();
- assert(StdExp && "Should already be diagnosed");
- LookupResult Result(S, &S.PP.getIdentifierTable().get("coroutine_handle"),
- Loc, Sema::LookupOrdinaryName);
- if (!S.LookupQualifiedName(Result, StdExp)) {
- S.Diag(Loc, diag::err_implied_coroutine_type_not_found)
- << "std::experimental::coroutine_handle";
- return QualType();
- }
- ClassTemplateDecl *CoroHandle = Result.getAsSingle<ClassTemplateDecl>();
- if (!CoroHandle) {
- Result.suppressDiagnostics();
- // We found something weird. Complain about the first thing we found.
- NamedDecl *Found = *Result.begin();
- S.Diag(Found->getLocation(), diag::err_malformed_std_coroutine_handle);
- return QualType();
- }
- // Form template argument list for coroutine_handle<Promise>.
- TemplateArgumentListInfo Args(Loc, Loc);
- Args.addArgument(TemplateArgumentLoc(
- TemplateArgument(PromiseType),
- S.Context.getTrivialTypeSourceInfo(PromiseType, Loc)));
- // Build the template-id.
- QualType CoroHandleType =
- S.CheckTemplateIdType(TemplateName(CoroHandle), Loc, Args);
- if (CoroHandleType.isNull())
- return QualType();
- if (S.RequireCompleteType(Loc, CoroHandleType,
- diag::err_coroutine_type_missing_specialization))
- return QualType();
- return CoroHandleType;
- }
- static bool isValidCoroutineContext(Sema &S, SourceLocation Loc,
- StringRef Keyword) {
- // 'co_await' and 'co_yield' are not permitted in unevaluated operands.
- if (S.isUnevaluatedContext()) {
- S.Diag(Loc, diag::err_coroutine_unevaluated_context) << Keyword;
- return false;
- }
- // Any other usage must be within a function.
- auto *FD = dyn_cast<FunctionDecl>(S.CurContext);
- if (!FD) {
- S.Diag(Loc, isa<ObjCMethodDecl>(S.CurContext)
- ? diag::err_coroutine_objc_method
- : diag::err_coroutine_outside_function) << Keyword;
- return false;
- }
- // An enumeration for mapping the diagnostic type to the correct diagnostic
- // selection index.
- enum InvalidFuncDiag {
- DiagCtor = 0,
- DiagDtor,
- DiagCopyAssign,
- DiagMoveAssign,
- DiagMain,
- DiagConstexpr,
- DiagAutoRet,
- DiagVarargs,
- };
- bool Diagnosed = false;
- auto DiagInvalid = [&](InvalidFuncDiag ID) {
- S.Diag(Loc, diag::err_coroutine_invalid_func_context) << ID << Keyword;
- Diagnosed = true;
- return false;
- };
- // Diagnose when a constructor, destructor, copy/move assignment operator,
- // or the function 'main' are declared as a coroutine.
- auto *MD = dyn_cast<CXXMethodDecl>(FD);
- if (MD && isa<CXXConstructorDecl>(MD))
- return DiagInvalid(DiagCtor);
- else if (MD && isa<CXXDestructorDecl>(MD))
- return DiagInvalid(DiagDtor);
- else if (MD && MD->isCopyAssignmentOperator())
- return DiagInvalid(DiagCopyAssign);
- else if (MD && MD->isMoveAssignmentOperator())
- return DiagInvalid(DiagMoveAssign);
- else if (FD->isMain())
- return DiagInvalid(DiagMain);
- // Emit a diagnostics for each of the following conditions which is not met.
- if (FD->isConstexpr())
- DiagInvalid(DiagConstexpr);
- if (FD->getReturnType()->isUndeducedType())
- DiagInvalid(DiagAutoRet);
- if (FD->isVariadic())
- DiagInvalid(DiagVarargs);
- return !Diagnosed;
- }
- static ExprResult buildOperatorCoawaitLookupExpr(Sema &SemaRef, Scope *S,
- SourceLocation Loc) {
- DeclarationName OpName =
- SemaRef.Context.DeclarationNames.getCXXOperatorName(OO_Coawait);
- LookupResult Operators(SemaRef, OpName, SourceLocation(),
- Sema::LookupOperatorName);
- SemaRef.LookupName(Operators, S);
- assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous");
- const auto &Functions = Operators.asUnresolvedSet();
- bool IsOverloaded =
- Functions.size() > 1 ||
- (Functions.size() == 1 && isa<FunctionTemplateDecl>(*Functions.begin()));
- Expr *CoawaitOp = UnresolvedLookupExpr::Create(
- SemaRef.Context, /*NamingClass*/ nullptr, NestedNameSpecifierLoc(),
- DeclarationNameInfo(OpName, Loc), /*RequiresADL*/ true, IsOverloaded,
- Functions.begin(), Functions.end());
- assert(CoawaitOp);
- return CoawaitOp;
- }
- /// Build a call to 'operator co_await' if there is a suitable operator for
- /// the given expression.
- static ExprResult buildOperatorCoawaitCall(Sema &SemaRef, SourceLocation Loc,
- Expr *E,
- UnresolvedLookupExpr *Lookup) {
- UnresolvedSet<16> Functions;
- Functions.append(Lookup->decls_begin(), Lookup->decls_end());
- return SemaRef.CreateOverloadedUnaryOp(Loc, UO_Coawait, Functions, E);
- }
- static ExprResult buildOperatorCoawaitCall(Sema &SemaRef, Scope *S,
- SourceLocation Loc, Expr *E) {
- ExprResult R = buildOperatorCoawaitLookupExpr(SemaRef, S, Loc);
- if (R.isInvalid())
- return ExprError();
- return buildOperatorCoawaitCall(SemaRef, Loc, E,
- cast<UnresolvedLookupExpr>(R.get()));
- }
- static Expr *buildBuiltinCall(Sema &S, SourceLocation Loc, Builtin::ID Id,
- MultiExprArg CallArgs) {
- StringRef Name = S.Context.BuiltinInfo.getName(Id);
- LookupResult R(S, &S.Context.Idents.get(Name), Loc, Sema::LookupOrdinaryName);
- S.LookupName(R, S.TUScope, /*AllowBuiltinCreation=*/true);
- auto *BuiltInDecl = R.getAsSingle<FunctionDecl>();
- assert(BuiltInDecl && "failed to find builtin declaration");
- ExprResult DeclRef =
- S.BuildDeclRefExpr(BuiltInDecl, BuiltInDecl->getType(), VK_LValue, Loc);
- assert(DeclRef.isUsable() && "Builtin reference cannot fail");
- ExprResult Call =
- S.ActOnCallExpr(/*Scope=*/nullptr, DeclRef.get(), Loc, CallArgs, Loc);
- assert(!Call.isInvalid() && "Call to builtin cannot fail!");
- return Call.get();
- }
- static ExprResult buildCoroutineHandle(Sema &S, QualType PromiseType,
- SourceLocation Loc) {
- QualType CoroHandleType = lookupCoroutineHandleType(S, PromiseType, Loc);
- if (CoroHandleType.isNull())
- return ExprError();
- DeclContext *LookupCtx = S.computeDeclContext(CoroHandleType);
- LookupResult Found(S, &S.PP.getIdentifierTable().get("from_address"), Loc,
- Sema::LookupOrdinaryName);
- if (!S.LookupQualifiedName(Found, LookupCtx)) {
- S.Diag(Loc, diag::err_coroutine_handle_missing_member)
- << "from_address";
- return ExprError();
- }
- Expr *FramePtr =
- buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_frame, {});
- CXXScopeSpec SS;
- ExprResult FromAddr =
- S.BuildDeclarationNameExpr(SS, Found, /*NeedsADL=*/false);
- if (FromAddr.isInvalid())
- return ExprError();
- return S.ActOnCallExpr(nullptr, FromAddr.get(), Loc, FramePtr, Loc);
- }
- struct ReadySuspendResumeResult {
- Expr *Results[3];
- OpaqueValueExpr *OpaqueValue;
- bool IsInvalid;
- };
- static ExprResult buildMemberCall(Sema &S, Expr *Base, SourceLocation Loc,
- StringRef Name, MultiExprArg Args) {
- DeclarationNameInfo NameInfo(&S.PP.getIdentifierTable().get(Name), Loc);
- // FIXME: Fix BuildMemberReferenceExpr to take a const CXXScopeSpec&.
- CXXScopeSpec SS;
- ExprResult Result = S.BuildMemberReferenceExpr(
- Base, Base->getType(), Loc, /*IsPtr=*/false, SS,
- SourceLocation(), nullptr, NameInfo, /*TemplateArgs=*/nullptr,
- /*Scope=*/nullptr);
- if (Result.isInvalid())
- return ExprError();
- return S.ActOnCallExpr(nullptr, Result.get(), Loc, Args, Loc, nullptr);
- }
- /// Build calls to await_ready, await_suspend, and await_resume for a co_await
- /// expression.
- static ReadySuspendResumeResult buildCoawaitCalls(Sema &S, VarDecl *CoroPromise,
- SourceLocation Loc, Expr *E) {
- OpaqueValueExpr *Operand = new (S.Context)
- OpaqueValueExpr(Loc, E->getType(), VK_LValue, E->getObjectKind(), E);
- // Assume invalid until we see otherwise.
- ReadySuspendResumeResult Calls = {{}, Operand, /*IsInvalid=*/true};
- ExprResult CoroHandleRes = buildCoroutineHandle(S, CoroPromise->getType(), Loc);
- if (CoroHandleRes.isInvalid())
- return Calls;
- Expr *CoroHandle = CoroHandleRes.get();
- const StringRef Funcs[] = {"await_ready", "await_suspend", "await_resume"};
- MultiExprArg Args[] = {None, CoroHandle, None};
- for (size_t I = 0, N = llvm::array_lengthof(Funcs); I != N; ++I) {
- ExprResult Result = buildMemberCall(S, Operand, Loc, Funcs[I], Args[I]);
- if (Result.isInvalid())
- return Calls;
- Calls.Results[I] = Result.get();
- }
- Calls.IsInvalid = false;
- return Calls;
- }
- static ExprResult buildPromiseCall(Sema &S, VarDecl *Promise,
- SourceLocation Loc, StringRef Name,
- MultiExprArg Args) {
- // Form a reference to the promise.
- ExprResult PromiseRef = S.BuildDeclRefExpr(
- Promise, Promise->getType().getNonReferenceType(), VK_LValue, Loc);
- if (PromiseRef.isInvalid())
- return ExprError();
- return buildMemberCall(S, PromiseRef.get(), Loc, Name, Args);
- }
- VarDecl *Sema::buildCoroutinePromise(SourceLocation Loc) {
- assert(isa<FunctionDecl>(CurContext) && "not in a function scope");
- auto *FD = cast<FunctionDecl>(CurContext);
- QualType T =
- FD->getType()->isDependentType()
- ? Context.DependentTy
- : lookupPromiseType(*this, FD->getType()->castAs<FunctionProtoType>(),
- Loc, FD->getLocation());
- if (T.isNull())
- return nullptr;
- auto *VD = VarDecl::Create(Context, FD, FD->getLocation(), FD->getLocation(),
- &PP.getIdentifierTable().get("__promise"), T,
- Context.getTrivialTypeSourceInfo(T, Loc), SC_None);
- CheckVariableDeclarationType(VD);
- if (VD->isInvalidDecl())
- return nullptr;
- ActOnUninitializedDecl(VD);
- assert(!VD->isInvalidDecl());
- return VD;
- }
- /// Check that this is a context in which a coroutine suspension can appear.
- static FunctionScopeInfo *checkCoroutineContext(Sema &S, SourceLocation Loc,
- StringRef Keyword,
- bool IsImplicit = false) {
- if (!isValidCoroutineContext(S, Loc, Keyword))
- return nullptr;
- assert(isa<FunctionDecl>(S.CurContext) && "not in a function scope");
- auto *ScopeInfo = S.getCurFunction();
- assert(ScopeInfo && "missing function scope for function");
- if (ScopeInfo->FirstCoroutineStmtLoc.isInvalid() && !IsImplicit)
- ScopeInfo->setFirstCoroutineStmt(Loc, Keyword);
- if (ScopeInfo->CoroutinePromise)
- return ScopeInfo;
- ScopeInfo->CoroutinePromise = S.buildCoroutinePromise(Loc);
- if (!ScopeInfo->CoroutinePromise)
- return nullptr;
- return ScopeInfo;
- }
- static bool actOnCoroutineBodyStart(Sema &S, Scope *SC, SourceLocation KWLoc,
- StringRef Keyword) {
- if (!checkCoroutineContext(S, KWLoc, Keyword))
- return false;
- auto *ScopeInfo = S.getCurFunction();
- assert(ScopeInfo->CoroutinePromise);
- // If we have existing coroutine statements then we have already built
- // the initial and final suspend points.
- if (!ScopeInfo->NeedsCoroutineSuspends)
- return true;
- ScopeInfo->setNeedsCoroutineSuspends(false);
- auto *Fn = cast<FunctionDecl>(S.CurContext);
- SourceLocation Loc = Fn->getLocation();
- // Build the initial suspend point
- auto buildSuspends = [&](StringRef Name) mutable -> StmtResult {
- ExprResult Suspend =
- buildPromiseCall(S, ScopeInfo->CoroutinePromise, Loc, Name, None);
- if (Suspend.isInvalid())
- return StmtError();
- Suspend = buildOperatorCoawaitCall(S, SC, Loc, Suspend.get());
- if (Suspend.isInvalid())
- return StmtError();
- Suspend = S.BuildResolvedCoawaitExpr(Loc, Suspend.get(),
- /*IsImplicit*/ true);
- Suspend = S.ActOnFinishFullExpr(Suspend.get());
- if (Suspend.isInvalid()) {
- S.Diag(Loc, diag::note_coroutine_promise_suspend_implicitly_required)
- << ((Name == "initial_suspend") ? 0 : 1);
- S.Diag(KWLoc, diag::note_declared_coroutine_here) << Keyword;
- return StmtError();
- }
- return cast<Stmt>(Suspend.get());
- };
- StmtResult InitSuspend = buildSuspends("initial_suspend");
- if (InitSuspend.isInvalid())
- return true;
- StmtResult FinalSuspend = buildSuspends("final_suspend");
- if (FinalSuspend.isInvalid())
- return true;
- ScopeInfo->setCoroutineSuspends(InitSuspend.get(), FinalSuspend.get());
- return true;
- }
- ExprResult Sema::ActOnCoawaitExpr(Scope *S, SourceLocation Loc, Expr *E) {
- if (!actOnCoroutineBodyStart(*this, S, Loc, "co_await")) {
- CorrectDelayedTyposInExpr(E);
- return ExprError();
- }
- if (E->getType()->isPlaceholderType()) {
- ExprResult R = CheckPlaceholderExpr(E);
- if (R.isInvalid()) return ExprError();
- E = R.get();
- }
- ExprResult Lookup = buildOperatorCoawaitLookupExpr(*this, S, Loc);
- if (Lookup.isInvalid())
- return ExprError();
- return BuildUnresolvedCoawaitExpr(Loc, E,
- cast<UnresolvedLookupExpr>(Lookup.get()));
- }
- ExprResult Sema::BuildUnresolvedCoawaitExpr(SourceLocation Loc, Expr *E,
- UnresolvedLookupExpr *Lookup) {
- auto *FSI = checkCoroutineContext(*this, Loc, "co_await");
- if (!FSI)
- return ExprError();
- if (E->getType()->isPlaceholderType()) {
- ExprResult R = CheckPlaceholderExpr(E);
- if (R.isInvalid())
- return ExprError();
- E = R.get();
- }
- auto *Promise = FSI->CoroutinePromise;
- if (Promise->getType()->isDependentType()) {
- Expr *Res =
- new (Context) DependentCoawaitExpr(Loc, Context.DependentTy, E, Lookup);
- return Res;
- }
- auto *RD = Promise->getType()->getAsCXXRecordDecl();
- if (lookupMember(*this, "await_transform", RD, Loc)) {
- ExprResult R = buildPromiseCall(*this, Promise, Loc, "await_transform", E);
- if (R.isInvalid()) {
- Diag(Loc,
- diag::note_coroutine_promise_implicit_await_transform_required_here)
- << E->getSourceRange();
- return ExprError();
- }
- E = R.get();
- }
- ExprResult Awaitable = buildOperatorCoawaitCall(*this, Loc, E, Lookup);
- if (Awaitable.isInvalid())
- return ExprError();
- return BuildResolvedCoawaitExpr(Loc, Awaitable.get());
- }
- ExprResult Sema::BuildResolvedCoawaitExpr(SourceLocation Loc, Expr *E,
- bool IsImplicit) {
- auto *Coroutine = checkCoroutineContext(*this, Loc, "co_await", IsImplicit);
- if (!Coroutine)
- return ExprError();
- if (E->getType()->isPlaceholderType()) {
- ExprResult R = CheckPlaceholderExpr(E);
- if (R.isInvalid()) return ExprError();
- E = R.get();
- }
- if (E->getType()->isDependentType()) {
- Expr *Res = new (Context)
- CoawaitExpr(Loc, Context.DependentTy, E, IsImplicit);
- return Res;
- }
- // If the expression is a temporary, materialize it as an lvalue so that we
- // can use it multiple times.
- if (E->getValueKind() == VK_RValue)
- E = CreateMaterializeTemporaryExpr(E->getType(), E, true);
- // Build the await_ready, await_suspend, await_resume calls.
- ReadySuspendResumeResult RSS =
- buildCoawaitCalls(*this, Coroutine->CoroutinePromise, Loc, E);
- if (RSS.IsInvalid)
- return ExprError();
- Expr *Res =
- new (Context) CoawaitExpr(Loc, E, RSS.Results[0], RSS.Results[1],
- RSS.Results[2], RSS.OpaqueValue, IsImplicit);
- return Res;
- }
- ExprResult Sema::ActOnCoyieldExpr(Scope *S, SourceLocation Loc, Expr *E) {
- if (!actOnCoroutineBodyStart(*this, S, Loc, "co_yield")) {
- CorrectDelayedTyposInExpr(E);
- return ExprError();
- }
- // Build yield_value call.
- ExprResult Awaitable = buildPromiseCall(
- *this, getCurFunction()->CoroutinePromise, Loc, "yield_value", E);
- if (Awaitable.isInvalid())
- return ExprError();
- // Build 'operator co_await' call.
- Awaitable = buildOperatorCoawaitCall(*this, S, Loc, Awaitable.get());
- if (Awaitable.isInvalid())
- return ExprError();
- return BuildCoyieldExpr(Loc, Awaitable.get());
- }
- ExprResult Sema::BuildCoyieldExpr(SourceLocation Loc, Expr *E) {
- auto *Coroutine = checkCoroutineContext(*this, Loc, "co_yield");
- if (!Coroutine)
- return ExprError();
- if (E->getType()->isPlaceholderType()) {
- ExprResult R = CheckPlaceholderExpr(E);
- if (R.isInvalid()) return ExprError();
- E = R.get();
- }
- if (E->getType()->isDependentType()) {
- Expr *Res = new (Context) CoyieldExpr(Loc, Context.DependentTy, E);
- return Res;
- }
- // If the expression is a temporary, materialize it as an lvalue so that we
- // can use it multiple times.
- if (E->getValueKind() == VK_RValue)
- E = CreateMaterializeTemporaryExpr(E->getType(), E, true);
- // Build the await_ready, await_suspend, await_resume calls.
- ReadySuspendResumeResult RSS =
- buildCoawaitCalls(*this, Coroutine->CoroutinePromise, Loc, E);
- if (RSS.IsInvalid)
- return ExprError();
- Expr *Res = new (Context) CoyieldExpr(Loc, E, RSS.Results[0], RSS.Results[1],
- RSS.Results[2], RSS.OpaqueValue);
- return Res;
- }
- StmtResult Sema::ActOnCoreturnStmt(Scope *S, SourceLocation Loc, Expr *E) {
- if (!actOnCoroutineBodyStart(*this, S, Loc, "co_return")) {
- CorrectDelayedTyposInExpr(E);
- return StmtError();
- }
- return BuildCoreturnStmt(Loc, E);
- }
- StmtResult Sema::BuildCoreturnStmt(SourceLocation Loc, Expr *E,
- bool IsImplicit) {
- auto *FSI = checkCoroutineContext(*this, Loc, "co_return", IsImplicit);
- if (!FSI)
- return StmtError();
- if (E && E->getType()->isPlaceholderType() &&
- !E->getType()->isSpecificPlaceholderType(BuiltinType::Overload)) {
- ExprResult R = CheckPlaceholderExpr(E);
- if (R.isInvalid()) return StmtError();
- E = R.get();
- }
- // FIXME: If the operand is a reference to a variable that's about to go out
- // of scope, we should treat the operand as an xvalue for this overload
- // resolution.
- VarDecl *Promise = FSI->CoroutinePromise;
- ExprResult PC;
- if (E && (isa<InitListExpr>(E) || !E->getType()->isVoidType())) {
- PC = buildPromiseCall(*this, Promise, Loc, "return_value", E);
- } else {
- E = MakeFullDiscardedValueExpr(E).get();
- PC = buildPromiseCall(*this, Promise, Loc, "return_void", None);
- }
- if (PC.isInvalid())
- return StmtError();
- Expr *PCE = ActOnFinishFullExpr(PC.get()).get();
- Stmt *Res = new (Context) CoreturnStmt(Loc, E, PCE, IsImplicit);
- return Res;
- }
- /// Look up the std::nothrow object.
- static Expr *buildStdNoThrowDeclRef(Sema &S, SourceLocation Loc) {
- NamespaceDecl *Std = S.getStdNamespace();
- assert(Std && "Should already be diagnosed");
- LookupResult Result(S, &S.PP.getIdentifierTable().get("nothrow"), Loc,
- Sema::LookupOrdinaryName);
- if (!S.LookupQualifiedName(Result, Std)) {
- // FIXME: <experimental/coroutine> should have been included already.
- // If we require it to include <new> then this diagnostic is no longer
- // needed.
- S.Diag(Loc, diag::err_implicit_coroutine_std_nothrow_type_not_found);
- return nullptr;
- }
- // FIXME: Mark the variable as ODR used. This currently does not work
- // likely due to the scope at in which this function is called.
- auto *VD = Result.getAsSingle<VarDecl>();
- if (!VD) {
- Result.suppressDiagnostics();
- // We found something weird. Complain about the first thing we found.
- NamedDecl *Found = *Result.begin();
- S.Diag(Found->getLocation(), diag::err_malformed_std_nothrow);
- return nullptr;
- }
- ExprResult DR = S.BuildDeclRefExpr(VD, VD->getType(), VK_LValue, Loc);
- if (DR.isInvalid())
- return nullptr;
- return DR.get();
- }
- // Find an appropriate delete for the promise.
- static FunctionDecl *findDeleteForPromise(Sema &S, SourceLocation Loc,
- QualType PromiseType) {
- FunctionDecl *OperatorDelete = nullptr;
- DeclarationName DeleteName =
- S.Context.DeclarationNames.getCXXOperatorName(OO_Delete);
- auto *PointeeRD = PromiseType->getAsCXXRecordDecl();
- assert(PointeeRD && "PromiseType must be a CxxRecordDecl type");
- if (S.FindDeallocationFunction(Loc, PointeeRD, DeleteName, OperatorDelete))
- return nullptr;
- if (!OperatorDelete) {
- // Look for a global declaration.
- const bool CanProvideSize = S.isCompleteType(Loc, PromiseType);
- const bool Overaligned = false;
- OperatorDelete = S.FindUsualDeallocationFunction(Loc, CanProvideSize,
- Overaligned, DeleteName);
- }
- S.MarkFunctionReferenced(Loc, OperatorDelete);
- return OperatorDelete;
- }
- void Sema::CheckCompletedCoroutineBody(FunctionDecl *FD, Stmt *&Body) {
- FunctionScopeInfo *Fn = getCurFunction();
- assert(Fn && Fn->CoroutinePromise && "not a coroutine");
- if (!Body) {
- assert(FD->isInvalidDecl() &&
- "a null body is only allowed for invalid declarations");
- return;
- }
- if (isa<CoroutineBodyStmt>(Body)) {
- // Nothing todo. the body is already a transformed coroutine body statement.
- return;
- }
- // Coroutines [stmt.return]p1:
- // A return statement shall not appear in a coroutine.
- if (Fn->FirstReturnLoc.isValid()) {
- assert(Fn->FirstCoroutineStmtLoc.isValid() &&
- "first coroutine location not set");
- Diag(Fn->FirstReturnLoc, diag::err_return_in_coroutine);
- Diag(Fn->FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
- << Fn->getFirstCoroutineStmtKeyword();
- }
- CoroutineStmtBuilder Builder(*this, *FD, *Fn, Body);
- if (Builder.isInvalid() || !Builder.buildStatements())
- return FD->setInvalidDecl();
- // Build body for the coroutine wrapper statement.
- Body = CoroutineBodyStmt::Create(Context, Builder);
- }
- CoroutineStmtBuilder::CoroutineStmtBuilder(Sema &S, FunctionDecl &FD,
- sema::FunctionScopeInfo &Fn,
- Stmt *Body)
- : S(S), FD(FD), Fn(Fn), Loc(FD.getLocation()),
- IsPromiseDependentType(
- !Fn.CoroutinePromise ||
- Fn.CoroutinePromise->getType()->isDependentType()) {
- this->Body = Body;
- if (!IsPromiseDependentType) {
- PromiseRecordDecl = Fn.CoroutinePromise->getType()->getAsCXXRecordDecl();
- assert(PromiseRecordDecl && "Type should have already been checked");
- }
- this->IsValid = makePromiseStmt() && makeInitialAndFinalSuspend();
- }
- bool CoroutineStmtBuilder::buildStatements() {
- assert(this->IsValid && "coroutine already invalid");
- this->IsValid = makeReturnObject() && makeParamMoves();
- if (this->IsValid && !IsPromiseDependentType)
- buildDependentStatements();
- return this->IsValid;
- }
- bool CoroutineStmtBuilder::buildDependentStatements() {
- assert(this->IsValid && "coroutine already invalid");
- assert(!this->IsPromiseDependentType &&
- "coroutine cannot have a dependent promise type");
- this->IsValid = makeOnException() && makeOnFallthrough() &&
- makeGroDeclAndReturnStmt() && makeReturnOnAllocFailure() &&
- makeNewAndDeleteExpr();
- return this->IsValid;
- }
- bool CoroutineStmtBuilder::makePromiseStmt() {
- // Form a declaration statement for the promise declaration, so that AST
- // visitors can more easily find it.
- StmtResult PromiseStmt =
- S.ActOnDeclStmt(S.ConvertDeclToDeclGroup(Fn.CoroutinePromise), Loc, Loc);
- if (PromiseStmt.isInvalid())
- return false;
- this->Promise = PromiseStmt.get();
- return true;
- }
- bool CoroutineStmtBuilder::makeInitialAndFinalSuspend() {
- if (Fn.hasInvalidCoroutineSuspends())
- return false;
- this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first);
- this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second);
- return true;
- }
- static bool diagReturnOnAllocFailure(Sema &S, Expr *E,
- CXXRecordDecl *PromiseRecordDecl,
- FunctionScopeInfo &Fn) {
- auto Loc = E->getExprLoc();
- if (auto *DeclRef = dyn_cast_or_null<DeclRefExpr>(E)) {
- auto *Decl = DeclRef->getDecl();
- if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(Decl)) {
- if (Method->isStatic())
- return true;
- else
- Loc = Decl->getLocation();
- }
- }
- S.Diag(
- Loc,
- diag::err_coroutine_promise_get_return_object_on_allocation_failure)
- << PromiseRecordDecl;
- S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
- << Fn.getFirstCoroutineStmtKeyword();
- return false;
- }
- bool CoroutineStmtBuilder::makeReturnOnAllocFailure() {
- assert(!IsPromiseDependentType &&
- "cannot make statement while the promise type is dependent");
- // [dcl.fct.def.coroutine]/8
- // The unqualified-id get_return_object_on_allocation_failure is looked up in
- // the scope of class P by class member access lookup (3.4.5). ...
- // If an allocation function returns nullptr, ... the coroutine return value
- // is obtained by a call to ... get_return_object_on_allocation_failure().
- DeclarationName DN =
- S.PP.getIdentifierInfo("get_return_object_on_allocation_failure");
- LookupResult Found(S, DN, Loc, Sema::LookupMemberName);
- if (!S.LookupQualifiedName(Found, PromiseRecordDecl))
- return true;
- CXXScopeSpec SS;
- ExprResult DeclNameExpr =
- S.BuildDeclarationNameExpr(SS, Found, /*NeedsADL=*/false);
- if (DeclNameExpr.isInvalid())
- return false;
- if (!diagReturnOnAllocFailure(S, DeclNameExpr.get(), PromiseRecordDecl, Fn))
- return false;
- ExprResult ReturnObjectOnAllocationFailure =
- S.ActOnCallExpr(nullptr, DeclNameExpr.get(), Loc, {}, Loc);
- if (ReturnObjectOnAllocationFailure.isInvalid())
- return false;
- StmtResult ReturnStmt =
- S.BuildReturnStmt(Loc, ReturnObjectOnAllocationFailure.get());
- if (ReturnStmt.isInvalid()) {
- S.Diag(Found.getFoundDecl()->getLocation(),
- diag::note_promise_member_declared_here)
- << DN.getAsString();
- S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
- << Fn.getFirstCoroutineStmtKeyword();
- return false;
- }
- this->ReturnStmtOnAllocFailure = ReturnStmt.get();
- return true;
- }
- bool CoroutineStmtBuilder::makeNewAndDeleteExpr() {
- // Form and check allocation and deallocation calls.
- assert(!IsPromiseDependentType &&
- "cannot make statement while the promise type is dependent");
- QualType PromiseType = Fn.CoroutinePromise->getType();
- if (S.RequireCompleteType(Loc, PromiseType, diag::err_incomplete_type))
- return false;
- const bool RequiresNoThrowAlloc = ReturnStmtOnAllocFailure != nullptr;
- // FIXME: Add support for stateful allocators.
- FunctionDecl *OperatorNew = nullptr;
- FunctionDecl *OperatorDelete = nullptr;
- FunctionDecl *UnusedResult = nullptr;
- bool PassAlignment = false;
- SmallVector<Expr *, 1> PlacementArgs;
- S.FindAllocationFunctions(Loc, SourceRange(),
- /*UseGlobal*/ false, PromiseType,
- /*isArray*/ false, PassAlignment, PlacementArgs,
- OperatorNew, UnusedResult);
- bool IsGlobalOverload =
- OperatorNew && !isa<CXXRecordDecl>(OperatorNew->getDeclContext());
- // If we didn't find a class-local new declaration and non-throwing new
- // was is required then we need to lookup the non-throwing global operator
- // instead.
- if (RequiresNoThrowAlloc && (!OperatorNew || IsGlobalOverload)) {
- auto *StdNoThrow = buildStdNoThrowDeclRef(S, Loc);
- if (!StdNoThrow)
- return false;
- PlacementArgs = {StdNoThrow};
- OperatorNew = nullptr;
- S.FindAllocationFunctions(Loc, SourceRange(),
- /*UseGlobal*/ true, PromiseType,
- /*isArray*/ false, PassAlignment, PlacementArgs,
- OperatorNew, UnusedResult);
- }
- assert(OperatorNew && "expected definition of operator new to be found");
- if (RequiresNoThrowAlloc) {
- const auto *FT = OperatorNew->getType()->getAs<FunctionProtoType>();
- if (!FT->isNothrow(S.Context, /*ResultIfDependent*/ false)) {
- S.Diag(OperatorNew->getLocation(),
- diag::err_coroutine_promise_new_requires_nothrow)
- << OperatorNew;
- S.Diag(Loc, diag::note_coroutine_promise_call_implicitly_required)
- << OperatorNew;
- return false;
- }
- }
- if ((OperatorDelete = findDeleteForPromise(S, Loc, PromiseType)) == nullptr)
- return false;
- Expr *FramePtr =
- buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_frame, {});
- Expr *FrameSize =
- buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_size, {});
- // Make new call.
- ExprResult NewRef =
- S.BuildDeclRefExpr(OperatorNew, OperatorNew->getType(), VK_LValue, Loc);
- if (NewRef.isInvalid())
- return false;
- SmallVector<Expr *, 2> NewArgs(1, FrameSize);
- for (auto Arg : PlacementArgs)
- NewArgs.push_back(Arg);
- ExprResult NewExpr =
- S.ActOnCallExpr(S.getCurScope(), NewRef.get(), Loc, NewArgs, Loc);
- NewExpr = S.ActOnFinishFullExpr(NewExpr.get());
- if (NewExpr.isInvalid())
- return false;
- // Make delete call.
- QualType OpDeleteQualType = OperatorDelete->getType();
- ExprResult DeleteRef =
- S.BuildDeclRefExpr(OperatorDelete, OpDeleteQualType, VK_LValue, Loc);
- if (DeleteRef.isInvalid())
- return false;
- Expr *CoroFree =
- buildBuiltinCall(S, Loc, Builtin::BI__builtin_coro_free, {FramePtr});
- SmallVector<Expr *, 2> DeleteArgs{CoroFree};
- // Check if we need to pass the size.
- const auto *OpDeleteType =
- OpDeleteQualType.getTypePtr()->getAs<FunctionProtoType>();
- if (OpDeleteType->getNumParams() > 1)
- DeleteArgs.push_back(FrameSize);
- ExprResult DeleteExpr =
- S.ActOnCallExpr(S.getCurScope(), DeleteRef.get(), Loc, DeleteArgs, Loc);
- DeleteExpr = S.ActOnFinishFullExpr(DeleteExpr.get());
- if (DeleteExpr.isInvalid())
- return false;
- this->Allocate = NewExpr.get();
- this->Deallocate = DeleteExpr.get();
- return true;
- }
- bool CoroutineStmtBuilder::makeOnFallthrough() {
- assert(!IsPromiseDependentType &&
- "cannot make statement while the promise type is dependent");
- // [dcl.fct.def.coroutine]/4
- // The unqualified-ids 'return_void' and 'return_value' are looked up in
- // the scope of class P. If both are found, the program is ill-formed.
- const bool HasRVoid = lookupMember(S, "return_void", PromiseRecordDecl, Loc);
- const bool HasRValue = lookupMember(S, "return_value", PromiseRecordDecl, Loc);
- StmtResult Fallthrough;
- if (HasRVoid && HasRValue) {
- // FIXME Improve this diagnostic
- S.Diag(FD.getLocation(), diag::err_coroutine_promise_return_ill_formed)
- << PromiseRecordDecl;
- return false;
- } else if (HasRVoid) {
- // If the unqualified-id return_void is found, flowing off the end of a
- // coroutine is equivalent to a co_return with no operand. Otherwise,
- // flowing off the end of a coroutine results in undefined behavior.
- Fallthrough = S.BuildCoreturnStmt(FD.getLocation(), nullptr,
- /*IsImplicit*/false);
- Fallthrough = S.ActOnFinishFullStmt(Fallthrough.get());
- if (Fallthrough.isInvalid())
- return false;
- }
- this->OnFallthrough = Fallthrough.get();
- return true;
- }
- bool CoroutineStmtBuilder::makeOnException() {
- // Try to form 'p.unhandled_exception();'
- assert(!IsPromiseDependentType &&
- "cannot make statement while the promise type is dependent");
- const bool RequireUnhandledException = S.getLangOpts().CXXExceptions;
- if (!lookupMember(S, "unhandled_exception", PromiseRecordDecl, Loc)) {
- auto DiagID =
- RequireUnhandledException
- ? diag::err_coroutine_promise_unhandled_exception_required
- : diag::
- warn_coroutine_promise_unhandled_exception_required_with_exceptions;
- S.Diag(Loc, DiagID) << PromiseRecordDecl;
- S.Diag(PromiseRecordDecl->getLocation(), diag::note_defined_here)
- << PromiseRecordDecl;
- return !RequireUnhandledException;
- }
- // If exceptions are disabled, don't try to build OnException.
- if (!S.getLangOpts().CXXExceptions)
- return true;
- ExprResult UnhandledException = buildPromiseCall(S, Fn.CoroutinePromise, Loc,
- "unhandled_exception", None);
- UnhandledException = S.ActOnFinishFullExpr(UnhandledException.get(), Loc);
- if (UnhandledException.isInvalid())
- return false;
- // Since the body of the coroutine will be wrapped in try-catch, it will
- // be incompatible with SEH __try if present in a function.
- if (!S.getLangOpts().Borland && Fn.FirstSEHTryLoc.isValid()) {
- S.Diag(Fn.FirstSEHTryLoc, diag::err_seh_in_a_coroutine_with_cxx_exceptions);
- S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
- << Fn.getFirstCoroutineStmtKeyword();
- return false;
- }
- this->OnException = UnhandledException.get();
- return true;
- }
- bool CoroutineStmtBuilder::makeReturnObject() {
- // Build implicit 'p.get_return_object()' expression and form initialization
- // of return type from it.
- ExprResult ReturnObject =
- buildPromiseCall(S, Fn.CoroutinePromise, Loc, "get_return_object", None);
- if (ReturnObject.isInvalid())
- return false;
- this->ReturnValue = ReturnObject.get();
- return true;
- }
- static void noteMemberDeclaredHere(Sema &S, Expr *E, FunctionScopeInfo &Fn) {
- if (auto *MbrRef = dyn_cast<CXXMemberCallExpr>(E)) {
- auto *MethodDecl = MbrRef->getMethodDecl();
- S.Diag(MethodDecl->getLocation(), diag::note_promise_member_declared_here)
- << MethodDecl->getName();
- }
- S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here)
- << Fn.getFirstCoroutineStmtKeyword();
- }
- bool CoroutineStmtBuilder::makeGroDeclAndReturnStmt() {
- assert(!IsPromiseDependentType &&
- "cannot make statement while the promise type is dependent");
- assert(this->ReturnValue && "ReturnValue must be already formed");
- QualType const GroType = this->ReturnValue->getType();
- assert(!GroType->isDependentType() &&
- "get_return_object type must no longer be dependent");
- QualType const FnRetType = FD.getReturnType();
- assert(!FnRetType->isDependentType() &&
- "get_return_object type must no longer be dependent");
- if (FnRetType->isVoidType()) {
- ExprResult Res = S.ActOnFinishFullExpr(this->ReturnValue, Loc);
- if (Res.isInvalid())
- return false;
- this->ResultDecl = Res.get();
- return true;
- }
- if (GroType->isVoidType()) {
- // Trigger a nice error message.
- InitializedEntity Entity =
- InitializedEntity::InitializeResult(Loc, FnRetType, false);
- S.PerformMoveOrCopyInitialization(Entity, nullptr, FnRetType, ReturnValue);
- noteMemberDeclaredHere(S, ReturnValue, Fn);
- return false;
- }
- auto *GroDecl = VarDecl::Create(
- S.Context, &FD, FD.getLocation(), FD.getLocation(),
- &S.PP.getIdentifierTable().get("__coro_gro"), GroType,
- S.Context.getTrivialTypeSourceInfo(GroType, Loc), SC_None);
- S.CheckVariableDeclarationType(GroDecl);
- if (GroDecl->isInvalidDecl())
- return false;
- InitializedEntity Entity = InitializedEntity::InitializeVariable(GroDecl);
- ExprResult Res = S.PerformMoveOrCopyInitialization(Entity, nullptr, GroType,
- this->ReturnValue);
- if (Res.isInvalid())
- return false;
- Res = S.ActOnFinishFullExpr(Res.get());
- if (Res.isInvalid())
- return false;
- if (GroType == FnRetType) {
- GroDecl->setNRVOVariable(true);
- }
- S.AddInitializerToDecl(GroDecl, Res.get(),
- /*DirectInit=*/false);
- S.FinalizeDeclaration(GroDecl);
- // Form a declaration statement for the return declaration, so that AST
- // visitors can more easily find it.
- StmtResult GroDeclStmt =
- S.ActOnDeclStmt(S.ConvertDeclToDeclGroup(GroDecl), Loc, Loc);
- if (GroDeclStmt.isInvalid())
- return false;
- this->ResultDecl = GroDeclStmt.get();
- ExprResult declRef = S.BuildDeclRefExpr(GroDecl, GroType, VK_LValue, Loc);
- if (declRef.isInvalid())
- return false;
- StmtResult ReturnStmt = S.BuildReturnStmt(Loc, declRef.get());
- if (ReturnStmt.isInvalid()) {
- noteMemberDeclaredHere(S, ReturnValue, Fn);
- return false;
- }
- this->ReturnStmt = ReturnStmt.get();
- return true;
- }
- // Create a static_cast\<T&&>(expr).
- static Expr *castForMoving(Sema &S, Expr *E, QualType T = QualType()) {
- if (T.isNull())
- T = E->getType();
- QualType TargetType = S.BuildReferenceType(
- T, /*SpelledAsLValue*/ false, SourceLocation(), DeclarationName());
- SourceLocation ExprLoc = E->getLocStart();
- TypeSourceInfo *TargetLoc =
- S.Context.getTrivialTypeSourceInfo(TargetType, ExprLoc);
- return S
- .BuildCXXNamedCast(ExprLoc, tok::kw_static_cast, TargetLoc, E,
- SourceRange(ExprLoc, ExprLoc), E->getSourceRange())
- .get();
- }
- /// \brief Build a variable declaration for move parameter.
- static VarDecl *buildVarDecl(Sema &S, SourceLocation Loc, QualType Type,
- StringRef Name) {
- DeclContext *DC = S.CurContext;
- IdentifierInfo *II = &S.PP.getIdentifierTable().get(Name);
- TypeSourceInfo *TInfo = S.Context.getTrivialTypeSourceInfo(Type, Loc);
- VarDecl *Decl =
- VarDecl::Create(S.Context, DC, Loc, Loc, II, Type, TInfo, SC_None);
- Decl->setImplicit();
- return Decl;
- }
- bool CoroutineStmtBuilder::makeParamMoves() {
- for (auto *paramDecl : FD.parameters()) {
- auto Ty = paramDecl->getType();
- if (Ty->isDependentType())
- continue;
- // No need to copy scalars, llvm will take care of them.
- if (Ty->getAsCXXRecordDecl()) {
- if (!paramDecl->getIdentifier())
- continue;
- ExprResult ParamRef =
- S.BuildDeclRefExpr(paramDecl, paramDecl->getType(),
- ExprValueKind::VK_LValue, Loc); // FIXME: scope?
- if (ParamRef.isInvalid())
- return false;
- Expr *RCast = castForMoving(S, ParamRef.get());
- auto D = buildVarDecl(S, Loc, Ty, paramDecl->getIdentifier()->getName());
- S.AddInitializerToDecl(D, RCast, /*DirectInit=*/true);
- // Convert decl to a statement.
- StmtResult Stmt = S.ActOnDeclStmt(S.ConvertDeclToDeclGroup(D), Loc, Loc);
- if (Stmt.isInvalid())
- return false;
- ParamMovesVector.push_back(Stmt.get());
- }
- }
- // Convert to ArrayRef in CtorArgs structure that builder inherits from.
- ParamMoves = ParamMovesVector;
- return true;
- }
- StmtResult Sema::BuildCoroutineBodyStmt(CoroutineBodyStmt::CtorArgs Args) {
- CoroutineBodyStmt *Res = CoroutineBodyStmt::Create(Context, Args);
- if (!Res)
- return StmtError();
- return Res;
- }
|