================ @@ -8,470 +8,966 @@ Debugging C++ Coroutines Introduction ============ -For performance and other architectural reasons, the C++ Coroutines feature in -the Clang compiler is implemented in two parts of the compiler. Semantic -analysis is performed in Clang, and Coroutine construction and optimization -takes place in the LLVM middle-end. +Coroutines in C++ were introduced in C++20, and their user experience for +debugging them can still be challenging. This document guides you how to most +efficiently debug coroutines and how to navigate existing shortcomings in +debuggers and compilers. + +Coroutines are generally used either as generators or for asynchronous +programming. In this document, we will discuss both use cases. Even if you are +using coroutines for asynchronous programming, you should still read the +generators section, as it will introduce foundational debugging techniques also +applicable to the debugging of asynchronous programming. + +Both compilers (clang, gcc, ...) and debuggers (lldb, gdb, ...) are +still improving their support for coroutines. As such, we recommend to use the +latest available version of your toolchain. + +This document focuses on clang and lldb. The screenshots show +[lldb-dap](https://marketplace.visualstudio.com/items?itemName=llvm-vs-code-extensions.lldb-dap) +in combination with VS Code. The same techniques can also be used in other +IDEs. + +Debugging clang-compiled binaries with gdb is possible, but requires more +scripting. This guide comes with a basic GDB script for coroutine debugging. + +This guide will first showcase the more polished, bleeding-edge experience, but +will also show you how to debug coroutines with older toolchains. In general, +the older your toolchain, the deeper you will have to dive into the +implementation details of coroutines (such as their ABI). The further down in +this document, the more low-level, technical the content will become. If you +are on an up-to-date toolchain, you will hopefully be able to stop reading +earlier. + +Debugging generators +==================== + +The first major use case for coroutines in C++ are generators, i.e. functions +which can produce values via ``co_yield``. Values are produced lazily, +on-demand. For that purpose, every time a new value is requested the coroutine +gets resumed. As soon as it reaches a ``co_yield`` and thereby returns the +requested value, the coroutine is suspended again. + +This logic is encapsulated in a ``generator`` type similar to -However, this design forces us to generate insufficient debugging information. -Typically, the compiler generates debug information in the Clang frontend, as -debug information is highly language specific. However, this is not possible -for Coroutine frames because the frames are constructed in the LLVM middle-end. - -To mitigate this problem, the LLVM middle end attempts to generate some debug -information, which is unfortunately incomplete, since much of the language -specific information is missing in the middle end. +.. code-block:: c++ -This document describes how to use this debug information to better debug -coroutines. + // generator.hpp + #include <coroutine> -Terminology -=========== + // `generator` is a stripped down, minimal generator type. + template<typename T> + struct generator { + struct promise_type { + T current_value{}; -Due to the recent nature of C++20 Coroutines, the terminology used to describe -the concepts of Coroutines is not settled. This section defines a common, -understandable terminology to be used consistently throughout this document. + auto get_return_object() { + return std::coroutine_handle<promise_type>::from_promise(*this); + } + auto initial_suspend() { return std::suspend_always(); } + auto final_suspend() noexcept { return std::suspend_always(); } + auto return_void() { return std::suspend_always(); } + void unhandled_exception() { __builtin_unreachable(); } + auto yield_value(T v) { + current_value = v; + return std::suspend_always(); + } + }; -coroutine type --------------- + generator(std::coroutine_handle<promise_type> h) : hdl(h) { hdl.resume(); } + ~generator() { hdl.destroy(); } -A `coroutine function` is any function that contains any of the Coroutine -Keywords `co_await`, `co_yield`, or `co_return`. A `coroutine type` is a -possible return type of one of these `coroutine functions`. `Task` and -`Generator` are commonly referred to coroutine types. + generator<int>& operator++() { hdl.resume(); return *this; } // resume the coroutine + int operator*() const { return hdl.promise().current_value; } -coroutine ---------- + private: + std::coroutine_handle<promise_type> hdl; + }; -By technical definition, a `coroutine` is a suspendable function. However, -programmers typically use `coroutine` to refer to an individual instance. -For example: +We can then use this ``generator`` class to print the Fibonacci sequence: .. code-block:: c++ - std::vector<Task> Coros; // Task is a coroutine type. - for (int i = 0; i < 3; i++) - Coros.push_back(CoroTask()); // CoroTask is a coroutine function, which - // would return a coroutine type 'Task'. + #include "generator.hpp" + #include <iostream> -In practice, we typically say "`Coros` contains 3 coroutines" in the above -example, though this is not strictly correct. More technically, this should -say "`Coros` contains 3 coroutine instances" or "Coros contains 3 coroutine -objects." + generator<int> fibonacci() { + co_yield 0; + int prev = 0; + co_yield 1; + int current = 1; + while (true) { + int next = current + prev; + co_yield next; + prev = current; + current = next; + } + } -In this document, we follow the common practice of using `coroutine` to refer -to an individual `coroutine instance`, since the terms `coroutine instance` and -`coroutine object` aren't sufficiently defined in this case. + template<typename T> + void print10Elements(generator<T>& gen) { + for (unsigned i = 0; i < 10; ++i) { + std::cerr << *gen << "\n"; + ++gen; + } + } -coroutine frame ---------------- + int main() { + std::cerr << "Fibonacci sequence - here we go\n"; + generator<int> fib = fibonacci(); + for (unsigned i = 0; i < 5; ++i) { + ++fib; + } + print10Elements(fib); + } -The C++ Standard uses `coroutine state` to describe the allocated storage. In -the compiler, we use `coroutine frame` to describe the generated data structure -that contains the necessary information. +To compile this code, use ``clang++ --std=c++23 generator-example.cpp -g``. -The structure of coroutine frames -================================= +Breakpoints inside the generators +--------------------------------- -The structure of coroutine frames is defined as: +We can set breakpoints inside coroutines just as we set them in regular +functions. For VS Code, that means clicking next the line number in the editor. +In the ``lldb`` CLI or in ``gdb``, you can use ``b`` to set a breakpoint. -.. code-block:: c++ +Inspecting variables in a coroutine +----------------------------------- - struct { - void (*__r)(); // function pointer to the `resume` function - void (*__d)(); // function pointer to the `destroy` function - promise_type; // the corresponding `promise_type` - ... // Any other needed information - } +If you hit a breakpoint inside the ``fibonacci`` function, you should be able +to inspect all local variables (``prev```, ``current```, ``next``) just like in +a regular function. -In the debugger, the function's name is obtainable from the address of the -function. And the name of `resume` function is equal to the name of the -coroutine function. So the name of the coroutine is obtainable once the -address of the coroutine is known. +.. image:: ./coro-generator-variables.png -Print promise_type -================== +Note the two additional variables ``__promise`` and ``__coro_frame``. Those +show the internal state of the coroutine. They are not relevant for our +generator example, but will be relevant for asynchronous programming described +in the next section. -Every coroutine has a `promise_type`, which defines the behavior -for the corresponding coroutine. In other words, if two coroutines have the -same `promise_type`, they should behave in the same way. -To print a `promise_type` in a debugger when stopped at a breakpoint inside a -coroutine, printing the `promise_type` can be done by: +Stepping out of a coroutine +--------------------------- -.. parsed-literal:: +When single-stepping, you will notice that the debugger will leave the +``fibonacci`` function as soon as you hit a ``co_yield`` statement. You might +find yourself inside some standard library code. After stepping out of the +library code, you will be back in the ``main`` function. - print __promise +Stepping into a coroutine +------------------------- -It is also possible to print the `promise_type` of a coroutine from the address -of the coroutine frame. For example, if the address of a coroutine frame is -0x416eb0, and the type of the `promise_type` is `task::promise_type`, printing -the `promise_type` can be done by: +If you stop at ``++fib`` and try to step into the generator, you will first +find yourself inside ``operator++``. Stepping into the ``handle.resume()`` will +not work by default. -.. parsed-literal:: +This is because lldb does not step int functions from the standard library by +default. To make this work, you first need to run ``settings set +target.process.thread.step-avoid-regexp ""``. You can do so from the "Debug +Console" towards the bottom of the screen. With that setting change, you can +step through ``coroutine_handle::resume`` and into your generator. - print (task::promise_type)*(0x416eb0+0x10) +You might find yourself at the top of the coroutine at first, instead of at +your previous suspension point. In that case, single-step and you will arrive +at the previously suspended ``co_yield`` statement. -This is possible because the `promise_type` is guaranteed by the ABI to be at a -16 bit offset from the coroutine frame. -Note that there is also an ABI independent method: +Inspecting a suspended coroutine +-------------------------------- -.. parsed-literal:: +The ``print10Elements`` function receives an opaque ``generator`` type. Let's +assume we are suspended at the ``++gen;`` line, and want to inspect the +generator and its internal state. - print std::coroutine_handle<task::promise_type>::from_address((void*)0x416eb0).promise() +To do so, we can simply look into the ``gen.hdl`` variable. LLDB comes with a +pretty printer for ``std::coroutine_handle`` which will show us the internal +state of the coroutine. For GDB, you will have to use the ``show-coro-frame`` +command provided by the :ref:`GDB Debugger Script`. -The functions `from_address(void*)` and `promise()` are often small enough to -be removed during optimization, so this method may not be possible. +.. image:: ./coro-generator-suspended.png -Print coroutine frames -====================== +We can see two function pointers ``resume`` and ``destroy``. These pointers +point to the resume / destroy functions. By inspecting those function pointers, +we can see that our ``generator`` is actually backed by our ``fibonacci`` +coroutine. When using VS Code + lldb-dap, you can Cmd+Click on the function +address (``0x555...`` in the screenshot) to directly jump to the function +definition backing your coroutine handle. -LLVM generates the debug information for the coroutine frame in the LLVM middle -end, which permits printing of the coroutine frame in the debugger. Much like -the `promise_type`, when stopped at a breakpoint inside a coroutine we can -print the coroutine frame by: +Next, we see the ``promise``. In our case, this reveals the current value of +our generator. -.. parsed-literal:: +The ``coro_frame`` member represents the internal state of the coroutine. It +contains our internal coroutine state ``prev``, ``current``, ``next``. +Furthermore, it contains many internal, compiler-specific members, which are +named based on their type. These represent temporary values which the compiler +decided to spill across suspension points, but which were not declared in our +original source code and hence have no proper user-provided name. - print __coro_frame +Tracking the exact suspension point +----------------------------------- +Among the compiler-generated members, the ``__coro_index`` is particularly +important. This member identifies the suspension point at which the coroutine +is currently suspended. -Just as printing the `promise_type` is possible from the coroutine address, -printing the details of the coroutine frame from an address is also possible: +However, it is non-trivial to map this number back to a source code location. +In simple cases, one might correctly guess the source code location. In more +complex cases, we can modify the C++ code to store additional information in +the promise type: -:: +.. code-block:: c++ - (gdb) # Get the address of coroutine frame - (gdb) print/x *0x418eb0 - $1 = 0x4019e0 - (gdb) # Get the linkage name for the coroutine - (gdb) x 0x4019e0 - 0x4019e0 <_ZL9coro_taski>: 0xe5894855 - (gdb) # Turn off the demangler temporarily to avoid the debugger misunderstanding the name. - (gdb) set demangle-style none - (gdb) # The coroutine frame type is 'linkage_name.coro_frame_ty' - (gdb) print ('_ZL9coro_taski.coro_frame_ty')*(0x418eb0) - $2 = {__resume_fn = 0x4019e0 <coro_task(int)>, __destroy_fn = 0x402000 <coro_task(int)>, __promise = {...}, ...} + // For all promise_types we need a new `line_number variable`: + class promise_type { + ... + void* _coro_return_address = nullptr; + }; -The above is possible because: + #include <source_location> -(1) The name of the debug type of the coroutine frame is the `linkage_name`, -plus the `.coro_frame_ty` suffix because each coroutine function shares the -same coroutine type. + // For all the awaiter types we need: + class awaiter { + ... + template <typename Promise> + __attribute__((noinline)) auto await_suspend(std::coroutine_handle<Promise> handle) { + ... + handle.promise()._coro_return_address = __builtin_return_address(0); + } + }; -(2) The coroutine function name is accessible from the address of the coroutine -frame. +This stores the return address of ``await_suspend`` within the promise. +Thereby, we can read it back from the promise of a suspended coroutine, and map +it to an exact source code location. For a complete example, see the ``task`` +type used below for asynchronous programming. -The above commands can be simplified by placing them in debug scripts. +Alternatively, we can modify the C++ code to store the line number in the +promise type. We can use a ``std::source_location`` to get the line number of +the await and store it inside the ``promise_type``. Since we can get the +promise of a suspended coroutine, we thereby get access to the line_number. -Examples to print coroutine frames ----------------------------------- +.. code-block:: c++ + + // For all the awaiter types we need: + class awaiter { + ... + template <typename Promise> + void await_suspend(std::coroutine_handle<Promise> handle, + std::source_location sl = std::source_location::current()) { + ... + handle.promise().line_number = sl.line(); + } + }; + +The downside of both approaches is that they come at the price of additional +runtime cost. In particular the second approach increases binary size, since it +requires additional ``std::source_location`` objects, and those source +locations are not stripped by split-dwarf. Whether the first approach is worth +the additional runtime cost is a trade-off you need to make yourself. + +Async stack traces +================== -The print examples below use the following definition: +Besides generators, the second common use case for coroutines in C++ is +asynchronous programming, usually involving libraries such as stdexec, folly, +cppcoro, boost::asio or similar libraries. Some of those libraries already +provide custom debugging support, so in addition to this guide, you might want +to check out their documentation. + +When using coroutines for asynchronous programming, your library usually +provides you some ``task`` type. This type usually looks similar to this: .. code-block:: c++ + // async-task-library.hpp #include <coroutine> - #include <iostream> + #include <utility> - struct task{ + struct task { struct promise_type { task get_return_object() { return std::coroutine_handle<promise_type>::from_promise(*this); } - std::suspend_always initial_suspend() { return {}; } - std::suspend_always final_suspend() noexcept { return {}; } - void return_void() noexcept {} + auto initial_suspend() { return std::suspend_always{}; } + void unhandled_exception() noexcept {} - int count = 0; - }; + auto final_suspend() noexcept { + struct FinalSuspend { + std::coroutine_handle<> continuation; + auto await_ready() noexcept { return false; } + auto await_suspend(std::coroutine_handle<> handle) noexcept { + return continuation; + } + void await_resume() noexcept {} + }; + return FinalSuspend{continuation}; + } - void resume() noexcept { - handle.resume(); - } + void return_value(int res) { result = res; } - task(std::coroutine_handle<promise_type> hdl) : handle(hdl) {} + std::coroutine_handle<> continuation = std::noop_coroutine(); + int result = 0; + #ifndef NDEBUG + void* _coro_suspension_point_addr = nullptr; + #endif + }; + + task(std::coroutine_handle<promise_type> handle) : handle(handle) {} ~task() { if (handle) handle.destroy(); } - std::coroutine_handle<> handle; - }; - - class await_counter : public std::suspend_always { - public: - template<class PromiseType> - void await_suspend(std::coroutine_handle<PromiseType> handle) noexcept { - handle.promise().count++; + struct Awaiter { + std::coroutine_handle<promise_type> handle; + auto await_ready() { return false; } + + template <typename P> + #ifndef NDEBUG + __attribute__((noinline)) + #endif + auto await_suspend(std::coroutine_handle<P> continuation) { + handle.promise().continuation = continuation; + #ifndef NDEBUG + continuation.promise()._coro_suspension_point_addr = __builtin_return_address(0); + #endif + return handle; } + int await_resume() { + return handle.promise().result; + } + }; + + auto operator co_await() { + return Awaiter{handle}; + } + + int syncStart() { + handle.resume(); + return handle.promise().result; + } + + private: + std::coroutine_handle<promise_type> handle; }; - static task coro_task(int v) { - int a = v; - co_await await_counter{}; - a++; - std::cout << a << "\n"; - a++; - std::cout << a << "\n"; - a++; - std::cout << a << "\n"; - co_await await_counter{}; - a++; - std::cout << a << "\n"; - a++; - std::cout << a << "\n"; +Note how the ``task::promise_type`` has a member variable +``std::coroutine_handle<> continuation``. This is the handle of the coroutine +that will be resumed when the current coroutine is finished executing (see +``final_suspend``). In a sense, this is the "return address" of the coroutine. +It is as soon as the caller coroutine ``co_await`` on the called coroutine in +``operator co_await``. + +The result value is returned via the ``int result`` member. It is written in +``return_value`` and read by ``Awaiter::await_resume``. Usually, the result +type of a task is a template argument. For simplicity's sake, we hard-coded the +``int`` type in this example. + +Stack traces of in-flight coroutines +----------------------------------- + +Let's assume you have the following program and set a breakpoint inside the +``write_output`` function. There are multiple call paths through which this +function could have been reached. How can we find out said call path? + +.. code-block:: c++ + + #include <iostream> + #include <string_view> + #include "async-task-library.hpp" + + static task write_output(std::string_view contents) { + std::cout << contents << "\n"; + co_return contents.size(); + } + + static task greet() { + int bytes_written = 0; + bytes_written += co_await write_output("Hello"); + bytes_written += co_await write_output("World"); + co_return bytes_written; } int main() { - task t = coro_task(43); - t.resume(); - t.resume(); - t.resume(); + int bytes_written = greet().syncStart(); + std::cout << "Bytes written: " << bytes_written << "\n"; return 0; } -In debug mode (`O0` + `g`), the printing result would be: +To do so, let's break inside ``write_output``. We can understand our call-stack +by looking into the special ``__promise`` variable. This artificial variable is +generated by the compiler and points to the ``promise_type`` instance +corresponding to the currently in-flight coroutine. In this case, the +``__promise`` variable contains the ``continuation`` which points to our +caller. That caller again contains a ``promise`` with a ``continuation`` which +points to our caller's caller. -.. parsed-literal:: +.. image:: ./coro-async-task-continuations.png - {__resume_fn = 0x4019e0 <coro_task(int)>, __destroy_fn = 0x402000 <coro_task(int)>, __promise = {count = 1}, v = 43, a = 45, __coro_index = 1 '\001', struct_std__suspend_always_0 = {__int_8 = 0 '\000'}, - class_await_counter_1 = {__int_8 = 0 '\000'}, class_await_counter_2 = {__int_8 = 0 '\000'}, struct_std__suspend_always_3 = {__int_8 = 0 '\000'}} +We can figure out the involved coroutine functions and their current suspension +points as discussed above in the "Inspecting a suspended coroutine" section. -In the above, the values of `v` and `a` are clearly expressed, as are the -temporary values for `await_counter` (`class_await_counter_1` and -`class_await_counter_2`) and `std::suspend_always` ( -`struct_std__suspend_always_0` and `struct_std__suspend_always_3`). The index -of the current suspension point of the coroutine is emitted as `__coro_index`. -In the above example, the `__coro_index` value of `1` means the coroutine -stopped at the second suspend point (Note that `__coro_index` is zero indexed) -which is the first `co_await await_counter{};` in `coro_task`. Note that the -first initial suspend point is the compiler generated -`co_await promise_type::initial_suspend()`. +When using LLDB's CLI, the command ``p --ptr-depth 4 __promise`` might also be +useful to automatically dereference all the pointers up to the given depth. -However, when optimizations are enabled, the printed result changes drastically: +To get a flat representation of that call stack, we can use a debugger script, +such as the one shown in the :ref:`LLDB Debugger Script` section. With that +script, we can run ``coro bt`` to get the following stack trace: -.. parsed-literal:: +.. code-block:: - {__resume_fn = 0x401280 <coro_task(int)>, __destroy_fn = 0x401390 <coro_task(int)>, __promise = {count = 1}, __int_32_0 = 43, __coro_index = 1 '\001'} + (lldb) coro bt + frame #0: write_output(std::basic_string_view<char, std::char_traits<char>>) at /home/avogelsgesang/Documents/corotest/async-task-example.cpp:6:16 + [async] frame #1: greet() at /home/avogelsgesang/Documents/corotest/async-task-example.cpp:12:20 + [async] frame #2: std::__n4861::coroutine_handle<std::__n4861::noop_coroutine_promise>::__frame::__dummy_resume_destroy() at /usr/include/c++/14/coroutine:298, suspension point unknown + frame #3: std::__n4861::coroutine_handle<task::promise_type>::resume() const at /usr/include/c++/14/coroutine:242:29 + frame #4: task::syncStart() at /home/avogelsgesang/Documents/corotest/async-task-library.hpp:78:14 + frame #5: main at /home/avogelsgesang/Documents/corotest/async-task-example.cpp:18:11 + frame #6: __libc_start_call_main at sysdeps/nptl/libc_start_call_main.h:58:16 + frame #7: __libc_start_main_impl at csu/libc-start.c:360:3 + frame #8: _start at :4294967295 -Unused values are optimized out, as well as the name of the local variable `a`. -The only information remained is the value of a 32-bit integer. In this simple -case, it seems to be pretty clear that `__int_32_0` represents `a`. However, it -is not true. +Note how the frames #1 and #2 are async frames. -An important note with optimization is that the value of a variable may not -properly express the intended value in the source code. For example: +The ``coro bt`` frame already includes logic to identify the exact suspension +point of each frame based on the ``_coro_suspension_point_addr`` stored inside +the promise. -.. code-block:: c++ +Stack traces of suspended coroutines +------------------------------------ - static task coro_task(int v) { - int a = v; - co_await await_counter{}; - a++; // __int_32_0 is 43 here - std::cout << a << "\n"; - a++; // __int_32_0 is still 43 here - std::cout << a << "\n"; - a++; // __int_32_0 is still 43 here! - std::cout << a << "\n"; - co_await await_counter{}; - a++; // __int_32_0 is still 43 here!! - std::cout << a << "\n"; - a++; // Why is __int_32_0 still 43 here? - std::cout << a << "\n"; - } +Usually, while a coroutine is waiting for, e.g., an in-flight network request, +the suspended ``coroutine_handle`` is stored within the work queues inside the +IO scheduler. As soon as we get hold of the coroutine handle, we can backtrace +it by using ``coro bt <coro_handle>`` where ``<coro_handle>`` is an expression +evaluating to the coroutine handle of the suspended coroutine. + +Keeping track of all existing coroutines +---------------------------------------- + +Usually, we should be able to get hold of all currently suspended coroutines by +inspecting the worker queues of the IO scheduler. In cases where this is not +possible, we can use the following approach to keep track of all currently +suspended coroutines. -When debugging step-by-step, the value of `__int_32_0` seemingly does not -change, despite being frequently incremented, and instead is always `43`. -While this might be surprising, this is a result of the optimizer recognizing -that it can eliminate most of the load/store operations. The above code gets -optimized to the equivalent of: +One such solution is to store the list of in-flight coroutines in a collection: .. code-block:: c++ - static task coro_task(int v) { - store v to __int_32_0 in the frame - co_await await_counter{}; - a = load __int_32_0 - std::cout << a+1 << "\n"; - std::cout << a+2 << "\n"; - std::cout << a+3 << "\n"; - co_await await_counter{}; - a = load __int_32_0 - std::cout << a+4 << "\n"; - std::cout << a+5 << "\n"; - } + inline std::unordered_set<std::coroutine_handle<void>> inflight_coroutines; + inline std::mutex inflight_coroutines_mutex; -It should now be obvious why the value of `__int_32_0` remains unchanged -throughout the function. It is important to recognize that `__int_32_0` -does not directly correspond to `a`, but is instead a variable generated -to assist the compiler in code generation. The variables in an optimized -coroutine frame should not be thought of as directly representing the -variables in the C++ source. + class promise_type { + public: + promise_type() { + std::unique_lock<std::mutex> lock(inflight_coroutines_mutex); + inflight_coroutines.insert(std::coroutine_handle<promise_type>::from_promise(*this)); + } + ~promise_type() { + std::unique_lock<std::mutex> lock(inflight_coroutines_mutex); + inflight_coroutines.erase(std::coroutine_handle<promise_type>::from_promise(*this)); + } + }; -Get the suspended points -======================== +With this in place, it is possible to inspect ``inflight_coroutines`` from the +debugger, and rely on LLDB's pretty-printer for ``std::coroutine_handle``s to +inspect the coroutines. -An important requirement for debugging coroutines is to understand suspended -points, which are where the coroutine is currently suspended and awaiting. +This technique will track *all* coroutines, also the ones which are currently +awaiting another coroutine, though. To identify just the "roots" of our +in-flight coroutines, we can use the ``coro in-flight inflight_coroutines`` +command provided by the :ref:`LLDB Debugger Script`. -For simple cases like the above, inspecting the value of the `__coro_index` -variable in the coroutine frame works well. +Please note that the above is expensive from a runtime performance perspective, +and requires locking to prevent data races. As such, it is not recommended to +use this approach in production code. -However, it is not quite so simple in really complex situations. In these -cases, it is necessary to use the coroutine libraries to insert the -line-number. +Known issues & workarounds for older LLDB versions +================================================== -For example: +LLDB before 21.0 did not yet show the ``__coro_frame`` inside +``coroutine_handle``. To inspect the coroutine frame, you had to use the +approach described in the :ref:`Devirtualization of coroutine handles` section. -.. code-block:: c++ +LLDB before 18.0 was hiding the ``__promise`` and ``__coro_frame`` +variable by default. The variables are still present, but they need to be +explicitly added to the "watch" pane in VS Code or requested via +``print __promise`` and ``print __coro_frame`` from the debugger console. - // For all the promise_type we want: - class promise_type { - ... - + unsigned line_number = 0xffffffff; - }; +LLDB before 16.0 did not yet provide a pretty-printer for +``std::coroutine_handle``. To inspect the coroutine handle, you had to manually +use the approach described in the :ref:`Devirtualization of coroutine handles` +section. - #include <source_location> +Toolchain Implementation Details +================================ - // For all the awaiter types we need: - class awaiter { - ... - template <typename Promise> - void await_suspend(std::coroutine_handle<Promise> handle, - std::source_location sl = std::source_location::current()) { - ... - handle.promise().line_number = sl.line(); - } - }; +This section covers the ABI, as well as additional compiler-specific behavior. +The ABI is followed by all compilers, on all major systems, including Windows, +Linux and macOS. Different compilers emit different debug information, though. -In this case, we use `std::source_location` to store the line number of the -await inside the `promise_type`. Since we can locate the coroutine function -from the address of the coroutine, we can identify suspended points this way -as well. +Ramp, resume and destroy functions +---------------------------------- -The downside here is that this comes at the price of additional runtime cost. -This is consistent with the C++ philosophy of "Pay for what you use". +Every coroutine is split into three parts: -Get the asynchronous stack -========================== +* The ramp function allocates the coroutine frame and initializes it, usually + copying over all variables into the coroutine frame * The resume function ---------------- JFinis wrote:
```suggestion copying over all variables into the coroutine frame * The resume function ``` (plus rewrapping) https://github.com/llvm/llvm-project/pull/142651 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits