1 // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -std=c++20 -emit-llvm %s -o - -disable-llvm-passes | FileCheck %s
3 #include "Inputs/coroutine.h"
10 constexpr nothrow_t nothrow
= {};
12 } // end namespace std
14 // Required when get_return_object_on_allocation_failure() is defined by
16 void* operator new(__SIZE_TYPE__ __sz
, const std::nothrow_t
&) noexcept
;
17 void operator delete(void* __p
, const std::nothrow_t
&) noexcept
;
20 template <class RetObject
>
22 RetObject
get_return_object();
23 suspend_always
initial_suspend();
24 suspend_never
final_suspend() noexcept
;
26 static void unhandled_exception();
30 using promise_type
= promise_type
<coro
>;
36 // Verify that the RVO is applied.
37 // CHECK-LABEL: define{{.*}} void @_Z1fi(ptr dead_on_unwind noalias writable sret(%struct.coro) align 8 %agg.result, i32 noundef %0)
39 // CHECK: %call = call noalias noundef nonnull ptr @_Znwm(
40 // CHECK-NEXT: br label %[[CoroInit:.*]]
42 // CHECK: {{.*}}[[CoroInit]]:
43 // CHECK: call void @{{.*get_return_objectEv}}(ptr dead_on_unwind writable sret(%struct.coro) align 8 %agg.result
48 template <class RetObject
>
49 struct promise_type_with_on_alloc_failure
{
50 static RetObject
get_return_object_on_allocation_failure();
51 RetObject
get_return_object();
52 suspend_always
initial_suspend();
53 suspend_never
final_suspend() noexcept
;
55 static void unhandled_exception();
59 using promise_type
= promise_type_with_on_alloc_failure
<coro_two
>;
60 coro_two(coro_two
const&);
65 // Verify that the RVO is applied.
66 // CHECK-LABEL: define{{.*}} void @_Z1hi(ptr dead_on_unwind noalias writable sret(%struct.coro_two) align 8 %agg.result, i32 noundef %0)
69 // CHECK: %call = call noalias noundef ptr @_ZnwmRKSt9nothrow_t
70 // CHECK-NEXT: %[[CheckNull:.*]] = icmp ne ptr %call, null
71 // CHECK-NEXT: br i1 %[[CheckNull]], label %[[InitOnSuccess:.*]], label %[[InitOnFailure:.*]]
73 // CHECK: {{.*}}[[InitOnFailure]]:
74 // CHECK-NEXT: call void @{{.*get_return_object_on_allocation_failureEv}}(ptr dead_on_unwind writable sret(%struct.coro_two) align 8 %agg.result
75 // CHECK-NEXT: br label %[[RetLabel:.*]]
77 // CHECK: {{.*}}[[InitOnSuccess]]:
78 // CHECK: call void @{{.*get_return_objectEv}}(ptr dead_on_unwind writable sret(%struct.coro_two) align 8 %agg.result
80 // CHECK: [[RetLabel]]:
81 // CHECK-NEXT: ret void