aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorXun Li <xun@fb.com>2020-06-15 16:27:41 -0700
committerXun Li <xun@fb.com>2020-06-22 15:01:42 -0700
commit516803dc8685ebcc5bce38b05391958ffee22643 (patch)
tree51c863bf6d364d1461208572d3a423ee4730c67f /clang/lib/Frontend/CompilerInvocation.cpp
parentada0d41dbc26f013e2741d1f9e0f164943342435 (diff)
downloadllvm-516803dc8685ebcc5bce38b05391958ffee22643.zip
llvm-516803dc8685ebcc5bce38b05391958ffee22643.tar.gz
llvm-516803dc8685ebcc5bce38b05391958ffee22643.tar.bz2
[Coroutines] Ensure co_await promise.final_suspend() does not throw
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
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions