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 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/*
* GDB Debugger Support
*
* Copyright 2000 John Birch <jbb@kdevelop.org>
* Copyright 2006 Vladimir Prus <ghost@cs.msu.su>
* Copyright 2007 Hamish Rodda <rodda@kde.org>
*
* 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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "disassemblewidget.h"
#include "gdbcommand.h"
#include "debuggerplugin.h"
#include <kdebug.h>
#include <kdeversion.h>
#include <ktextedit.h>
#include <kglobalsettings.h>
#include <QShowEvent>
#include <QHideEvent>
#include <stdlib.h>
#include <klocale.h>
#include <KIcon>
#include <interfaces/icore.h>
#include <interfaces/idebugcontroller.h>
#include <debugger/interfaces/idebugsession.h>
#include "debugsession.h"
using namespace GDBMI;
namespace GDBDebugger
{
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
DisassembleWidget::DisassembleWidget(CppDebuggerPlugin* plugin, QWidget *parent)
: QTreeWidget(parent),
active_(false),
lower_(0),
upper_(0),
address_(0)
{
setToolTip(i18n("<b>Machine code display</b><p>"
"A machine code view into your running "
"executable with the current instruction "
"highlighted. You can step instruction by "
"instruction using the debuggers toolbar "
"buttons of \"step over\" instruction and "
"\"step into\" instruction."));
setWindowIcon( KIcon("system-run") );
setWindowTitle(i18n("Disassemble View"));
setFont(KGlobalSettings::fixedFont());
setSelectionMode(SingleSelection);
setColumnCount(ColumnCount);
setHeaderLabels(QStringList() << i18n("Address") << i18n("Function") << i18n("Offset") << i18n("Instruction"));
connect(KDevelop::ICore::self()->debugController(),
SIGNAL(currentSessionChanged(KDevelop::IDebugSession*)),
SLOT(currentSessionChanged(KDevelop::IDebugSession*)));
connect(plugin, SIGNAL(reset()), this, SLOT(clear()));
connect(plugin, SIGNAL(reset()), this, SLOT(slotDeactivate()));
}
void DisassembleWidget::currentSessionChanged(KDevelop::IDebugSession* s)
{
DebugSession *session = qobject_cast<DebugSession*>(s);
if (!session) return;
connect(session, SIGNAL(gdbShowStepInSource(QString,int,QString)),
SLOT(slotShowStepInSource(QString,int,QString)));
}
/***************************************************************************/
DisassembleWidget::~DisassembleWidget()
{}
/***************************************************************************/
bool DisassembleWidget::displayCurrent()
{
Q_ASSERT(address_ >= lower_ || address_ <= upper_);
int line;
for (line=0; line < topLevelItemCount(); line++)
{
QTreeWidgetItem* item = topLevelItem(line);
unsigned long address = strtoul(item->text(Address).toLatin1(), 0, 0);
if (address == address_)
{
// put cursor at start of line and highlight the line
setCurrentItem(item);
selectionModel()->select(indexFromItem(item), QItemSelectionModel::Select);
return true;
}
}
return false;
}
/***************************************************************************/
void DisassembleWidget::slotActivate(bool activate)
{
kDebug(9012) << "Disassemble widget active: " << activate;
if (active_ != activate)
{
active_ = activate;
if (active_ && address_)
{
if (address_ < lower_ || address_ > upper_ || !displayCurrent())
getNextDisplay();
}
}
}
/***************************************************************************/
void DisassembleWidget::slotShowStepInSource( const QString &, int,
const QString ¤tAddress)
{
kDebug();
currentAddress_ = currentAddress;
address_ = strtoul(currentAddress.toLatin1(), 0, 0);
if (!active_)
return;
if (address_ < lower_ || address_ > upper_ || !displayCurrent())
getNextDisplay();
}
/***************************************************************************/
void DisassembleWidget::getNextDisplay()
{
kDebug();
if (address_)
{
Q_ASSERT(!currentAddress_.isNull());
QString cmd = QString("-s $pc -e \"$pc + 128\" -- 0");
DebugSession *s = qobject_cast<DebugSession*>(KDevelop::ICore::self()->debugController()->currentSession());
if (s) {
s->addCommandToFront(
new GDBCommand(DataDisassemble, cmd, this, &DisassembleWidget::memoryRead ) );
}
}
}
/***************************************************************************/
void DisassembleWidget::memoryRead(const GDBMI::ResultRecord& r)
{
const GDBMI::Value& content = r["asm_insns"];
QString rawdata;
clear();
for(int i = 0; i < content.size(); ++i)
{
const GDBMI::Value& line = content[i];
QString addr = line["address"].literal();
QString fct = line["func-name"].literal();
QString offs = line["offset"].literal();
QString inst = line["inst"].literal();
addTopLevelItem(new QTreeWidgetItem(this, QStringList() << addr << fct << offs << inst));
if (i == 0) {
lower_ = strtoul(addr.toLatin1(), 0, 0);
} else if (i == content.size()-1) {
upper_ = strtoul(addr.toLatin1(), 0, 0);
}
}
displayCurrent();
}
void DisassembleWidget::showEvent(QShowEvent*)
{
slotActivate(true);
for (int i = 0; i < model()->columnCount(); ++i)
resizeColumnToContents(i);
}
void DisassembleWidget::hideEvent(QHideEvent*)
{
slotActivate(false);
}
void DisassembleWidget::slotDeactivate()
{
slotActivate(false);
}
/***************************************************************************/
}
#include "disassemblewidget.moc"
|