Kang Seonghoon bdd31b38aa std: Include line numbers in backtraces.
Fixes #20978 for supported platforms (i.e. non-Android POSIX).

This uses `backtrace_pcinfo` to inspect the DWARF debug info
and list the file and line pairs for given stack frame.
Such pair is not unique due to the presence of inlined functions
and the updated routine correctly handles this case.
The code is modelled after libbacktrace's `backtrace_full` routine.

There is one known issue with this approach. Macros, when invoked,
take over the current frame and shadows the file and line pair
which has invoked a macro. In particular, this makes many panicking
macros a bit harder to inspect. This really is a debuginfo problem,
and the backtrace routine should print them correctly with
a correct debuginfo.
2015-02-27 01:12:22 +09:00
..
2015-02-24 13:49:01 +05:30
2015-02-20 19:55:00 -05:00
2015-02-23 12:46:11 -08:00
2015-02-21 06:56:46 -05:00
2015-02-20 19:55:00 -05:00
2015-02-20 19:55:00 -05:00
2015-02-20 22:17:17 -08:00