Summary: This patch addresses https://bugs.llvm.org/show_bug.cgi?id=46256 The spec of coroutine requires that the expression co_await promise.final_suspend() shall not be potentially-throwing. To check this, we recursively look at every call (including Call, MemberCall, OperatorCall and Constructor) in all code generated by the final suspend, and ensure that the callees are declared with noexcept. We also look at any returned data type that requires explicit destruction, and check their destructors for noexcept. This patch does not check declarations with dependent types yet, which will be done in future patches. Updated all tests to add noexcept to the required functions, and added a dedicated test for this patch. This patch might start to cause existing codebase fail to compile because most people may not have been strict in tagging all the related functions noexcept. Reviewers: lewissbaker, modocache, junparser Reviewed By: modocache Subscribers: arphaman, junparser, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D82029
45 lines
893 B
C++
45 lines
893 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-darwin9 %s -std=c++14 -fcoroutines-ts -fsyntax-only -Wall -Wextra -Wuninitialized -fblocks
|
|
#include "Inputs/std-coroutine.h"
|
|
|
|
using namespace std::experimental;
|
|
|
|
|
|
struct A {
|
|
bool await_ready() { return true; }
|
|
int await_resume() { return 42; }
|
|
template <typename F>
|
|
void await_suspend(F) {}
|
|
};
|
|
|
|
|
|
struct coro_t {
|
|
struct promise_type {
|
|
coro_t get_return_object() { return {}; }
|
|
suspend_never initial_suspend() { return {}; }
|
|
suspend_never final_suspend() noexcept { return {}; }
|
|
A yield_value(int) { return {}; }
|
|
void return_void() {}
|
|
static void unhandled_exception() {}
|
|
};
|
|
};
|
|
|
|
coro_t f(int n) {
|
|
if (n == 0)
|
|
co_return;
|
|
co_yield 42;
|
|
int x = co_await A{};
|
|
}
|
|
|
|
template <class Await>
|
|
coro_t g(int n) {
|
|
if (n == 0)
|
|
co_return;
|
|
co_yield 42;
|
|
int x = co_await Await{};
|
|
}
|
|
|
|
int main() {
|
|
f(0);
|
|
g<A>(0);
|
|
}
|