Title
Initialization of coroutine result object
Status
drafting
Section
9.5.4 [dcl.fct.def.coroutine]
Submitter
Tomasz KamiƄski

Created on 2022-04-06.00:00:00 last changed 10 months ago

Messages

Date: 2023-01-15.00:00:00

Additional notes (January, 2023)

See also clang bug report #56532.

Forwarded to EWG with paper issue 1414, by decision of the CWG chair.

EWG 2023-02-06

EWG agrees that get_return_object is invoked outside of the try-block and that, if a conversion is needed, the return value of get_return_object is considered an xvalue that is later converted to the result object.

Date: 2023-02-10.03:08:38

Suggested resolution [SUPERSEDED]:

Change in 9.5.4 [dcl.fct.def.coroutine] paragraph 7 as follows:

The expression promise.get_return_object() is used to initialize the The returned reference or prvalue result object of a call to a coroutine is copy-initialized with promise.get_return_object(). The call to get_return_object initialization is sequenced before the call to initial-suspend and is invoked at most once.
Date: 2022-04-06.00:00:00

Subclause 9.5.4 [dcl.fct.def.coroutine] paragraph 7 specifies:

The expression promise.get_return_object() is used to initialize the returned reference or prvalue result object of a call to a coroutine. The call to get_return_object is sequenced before the call to initial-suspend and is invoked at most once.

It is unclear:

  • whether get_return_object() is invoked inside or outside of the try-block shown in paragraph 5 (see issue 2562),
  • whether the prvalue result object may be initialized later (e.g. before the first actual suspension), and
  • if the initialization does occur later, by what mechanism the prvalue result of get_return_object is forwarded to that initialization.

There is implementation divergence.

Note that a user-defined conversion may be involved in the initialization of the coroutine's prvalue result object from get_return_object(). Note also that the return type of get_return_object might be non-copyable and non-movable. However, there are certain programming patterns that would benefit from a late-initialized return value.

See also compiler explorer.

History
Date User Action Args
2023-06-20 07:07:03adminsetstatus: open -> drafting
2023-01-05 08:22:04adminsetmessages: + msg7106
2022-04-06 15:19:39adminsetmessages: + msg6790
2022-04-06 00:00:00admincreate