I've recently been trying to figure out crbug.com/447208 and had an issue where
the stacktrace didn't fully show the stacktrace. The issue was that the code
jumped to NULL. Breakpad correctly reported the top stackframe as '0x0', but
it then got all the other stackframes from the stack. Since the code jumped to
NULL, the link register (LR) wasn't pushed onto the stack. This means that the
stacktrace didn't contain the actual stackframe which caused the "jump to
NULL". The issue is described in more detail on [1].
Can we use the LR in to figure out the top real frame in these situations?
[1] https://code.google.com/p/chromium/issues/detail?id=447208#c14
Original issue reported on code.google.com by rmcil...@chromium.org on 16 Feb 2015 at 7:34
Original issue reported on code.google.com by
rmcil...@chromium.org
on 16 Feb 2015 at 7:34