<div dir="ltr">Yes, I'm writing a class to do that now. It's just not supported by any of the existing register contexts.</div><div class="gmail_extra"><br clear="all"><div>-- Ryan Brown<br></div>
<br><div class="gmail_quote">On Wed, Oct 15, 2014 at 11:37 AM, Jason Molenda <span dir="ltr"><<a href="mailto:jason@molenda.com" target="_blank">jason@molenda.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Can't your OS plugin for the goroutines use the same sp and ip register numbers as x86_64 (instead of 0 and 1 like you might be using right now) when it reports them to lldb, and return all the other registers as "unavailable" if they're requested?<br>
<br>
The tricky bit about living on eh_frame / debug_frame is that lldb doesn't know what kind of unwind info it is being given.  Is it just for exception handling locations?  Does it contain prologue setup?  epilogue?  Is it fully asynchronous - giving unwind details at all locations?  There aren't any flags in eh_frame/debug_frame that could give us a hint about what we're working with.<br>
<div><div class="h5"><br>
<br>
<br>
On Oct 15, 2014, at 11:24 AM, Ryan Brown <<a href="mailto:ribrdb@google.com">ribrdb@google.com</a>> wrote:<br>
<br>
> I'm actually struggling with this right now. I'm trying to implement an OS plugin so goroutines show up as threads.<br>
> The go compiler puts instruction accurate unwind info into .debug_frame, I'm not sure what (if anything) goes into eh_frame.<br>
> However lldb uses the disassembly instead of the dwarf info. The x86 unwinder assumes that all threads have the same LLDB register numbers, but other parts of the code require that the LLDB register number is < (number of registers). Goroutines only store sp and ip, so it seems I'm going to have to create a custom RegisterContext subclass to get the existing unwinder to work for goroutines.<br>
><br>
> On Tue, Oct 14, 2014 at 5:51 PM, Jason Molenda <<a href="mailto:jmolenda@apple.com">jmolenda@apple.com</a>> wrote:<br>
> > On Oct 13, 2014, at 9:55 AM, Greg Clayton <gclayton at <a href="http://apple.com" target="_blank">apple.com</a><br>
> > wrote:<br>
><br>
> ><br>
><br>
><br>
> ><br>
><br>
><br>
> >> On Oct 10, 2014, at 1:58 PM, Francois Pichet <pichet2000 at <a href="http://gmail.com" target="_blank">gmail.com</a><br>
> > wrote:<br>
><br>
> >><br>
><br>
><br>
> >><br>
><br>
><br>
> >><br>
><br>
><br>
> >> On Fri, Oct 10, 2014 at 4:20 PM, Greg Clayton <gclayton at <a href="http://apple.com" target="_blank">apple.com</a><br>
> > wrote:<br>
><br>
> >><br>
><br>
><br>
> >>> On Oct 10, 2014, at 1:05 PM, Philippe Lavoie <philippe.lavoie at <a href="http://octasic.com" target="_blank">octasic.com</a><br>
> > wrote:<br>
><br>
> >>><br>
><br>
><br>
> >>><br>
>  Hi,<br>
><br>
> >>><br>
><br>
><br>
> >>><br>
>  I noticed that by default lldb does not read .debug_frame section to unwind frames but relies instead on .eh_frame .<br>
><br>
> >>><br>
><br>
><br>
> >>><br>
>  Is there a way to fallback to reading .debug_frame?<br>
><br>
> >><br>
><br>
><br>
> >><br>
>  Not currently. Most compilers (gcc _and_ clang) put the same old stuff in .debug_frame as they do in .eh_frame, so we haven't had to use .debug_frame over .eh_frame yet. What compiler are using that is putting different (more complete) info in .debug_frame vs .eh_frame?<br>
><br>
> >><br>
><br>
><br>
> >><br>
><br>
><br>
> >><br>
>  What about about C or C++ program compiled with -fno-exceptions?<br>
><br>
> >><br>
>  They will fall back to the UnwindAssembly way even if the .debug_frame is present right?<br>
><br>
> ><br>
><br>
><br>
> ><br>
>  If no EH frame exists for a frame, then we will always fall back to UnwindAssembly. We always use UnwindAssembly for the first frame and for any frame that is past an async interrupt (sigtramp). We use the EH frame/.debug_frame for any non-zero frames, but will always use UnwindAssembly if there is no such info.<br>
><br>
><br>
><br>
> I want to expand on what Greg said earlier about eh_frame versus debug_frame.<br>
><br>
> Ideally, eh_frame will be the minimal unwind instructions necessary to unwind the stack when exceptions are thrown/caught.  eh_frame will not include unwind instructions for the prologue instructions or epilogue instructions -- because we can't throw an exception there, or have an exception thrown from a called function "below" us on the stack.  We call these unwind instructions "synchronous" because they only describe the unwind state from a small set of locations.<br>
><br>
> debug_frame would describe how to unwind the stack at every instruction location.  Every instruction of the prologue and epilogue.  If the code is built without a frame pointer, then it would have unwind instructions at every place where the stack pointer is modified.  We describe these unwind instructions as "asynchronous" because they describe the unwind state at every instruction location.<br>
><br>
><br>
> Instead what we have with gcc and clang is eh_frame instructions that describe the prologue (and some versions of gcc, the epilogue) plus the unwind state at synchronous unwind locations (where an exception can be thrown).  We have a half-way blend of asynchronous and synchronous ... it's "pretty good" but not "guaranteed" from a debugger's perspective.  It would be great if eh_frame was genuinely only the unwind instructions for exception handling and debug_frame had the full unwind state at every instruction and we could depend on debug_frame.  But in reality, the same unwind instructions are put in both eh_frame and debug_frame -- so there's little point in ever reading debug_frame.  lldb does not read debug_frame today, although it would be easy to do so.<br>
><br>
><br>
> As an experiment starting late August (r216406), lldb is now trying to use eh_frame for the currently-executing frame.  Even though it isn't *guaranteed* to be accurate at all instructions, in practice it's pretty good -- good enough that gdb seems to be able to live on it.  Tong Shen's patch in r216406 does augment the eh_frame unwind instructions with the epilogue unwind... newer gcc's apparently describe the epilogue in eh_frame but few other compilers do.<br>
><br>
> It's an open question how well living off eh_frame unwind instructions will work with a non-gcc/non-clang compiler.  That's why I say this is an "experiment" - we may have to revert to lldb's UnwindAssembly profiling code for the currently-executing function if this breaks with other compilers.<br>
><br>
> J<br>
><br>
><br>
</div></div>> _______________________________________________<br>
> lldb-dev mailing list<br>
> <a href="mailto:lldb-dev@cs.uiuc.edu">lldb-dev@cs.uiuc.edu</a><br>
> <a href="http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/lldb-dev</a><br>
<br>
</blockquote></div><br></div>