Re: [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-07 Thread Jason Merrill via Gcc-patches
. [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form. (approved) [PATCH 8/8] coroutines: Make the continue handle visible to debug. [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form. On 3 Sep 2021, at 15:21, Iain Sandoe wrote

Re: [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-05 Thread Iain Sandoe
implementation variables to debug-friendly form. (approved) [PATCH 8/8] coroutines: Make the continue handle visible to debug. [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form. > On 3 Sep 2021, at 15:21, Iain Sandoe wrote: >> On 3 Sep 2021, at 15:12, Jaso

Re: [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-03 Thread Iain Sandoe
> On 3 Sep 2021, at 15:12, Jason Merrill wrote: > > On 9/3/21 9:56 AM, Iain Sandoe wrote: >>> On 3 Sep 2021, at 14:52, Jason Merrill wrote: >>> >>> On 9/1/21 6:55 AM, Iain Sandoe wrote: The user might well wish to inspect some of the state that represents the implementation of the

Re: [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-03 Thread Jason Merrill via Gcc-patches
On 9/3/21 9:56 AM, Iain Sandoe wrote: On 3 Sep 2021, at 14:52, Jason Merrill wrote: On 9/1/21 6:55 AM, Iain Sandoe wrote: The user might well wish to inspect some of the state that represents the implementation of the coroutine machine. In particular: The promise object. The function

Re: [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-03 Thread Iain Sandoe
> On 3 Sep 2021, at 14:52, Jason Merrill wrote: > > On 9/1/21 6:55 AM, Iain Sandoe wrote: >> The user might well wish to inspect some of the state that represents >> the implementation of the coroutine machine. >> In particular: >> The promise object. >> The function pointers for the

Re: [PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-03 Thread Jason Merrill via Gcc-patches
On 9/1/21 6:55 AM, Iain Sandoe wrote: The user might well wish to inspect some of the state that represents the implementation of the coroutine machine. In particular: The promise object. The function pointers for the resumer and destroyer. The current resume index (suspend point).

[PATCH 6/8] coroutines: Convert implementation variables to debug-friendly form.

2021-09-01 Thread Iain Sandoe
The user might well wish to inspect some of the state that represents the implementation of the coroutine machine. In particular: The promise object. The function pointers for the resumer and destroyer. The current resume index (suspend point). The handle that represent this coroutine