felipepiovezan wrote: > the need for coroutine stack traces. I need to splice in additional stack > frames in the middle of real, physical stack frames.
@vogelsgesang Have you considered writing a custom unwinder for this? If you want stack frames from which you can perform step operations, I think you _need_ to go down language-plugin-unwinder route. This is what we do for swift async functions (which have a lot of similarities to C++ coroutines). https://github.com/llvm/llvm-project/pull/161870 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
