[kernel] Use symbol table in stack traces

Now using the symbol table built by build_symbol_table.py in the kernel
when printing stack traces.
This commit is contained in:
2020-08-09 17:27:51 -07:00
parent 0d94776c46
commit bbb9aae198
12 changed files with 137 additions and 12 deletions

View File

@@ -5,13 +5,18 @@
class entry
{
public:
entry(const std::string &in, const std::string &out, bool executable = false);
entry(
const std::string &in,
const std::string &out,
bool executable = false,
bool symbols = false);
inline const std::string & in() const { return m_in; }
inline const std::string & out() const { return m_out; }
inline const std::ifstream & file() const { return m_file; }
inline bool executable() const { return m_exec; }
inline bool symbols() const { return m_syms; }
inline size_t size() const { return m_size; }
inline bool good() const { return m_file.good(); }
@@ -21,5 +26,6 @@ private:
std::ifstream m_file;
size_t m_size;
bool m_exec;
bool m_syms;
};