1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
//
// copyright : (C) 2014 Eran Ifrah
// file name : LLDBBacktrace.cpp
//
// -------------------------------------------------------------------------
// A
// _____ _ _ _ _
// / __ \ | | | | (_) |
// | / \/ ___ __| | ___| | _| |_ ___
// | | / _ \ / _ |/ _ \ | | | __/ _ )
// | \__/\ (_) | (_| | __/ |___| | || __/
// \____/\___/ \__,_|\___\_____/_|\__\___|
//
// F i l e
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
//////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
#include "LLDBBacktrace.h"
#include <wx/filename.h>
#if BUILD_CODELITE_LLDB
LLDBBacktrace::LLDBBacktrace(lldb::SBThread& thread, const LLDBSettings& settings)
{
m_callstack.clear();
m_selectedFrameId = 0;
if(thread.IsValid()) {
m_threadId = thread.GetIndexID();
m_selectedFrameId = thread.GetSelectedFrame().GetFrameID();
int nFrames(0);
// limit the number of frames to display
thread.GetNumFrames() > settings.GetMaxCallstackFrames() ? nFrames = settings.GetMaxCallstackFrames() :
nFrames = thread.GetNumFrames();
for(int j = 0; j < nFrames; ++j) {
lldb::SBFrame frame = thread.GetFrameAtIndex(j);
LLDBBacktrace::Entry entry;
if(frame.IsValid()) {
// do we have a file:line?
if(frame.GetLineEntry().IsValid()) {
lldb::SBFileSpec fileSepc = frame.GetLineEntry().GetFileSpec();
entry.filename = wxFileName(fileSepc.GetDirectory(), fileSepc.GetFilename()).GetFullPath();
entry.functionName = frame.GetFunctionName();
entry.line = frame.GetLineEntry().GetLine() - 1;
entry.id = j;
entry.address << wxString::Format("%p", (void*)frame.GetFP());
m_callstack.push_back(entry);
} else {
// FIXME: if we dont have a debug symbol, we should learn how to construct a proper entry
// for now, we add an empty entry
entry.functionName = "??";
entry.id = j;
m_callstack.push_back(entry);
}
}
}
}
}
#endif
LLDBBacktrace::~LLDBBacktrace() {}
wxString LLDBBacktrace::ToString() const
{
wxString str;
str << "Thread ID: " << m_threadId << "\n";
for(size_t i = 0; i < m_callstack.size(); ++i) {
const LLDBBacktrace::Entry& entry = m_callstack.at(i);
str << entry.address << ", " << entry.functionName << ", " << entry.filename << ", " << entry.line << "\n";
}
return str;
}
void LLDBBacktrace::FromJSON(const JSONItem& json)
{
m_callstack.clear();
m_threadId = json.namedObject("m_threadId").toInt(0);
m_selectedFrameId = json.namedObject("m_selectedFrameId").toInt(0);
JSONItem arr = json.namedObject("m_callstack");
for(int i = 0; i < arr.arraySize(); ++i) {
LLDBBacktrace::Entry entry;
entry.FromJSON(arr.arrayItem(i));
m_callstack.push_back(entry);
}
}
JSONItem LLDBBacktrace::ToJSON() const
{
JSONItem json = JSONItem::createObject();
json.addProperty("m_threadId", m_threadId);
json.addProperty("m_selectedFrameId", m_selectedFrameId);
JSONItem arr = JSONItem::createArray("m_callstack");
json.append(arr);
for(size_t i = 0; i < m_callstack.size(); ++i) {
arr.append(m_callstack.at(i).ToJSON());
}
return json;
}
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
// -------------------------------------------------------------------------
void LLDBBacktrace::Entry::FromJSON(const JSONItem& json)
{
id = json.namedObject("id").toInt(0);
line = json.namedObject("line").toInt(0);
filename = json.namedObject("filename").toString();
functionName = json.namedObject("functionName").toString();
address = json.namedObject("address").toString();
}
JSONItem LLDBBacktrace::Entry::ToJSON() const
{
JSONItem json = JSONItem::createObject();
json.addProperty("id", id);
json.addProperty("line", line);
json.addProperty("filename", filename);
json.addProperty("functionName", functionName);
json.addProperty("address", address);
return json;
}
|