/* * Copyright (c) 2020, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace CoreDump { struct ELFObjectInfo { ELFObjectInfo(NonnullRefPtr file, NonnullOwnPtr&& debug_info) : file(move(file)) , debug_info(move(debug_info)) { } NonnullRefPtr file; NonnullOwnPtr debug_info; }; class Backtrace { public: struct Entry { FlatPtr eip; String object_name; String function_name; Debug::DebugInfo::SourcePositionWithInlines source_position_with_inlines; String to_string(bool color = false) const; }; Backtrace(const Reader&, const ELF::Core::ThreadInfo&); ~Backtrace(); const ELF::Core::ThreadInfo thread_info() const { return m_thread_info; } const Vector entries() const { return m_entries; } private: void add_entry(const Reader&, FlatPtr eip); ELF::Core::ThreadInfo m_thread_info; Vector m_entries; }; }