1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:18:11 +00:00

UserspaceEmulator: Show file and line numbers in backtraces :^)

This was super easy thanks to the awesome LibDebug work by @itamar8910!
This commit is contained in:
Andreas Kling 2020-07-21 18:47:05 +02:00
parent d1dd5013ea
commit 0f91dfa139
3 changed files with 10 additions and 2 deletions

View file

@ -139,6 +139,8 @@ bool Emulator::load_elf()
m_malloc_symbol_end = m_malloc_symbol_start + malloc_symbol.value().size();
m_free_symbol_start = free_symbol.value().value();
m_free_symbol_end = m_free_symbol_start + free_symbol.value().size();
m_debug_info = make<DebugInfo>(m_elf);
return true;
}
@ -214,7 +216,11 @@ void Emulator::dump_backtrace(const Vector<FlatPtr>& backtrace)
for (auto& address : backtrace) {
u32 offset = 0;
String symbol = m_elf->symbolicate(address, &offset);
dbgprintf("==%d== %#08x %s +%#x\n", s_pid, address, symbol.characters(), offset);
auto source_position = m_debug_info->get_source_position(address);
dbgprintf("==%d== %#08x %s +%#x", getpid(), address, symbol.characters(), offset);
if (source_position.has_value())
dbgprintf(" (%s:%zu)", LexicalPath(source_position.value().file_path).basename().characters(), source_position.value().line_number);
dbgprintf("\n");
}
}