cutter/src/widgets/DisassemblyWidget.cpp

1010 lines
34 KiB
C++
Raw Normal View History

#include "DisassemblyWidget.h"
#include "menus/DisassemblyContextMenu.h"
2018-10-17 07:55:53 +00:00
#include "common/Configuration.h"
#include "common/Helpers.h"
#include "common/TempConfig.h"
#include "common/SelectionHighlight.h"
#include "common/BinaryTrees.h"
#include "core/MainWindow.h"
2019-06-29 22:26:48 +00:00
#include <QApplication>
2017-10-16 19:00:47 +00:00
#include <QScrollBar>
#include <QJsonArray>
#include <QJsonObject>
#include <QVBoxLayout>
#include <QRegularExpression>
#include <QToolTip>
#include <QTextBlockUserData>
#include <QPainter>
2020-06-04 03:51:03 +00:00
#include <QPainterPath>
#include <QSplitter>
#include <algorithm>
#include <cmath>
class DisassemblyTextBlockUserData : public QTextBlockUserData
{
public:
DisassemblyLine line;
2021-01-24 14:50:13 +00:00
explicit DisassemblyTextBlockUserData(const DisassemblyLine &line) { this->line = line; }
};
static DisassemblyTextBlockUserData *getUserData(const QTextBlock &block)
{
QTextBlockUserData *userData = block.userData();
2018-03-21 20:32:32 +00:00
if (!userData) {
return nullptr;
}
return static_cast<DisassemblyTextBlockUserData *>(userData);
}
DisassemblyWidget::DisassemblyWidget(MainWindow *main)
2021-01-24 14:50:13 +00:00
: MemoryDockWidget(MemoryWidgetType::Disassembly, main),
mCtxMenu(new DisassemblyContextMenu(this, main)),
mDisasScrollArea(new DisassemblyScrollArea(this)),
mDisasTextEdit(new DisassemblyTextEdit(this))
{
setObjectName(main ? main->getUniqueObjectName(getWidgetType()) : getWidgetType());
updateWindowTitle();
topOffset = bottomOffset = RVA_INVALID;
cursorLineOffset = 0;
cursorCharOffset = 0;
seekFromCursor = false;
// Instantiate the window layout
auto *splitter = new QSplitter;
// Setup the left frame that contains breakpoints and jumps
leftPanel = new DisassemblyLeftPanel(this);
splitter->addWidget(leftPanel);
// Setup the disassembly content
auto *layout = new QHBoxLayout;
layout->addWidget(mDisasTextEdit);
layout->setMargin(0);
mDisasScrollArea->viewport()->setLayout(layout);
splitter->addWidget(mDisasScrollArea);
2019-06-29 22:26:48 +00:00
mDisasScrollArea->setVerticalScrollBarPolicy(Qt::ScrollBarPolicy::ScrollBarAlwaysOff);
// Use stylesheet instead of QWidget::setFrameShape(QFrame::NoShape) to avoid
// issues with dark and light interface themes
mDisasScrollArea->setStyleSheet("QAbstractScrollArea { border: 0px transparent black; }");
mDisasTextEdit->setStyleSheet("QPlainTextEdit { border: 0px transparent black; }");
2019-06-29 22:26:48 +00:00
mDisasTextEdit->setFocusProxy(this);
mDisasTextEdit->setFocusPolicy(Qt::ClickFocus);
mDisasScrollArea->setFocusProxy(this);
mDisasScrollArea->setFocusPolicy(Qt::ClickFocus);
setFocusPolicy(Qt::ClickFocus);
2019-06-29 22:26:48 +00:00
// Behave like all widgets: highlight on focus and hover
2021-01-24 14:50:13 +00:00
connect(qApp, &QApplication::focusChanged, this, [this](QWidget *, QWidget *now) {
QColor borderColor = this == now ? palette().color(QPalette::Highlight)
: palette().color(QPalette::WindowText).darker();
2019-06-29 22:26:48 +00:00
widget()->setStyleSheet(QString("QSplitter { border: %1px solid %2 } \n"
"QSplitter:hover { border: %1px solid %3 } \n")
2021-01-24 14:50:13 +00:00
.arg(devicePixelRatio())
.arg(borderColor.name())
.arg(palette().color(QPalette::Highlight).name()));
2019-06-29 22:26:48 +00:00
});
splitter->setFrameShape(QFrame::Box);
// Set current widget to the splitted layout we just created
setWidget(splitter);
// Resize properly
QList<int> sizes;
sizes.append(3);
2019-06-29 22:26:48 +00:00
sizes.append(1);
splitter->setSizes(sizes);
setAllowedAreas(Qt::AllDockWidgetAreas);
2017-11-30 14:00:22 +00:00
setupFonts();
setupColors();
2021-01-24 14:50:13 +00:00
disasmRefresh = createReplacingRefreshDeferrer<RVA>(
false, [this](const RVA *offset) { refreshDisasm(offset ? *offset : RVA_INVALID); });
2019-01-12 19:25:43 +00:00
2017-11-30 14:00:22 +00:00
maxLines = 0;
updateMaxLines();
mDisasTextEdit->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
mDisasTextEdit->setFont(Config()->getFont());
2017-10-16 19:00:47 +00:00
mDisasTextEdit->setReadOnly(true);
mDisasTextEdit->setLineWrapMode(QPlainTextEdit::WidgetWidth);
// wrapping breaks readCurrentDisassemblyOffset() at the moment :-(
mDisasTextEdit->setWordWrapMode(QTextOption::NoWrap);
// Increase asm text edit margin
QTextDocument *asm_docu = mDisasTextEdit->document();
asm_docu->setDocumentMargin(10);
// Event filter to intercept double clicks in the textbox
// and showing tooltips when hovering above those offsets
mDisasTextEdit->viewport()->installEventFilter(this);
// Set Disas context menu
mDisasTextEdit->setContextMenuPolicy(Qt::CustomContextMenu);
2021-01-24 14:50:13 +00:00
connect(mDisasTextEdit, &QWidget::customContextMenuRequested, this,
&DisassemblyWidget::showDisasContextMenu);
2021-01-24 14:50:13 +00:00
connect(mDisasScrollArea, &DisassemblyScrollArea::scrollLines, this,
&DisassemblyWidget::scrollInstructions);
connect(mDisasScrollArea, &DisassemblyScrollArea::disassemblyResized, this,
&DisassemblyWidget::updateMaxLines);
connectCursorPositionChanged(false);
2021-01-24 14:50:13 +00:00
connect(mDisasTextEdit->verticalScrollBar(), &QScrollBar::valueChanged, this, [=](int value) {
2018-03-21 20:32:32 +00:00
if (value != 0) {
mDisasTextEdit->verticalScrollBar()->setValue(0);
}
});
2021-01-24 14:50:13 +00:00
connect(Core(), &CutterCore::commentsChanged, this, [this]() { refreshDisasm(); });
connect(Core(), SIGNAL(flagsChanged()), this, SLOT(refreshDisasm()));
connect(Core(), SIGNAL(functionsChanged()), this, SLOT(refreshDisasm()));
2021-01-24 14:50:13 +00:00
connect(Core(), &CutterCore::functionRenamed, this, [this]() { refreshDisasm(); });
connect(Core(), SIGNAL(varsChanged()), this, SLOT(refreshDisasm()));
connect(Core(), SIGNAL(asmOptionsChanged()), this, SLOT(refreshDisasm()));
connect(Core(), &CutterCore::instructionChanged, this, &DisassemblyWidget::refreshIfInRange);
connect(Core(), &CutterCore::breakpointsChanged, this, &DisassemblyWidget::refreshIfInRange);
connect(Core(), SIGNAL(refreshCodeViews()), this, SLOT(refreshDisasm()));
connect(Config(), &Configuration::fontsUpdated, this, &DisassemblyWidget::fontsUpdatedSlot);
connect(Config(), &Configuration::colorsUpdated, this, &DisassemblyWidget::colorsUpdatedSlot);
2021-01-24 14:50:13 +00:00
connect(Core(), &CutterCore::refreshAll, this,
[this]() { refreshDisasm(seekable->getOffset()); });
refreshDisasm(seekable->getOffset());
connect(mCtxMenu, &DisassemblyContextMenu::copy, mDisasTextEdit, &QPlainTextEdit::copy);
2017-12-02 15:43:21 +00:00
mCtxMenu->addSeparator();
mCtxMenu->addAction(&syncAction);
2021-01-24 14:50:13 +00:00
connect(seekable, &CutterSeekable::seekableSeekChanged, this,
&DisassemblyWidget::on_seekChanged);
addActions(mCtxMenu->actions());
2021-01-24 14:50:13 +00:00
#define ADD_ACTION(ksq, ctx, slot) \
{ \
QAction *a = new QAction(this); \
a->setShortcut(ksq); \
a->setShortcutContext(ctx); \
addAction(a); \
connect(a, &QAction::triggered, this, (slot)); \
}
// Space to switch to graph
2021-01-24 14:50:13 +00:00
ADD_ACTION(Qt::Key_Space, Qt::WidgetWithChildrenShortcut,
[this] { mainWindow->showMemoryWidget(MemoryWidgetType::Graph); })
ADD_ACTION(Qt::Key_Escape, Qt::WidgetWithChildrenShortcut, &DisassemblyWidget::seekPrev)
2021-01-24 14:50:13 +00:00
ADD_ACTION(Qt::Key_J, Qt::WidgetWithChildrenShortcut,
[this]() { moveCursorRelative(false, false); })
ADD_ACTION(QKeySequence::MoveToNextLine, Qt::WidgetWithChildrenShortcut,
[this]() { moveCursorRelative(false, false); })
ADD_ACTION(Qt::Key_K, Qt::WidgetWithChildrenShortcut,
[this]() { moveCursorRelative(true, false); })
ADD_ACTION(QKeySequence::MoveToPreviousLine, Qt::WidgetWithChildrenShortcut,
[this]() { moveCursorRelative(true, false); })
ADD_ACTION(QKeySequence::MoveToNextPage, Qt::WidgetWithChildrenShortcut,
[this]() { moveCursorRelative(false, true); })
ADD_ACTION(QKeySequence::MoveToPreviousPage, Qt::WidgetWithChildrenShortcut,
[this]() { moveCursorRelative(true, true); })
#undef ADD_ACTION
}
void DisassemblyWidget::setPreviewMode(bool previewMode)
{
2021-01-24 14:50:13 +00:00
mDisasTextEdit->setContextMenuPolicy(previewMode ? Qt::NoContextMenu : Qt::CustomContextMenu);
mCtxMenu->setEnabled(!previewMode);
for (auto action : mCtxMenu->actions()) {
action->setEnabled(!previewMode);
}
for (auto action : actions()) {
2021-01-24 14:50:13 +00:00
if (action->shortcut() == Qt::Key_Space || action->shortcut() == Qt::Key_Escape) {
action->setEnabled(!previewMode);
}
}
if (previewMode) {
seekable->setSynchronization(false);
}
}
2018-03-21 20:32:32 +00:00
QWidget *DisassemblyWidget::getTextWidget()
2017-10-22 10:21:44 +00:00
{
return mDisasTextEdit;
}
QString DisassemblyWidget::getWidgetType()
{
return "Disassembly";
}
QFontMetrics DisassemblyWidget::getFontMetrics()
{
return mDisasTextEdit->fontMetrics();
}
QList<DisassemblyLine> DisassemblyWidget::getLines()
{
return lines;
}
void DisassemblyWidget::refreshIfInRange(RVA offset)
{
if (offset >= topOffset && offset <= bottomOffset) {
refreshDisasm();
}
}
void DisassemblyWidget::refreshDisasm(RVA offset)
2017-10-22 13:55:42 +00:00
{
2021-01-24 14:50:13 +00:00
if (!disasmRefresh->attemptRefresh(offset == RVA_INVALID ? nullptr : new RVA(offset))) {
return;
}
2018-03-21 20:32:32 +00:00
if (offset != RVA_INVALID) {
topOffset = offset;
}
2018-03-21 20:32:32 +00:00
if (topOffset == RVA_INVALID) {
return;
}
2018-03-21 20:32:32 +00:00
if (maxLines <= 0) {
2017-11-18 12:56:48 +00:00
connectCursorPositionChanged(true);
mDisasTextEdit->clear();
2017-11-18 12:56:48 +00:00
connectCursorPositionChanged(false);
return;
}
breakpoints = Core()->getBreakpointsAddresses();
int horizontalScrollValue = mDisasTextEdit->horizontalScrollBar()->value();
mDisasTextEdit->setLockScroll(true); // avoid flicker
2018-03-21 20:32:32 +00:00
// Retrieve disassembly lines
{
TempConfig tempConfig;
2021-01-24 14:50:13 +00:00
tempConfig.set("scr.color", COLOR_MODE_16M).set("asm.lines", false);
lines = Core()->disassembleLines(topOffset, maxLines);
}
connectCursorPositionChanged(true);
2017-10-22 13:55:42 +00:00
mDisasTextEdit->document()->clear();
QTextCursor cursor(mDisasTextEdit->document());
QTextBlockFormat regular = cursor.blockFormat();
for (const DisassemblyLine &line : lines) {
if (line.offset < topOffset) { // overflow
break;
}
cursor.insertHtml(line.text);
2018-09-30 20:00:53 +00:00
if (Core()->isBreakpoint(breakpoints, line.offset)) {
QTextBlockFormat f;
f.setBackground(ConfigColor("gui.breakpoint_background"));
cursor.setBlockFormat(f);
}
auto a = new DisassemblyTextBlockUserData(line);
cursor.block().setUserData(a);
cursor.insertBlock();
cursor.setBlockFormat(regular);
}
if (!lines.isEmpty()) {
bottomOffset = lines[qMin(lines.size(), maxLines) - 1].offset;
if (bottomOffset < topOffset) {
bottomOffset = RVA_MAX;
}
} else {
bottomOffset = topOffset;
}
connectCursorPositionChanged(false);
updateCursorPosition();
// remove additional lines
QTextCursor tc = mDisasTextEdit->textCursor();
tc.movePosition(QTextCursor::Start);
tc.movePosition(QTextCursor::Down, QTextCursor::MoveAnchor, maxLines - 1);
tc.movePosition(QTextCursor::EndOfLine);
tc.movePosition(QTextCursor::End, QTextCursor::KeepAnchor);
tc.removeSelectedText();
mDisasTextEdit->setLockScroll(false);
mDisasTextEdit->horizontalScrollBar()->setValue(horizontalScrollValue);
// Refresh the left panel (trigger paintEvent)
leftPanel->update();
}
void DisassemblyWidget::scrollInstructions(int count)
{
2018-03-21 20:32:32 +00:00
if (count == 0) {
return;
2017-10-22 13:55:42 +00:00
}
RVA offset;
2018-03-21 20:32:32 +00:00
if (count > 0) {
offset = Core()->nextOpAddr(topOffset, count);
if (offset < topOffset) {
offset = RVA_MAX;
}
2018-03-21 20:32:32 +00:00
} else {
offset = Core()->prevOpAddr(topOffset, -count);
if (offset > topOffset) {
offset = 0;
}
}
refreshDisasm(offset);
}
bool DisassemblyWidget::updateMaxLines()
{
int currentMaxLines = qhelpers::getMaxFullyDisplayedLines(mDisasTextEdit);
2018-03-21 20:32:32 +00:00
if (currentMaxLines != maxLines) {
maxLines = currentMaxLines;
refreshDisasm();
return true;
}
return false;
}
2017-10-22 13:55:42 +00:00
void DisassemblyWidget::highlightCurrentLine()
{
2017-10-22 13:55:42 +00:00
QList<QTextEdit::ExtraSelection> extraSelections;
2019-05-23 16:22:31 +00:00
QColor highlightColor = ConfigColor("lineHighlight");
2017-12-02 15:03:55 +00:00
2017-10-22 13:55:42 +00:00
// Highlight the current word
QTextCursor cursor = mDisasTextEdit->textCursor();
auto clickedCharPos = cursor.positionInBlock();
// Select the line (BlockUnderCursor matches a line with current implementation)
cursor.select(QTextCursor::BlockUnderCursor);
// Remove any non-breakable space from the current line
QString searchString = cursor.selectedText().replace("\xc2\xa0", " ");
// Cut the line in "tokens" that can be highlighted
static const QRegularExpression tokenRegExp(R"(\b(?<!\.)([^\s]+)\b(?!\.))");
QRegularExpressionMatchIterator i = tokenRegExp.globalMatch(searchString);
while (i.hasNext()) {
QRegularExpressionMatch match = i.next();
// Current token is under our cursor, select this one
if (match.capturedStart() <= clickedCharPos && match.capturedEnd() > clickedCharPos) {
curHighlightedWord = match.captured();
break;
}
}
// Highlight the current line
QTextEdit::ExtraSelection highlightSelection;
highlightSelection.cursor = cursor;
highlightSelection.cursor.movePosition(QTextCursor::Start);
while (true) {
RVA lineOffset = readDisassemblyOffset(highlightSelection.cursor);
if (lineOffset == seekable->getOffset()) {
highlightSelection.format.setBackground(highlightColor);
highlightSelection.format.setProperty(QTextFormat::FullWidthSelection, true);
highlightSelection.cursor.clearSelection();
extraSelections.append(highlightSelection);
} else if (lineOffset != RVA_INVALID && lineOffset > seekable->getOffset()) {
break;
}
highlightSelection.cursor.movePosition(QTextCursor::EndOfLine);
if (highlightSelection.cursor.atEnd()) {
break;
}
highlightSelection.cursor.movePosition(QTextCursor::Down);
}
2017-12-02 15:03:55 +00:00
// Highlight all the words in the document same as the current one
extraSelections.append(createSameWordsSelections(mDisasTextEdit, curHighlightedWord));
2017-10-13 13:53:23 +00:00
mDisasTextEdit->setExtraSelections(extraSelections);
}
void DisassemblyWidget::highlightPCLine()
{
RVA PCAddr = Core()->getProgramCounterValue();
QColor highlightPCColor = ConfigColor("highlightPC");
QList<QTextEdit::ExtraSelection> pcSelections;
QTextEdit::ExtraSelection highlightSelection;
highlightSelection.cursor = mDisasTextEdit->textCursor();
highlightSelection.cursor.movePosition(QTextCursor::Start);
if (PCAddr != RVA_INVALID) {
while (true) {
RVA lineOffset = readDisassemblyOffset(highlightSelection.cursor);
if (lineOffset == PCAddr) {
highlightSelection.format.setBackground(highlightPCColor);
highlightSelection.format.setProperty(QTextFormat::FullWidthSelection, true);
highlightSelection.cursor.clearSelection();
pcSelections.append(highlightSelection);
} else if (lineOffset != RVA_INVALID && lineOffset > PCAddr) {
break;
}
highlightSelection.cursor.movePosition(QTextCursor::EndOfLine);
if (highlightSelection.cursor.atEnd()) {
break;
}
highlightSelection.cursor.movePosition(QTextCursor::Down);
}
}
// Don't override any extraSelections already set
QList<QTextEdit::ExtraSelection> currentSelections = mDisasTextEdit->extraSelections();
currentSelections.append(pcSelections);
mDisasTextEdit->setExtraSelections(currentSelections);
2017-10-22 13:55:42 +00:00
}
void DisassemblyWidget::showDisasContextMenu(const QPoint &pt)
{
mCtxMenu->exec(mDisasTextEdit->mapToGlobal(pt));
2017-10-22 13:55:42 +00:00
}
RVA DisassemblyWidget::readCurrentDisassemblyOffset()
2017-11-28 11:56:38 +00:00
{
QTextCursor tc = mDisasTextEdit->textCursor();
return readDisassemblyOffset(tc);
}
RVA DisassemblyWidget::readDisassemblyOffset(QTextCursor tc)
2017-10-22 13:55:42 +00:00
{
auto userData = getUserData(tc.block());
2018-03-21 20:32:32 +00:00
if (!userData) {
return RVA_INVALID;
2017-10-22 13:55:42 +00:00
}
return userData->line.offset;
2017-10-22 13:55:42 +00:00
}
void DisassemblyWidget::updateCursorPosition()
2017-10-22 13:55:42 +00:00
{
RVA offset = seekable->getOffset();
// already fine where it is?
RVA currentLineOffset = readCurrentDisassemblyOffset();
2018-03-21 20:32:32 +00:00
if (currentLineOffset == offset) {
return;
}
connectCursorPositionChanged(true);
2018-03-21 20:32:32 +00:00
if (offset < topOffset || (offset > bottomOffset && bottomOffset != RVA_INVALID)) {
mDisasTextEdit->moveCursor(QTextCursor::Start);
2021-01-24 14:50:13 +00:00
mDisasTextEdit->setExtraSelections(
createSameWordsSelections(mDisasTextEdit, curHighlightedWord));
2018-03-21 20:32:32 +00:00
} else {
RVA currentCursorOffset = readCurrentDisassemblyOffset();
QTextCursor originalCursor = mDisasTextEdit->textCursor();
QTextCursor cursor = originalCursor;
cursor.movePosition(QTextCursor::Start);
2018-03-21 20:32:32 +00:00
while (true) {
RVA lineOffset = readDisassemblyOffset(cursor);
2018-03-21 20:32:32 +00:00
if (lineOffset == offset) {
if (cursorLineOffset > 0) {
2021-01-24 14:50:13 +00:00
cursor.movePosition(QTextCursor::Down, QTextCursor::MoveAnchor,
cursorLineOffset);
}
if (cursorCharOffset > 0) {
cursor.movePosition(QTextCursor::StartOfLine);
2021-01-24 14:50:13 +00:00
cursor.movePosition(QTextCursor::Right, QTextCursor::MoveAnchor,
cursorCharOffset);
}
mDisasTextEdit->setTextCursor(cursor);
highlightCurrentLine();
break;
2018-03-21 20:32:32 +00:00
} else if (lineOffset != RVA_INVALID && lineOffset > offset) {
mDisasTextEdit->moveCursor(QTextCursor::Start);
mDisasTextEdit->setExtraSelections({});
break;
}
cursor.movePosition(QTextCursor::EndOfLine);
2018-03-21 20:32:32 +00:00
if (cursor.atEnd()) {
break;
}
cursor.movePosition(QTextCursor::Down);
}
// this is true if a seek came from the user clicking on a line.
// then the cursor should be restored 1:1 to retain selection and cursor position.
2018-03-21 20:32:32 +00:00
if (currentCursorOffset == offset) {
mDisasTextEdit->setTextCursor(originalCursor);
}
}
highlightPCLine();
connectCursorPositionChanged(false);
}
void DisassemblyWidget::connectCursorPositionChanged(bool disconnect)
{
2018-03-21 20:32:32 +00:00
if (disconnect) {
2021-01-24 14:50:13 +00:00
QObject::disconnect(mDisasTextEdit, &QPlainTextEdit::cursorPositionChanged, this,
&DisassemblyWidget::cursorPositionChanged);
2018-03-21 20:32:32 +00:00
} else {
2021-01-24 14:50:13 +00:00
connect(mDisasTextEdit, &QPlainTextEdit::cursorPositionChanged, this,
&DisassemblyWidget::cursorPositionChanged);
}
}
void DisassemblyWidget::cursorPositionChanged()
{
RVA offset = readCurrentDisassemblyOffset();
cursorLineOffset = 0;
QTextCursor c = mDisasTextEdit->textCursor();
cursorCharOffset = c.positionInBlock();
2018-03-21 20:32:32 +00:00
while (c.blockNumber() > 0) {
c.movePosition(QTextCursor::PreviousBlock);
2018-03-21 20:32:32 +00:00
if (readDisassemblyOffset(c) != offset) {
break;
}
cursorLineOffset++;
}
seekFromCursor = true;
seekable->seek(offset);
seekFromCursor = false;
highlightCurrentLine();
highlightPCLine();
2017-12-02 15:43:21 +00:00
mCtxMenu->setCanCopy(mDisasTextEdit->textCursor().hasSelection());
if (mDisasTextEdit->textCursor().hasSelection()) {
// A word is selected so use it
mCtxMenu->setCurHighlightedWord(mDisasTextEdit->textCursor().selectedText());
} else {
// No word is selected so use the word under the cursor
mCtxMenu->setCurHighlightedWord(curHighlightedWord);
}
2019-06-29 22:26:48 +00:00
leftPanel->update();
}
void DisassemblyWidget::moveCursorRelative(bool up, bool page)
{
2018-03-21 20:32:32 +00:00
if (page) {
RVA offset;
2018-03-21 20:32:32 +00:00
if (!up) {
offset = Core()->nextOpAddr(bottomOffset, 1);
if (offset < bottomOffset) {
offset = RVA_MAX;
}
2018-03-21 20:32:32 +00:00
} else {
offset = Core()->prevOpAddr(topOffset, maxLines);
if (offset > topOffset) {
offset = 0;
} else {
// disassembly from calculated offset may have more than maxLines lines
// move some instructions down if necessary.
auto lines = Core()->disassembleLines(offset, maxLines).toVector();
int oldTopLine;
for (oldTopLine = lines.length(); oldTopLine > 0; oldTopLine--) {
if (lines[oldTopLine - 1].offset < topOffset) {
break;
}
}
int overflowLines = oldTopLine - maxLines;
if (overflowLines > 0) {
while (lines[overflowLines - 1].offset == lines[overflowLines].offset
2021-01-24 14:50:13 +00:00
&& overflowLines < lines.length() - 1) {
overflowLines++;
}
offset = lines[overflowLines].offset;
}
}
}
refreshDisasm(offset);
2018-03-21 20:32:32 +00:00
} else { // normal arrow keys
int blockCount = mDisasTextEdit->blockCount();
2018-03-21 20:32:32 +00:00
if (blockCount < 1) {
return;
}
int blockNumber = mDisasTextEdit->textCursor().blockNumber();
2018-03-21 20:32:32 +00:00
if (blockNumber == blockCount - 1 && !up) {
scrollInstructions(1);
2018-03-21 20:32:32 +00:00
} else if (blockNumber == 0 && up) {
scrollInstructions(-1);
}
mDisasTextEdit->moveCursor(up ? QTextCursor::Up : QTextCursor::Down);
// handle cases where top instruction offsets change
RVA offset = readCurrentDisassemblyOffset();
if (offset != seekable->getOffset()) {
seekable->seek(offset);
highlightCurrentLine();
highlightPCLine();
}
}
}
void DisassemblyWidget::jumpToOffsetUnderCursor(const QTextCursor &cursor)
{
RVA offset = readDisassemblyOffset(cursor);
seekable->seekToReference(offset);
}
bool DisassemblyWidget::eventFilter(QObject *obj, QEvent *event)
{
if (event->type() == QEvent::MouseButtonDblClick
&& (obj == mDisasTextEdit || obj == mDisasTextEdit->viewport())) {
QMouseEvent *mouseEvent = static_cast<QMouseEvent *>(event);
2017-11-28 11:56:38 +00:00
2021-01-24 14:50:13 +00:00
const QTextCursor &cursor =
mDisasTextEdit->cursorForPosition(QPoint(mouseEvent->x(), mouseEvent->y()));
jumpToOffsetUnderCursor(cursor);
2017-11-28 11:56:38 +00:00
return true;
2021-01-24 14:50:13 +00:00
} else if (event->type() == QEvent::ToolTip && obj == mDisasTextEdit->viewport()) {
QHelpEvent *helpEvent = static_cast<QHelpEvent *>(event);
auto cursorForWord = mDisasTextEdit->cursorForPosition(helpEvent->pos());
cursorForWord.select(QTextCursor::WordUnderCursor);
RVA offsetFrom = readDisassemblyOffset(cursorForWord);
RVA offsetTo = RVA_INVALID;
QList<XrefDescription> refs = Core()->getXRefs(offsetFrom, false, false);
if (refs.length()) {
if (refs.length() > 1) {
qWarning() << tr("More than one (%1) references here. Weird behaviour expected.")
2021-01-24 14:50:13 +00:00
.arg(refs.length());
}
2021-01-24 14:50:13 +00:00
offsetTo = refs.at(0).to; // This is the offset we want to preview
2021-01-24 14:50:13 +00:00
if (Q_UNLIKELY(offsetFrom != refs.at(0).from)) {
qWarning() << tr("offsetFrom (%1) differs from refs.at(0).from (%(2))")
2021-01-24 14:50:13 +00:00
.arg(offsetFrom)
.arg(refs.at(0).from);
}
// Only if the offset we point *to* is different from the one the cursor is currently
// on *and* the former is a valid offset, we are allowed to get a preview of offsetTo
2021-01-24 14:50:13 +00:00
if (offsetTo != offsetFrom && offsetTo != RVA_INVALID) {
QStringList disasmPreview = Core()->getDisassemblyPreview(offsetTo, 10);
// Last check to make sure the returned preview isn't an empty text (QStringList)
if (!disasmPreview.isEmpty()) {
const QFont &fnt = Config()->getFont();
2021-01-24 14:50:13 +00:00
QFontMetrics fm { fnt };
QString tooltip =
QString("<html><div style=\"font-family: %1; font-size: %2pt; "
"white-space: nowrap;\"><div style=\"margin-bottom: "
"10px;\"><strong>Disassembly Preview</strong>:<br>%3<div>")
.arg(fnt.family())
.arg(qMax(6, fnt.pointSize() - 1))
.arg(disasmPreview.join("<br>"));
QToolTip::showText(helpEvent->globalPos(), tooltip, this, QRect(), 3500);
}
}
}
2017-11-28 11:56:38 +00:00
return true;
}
return MemoryDockWidget::eventFilter(obj, event);
}
void DisassemblyWidget::keyPressEvent(QKeyEvent *event)
{
2021-01-24 14:50:13 +00:00
if (event->key() == Qt::Key_Return) {
const QTextCursor cursor = mDisasTextEdit->textCursor();
jumpToOffsetUnderCursor(cursor);
}
MemoryDockWidget::keyPressEvent(event);
}
QString DisassemblyWidget::getWindowTitle() const
{
return tr("Disassembly");
}
void DisassemblyWidget::on_seekChanged(RVA offset)
{
2018-03-21 20:32:32 +00:00
if (!seekFromCursor) {
cursorLineOffset = 0;
cursorCharOffset = 0;
}
2021-01-24 14:50:13 +00:00
if (topOffset != RVA_INVALID && offset >= topOffset && offset <= bottomOffset) {
// if the line with the seek offset is currently visible, just move the cursor there
updateCursorPosition();
2018-03-21 20:32:32 +00:00
} else {
// otherwise scroll there
refreshDisasm(offset);
}
mCtxMenu->setOffset(offset);
}
void DisassemblyWidget::fontsUpdatedSlot()
{
2017-11-30 14:00:22 +00:00
setupFonts();
2018-03-21 20:32:32 +00:00
if (!updateMaxLines()) { // updateMaxLines() returns true if it already refreshed.
refreshDisasm();
}
}
2017-10-16 19:00:47 +00:00
2017-11-20 11:23:37 +00:00
void DisassemblyWidget::colorsUpdatedSlot()
{
2017-11-30 14:00:22 +00:00
setupColors();
2017-11-20 11:23:37 +00:00
refreshDisasm();
}
2017-11-30 14:00:22 +00:00
void DisassemblyWidget::setupFonts()
{
mDisasTextEdit->setFont(Config()->getFont());
}
void DisassemblyWidget::setupColors()
{
mDisasTextEdit->setStyleSheet(QString("QPlainTextEdit { background-color: %1; color: %2; }")
2021-01-24 14:50:13 +00:00
.arg(ConfigColor("gui.background").name())
.arg(ConfigColor("btext").name()));
2017-11-30 14:00:22 +00:00
}
2021-01-24 14:50:13 +00:00
DisassemblyScrollArea::DisassemblyScrollArea(QWidget *parent) : QAbstractScrollArea(parent) {}
bool DisassemblyScrollArea::viewportEvent(QEvent *event)
{
int dy = verticalScrollBar()->value() - 5;
2018-03-21 20:32:32 +00:00
if (dy != 0) {
emit scrollLines(dy);
}
2018-03-21 20:32:32 +00:00
if (event->type() == QEvent::Resize) {
emit disassemblyResized();
}
resetScrollBars();
return QAbstractScrollArea::viewportEvent(event);
}
void DisassemblyScrollArea::resetScrollBars()
{
verticalScrollBar()->blockSignals(true);
verticalScrollBar()->setRange(0, 10);
verticalScrollBar()->setValue(5);
verticalScrollBar()->blockSignals(false);
}
qreal DisassemblyTextEdit::textOffset() const
{
2021-01-24 14:50:13 +00:00
return (blockBoundingGeometry(document()->begin()).topLeft() + contentOffset()).y();
}
bool DisassemblyTextEdit::viewportEvent(QEvent *event)
{
2018-03-21 20:32:32 +00:00
switch (event->type()) {
case QEvent::Type::Wheel:
return false;
default:
return QAbstractScrollArea::viewportEvent(event);
}
}
void DisassemblyTextEdit::scrollContentsBy(int dx, int dy)
{
2018-03-21 20:32:32 +00:00
if (!lockScroll) {
QPlainTextEdit::scrollContentsBy(dx, dy);
}
}
void DisassemblyTextEdit::keyPressEvent(QKeyEvent *event)
{
Q_UNUSED(event)
2021-01-24 14:50:13 +00:00
// QPlainTextEdit::keyPressEvent(event);
}
void DisassemblyTextEdit::mousePressEvent(QMouseEvent *event)
{
QPlainTextEdit::mousePressEvent(event);
2018-03-21 20:32:32 +00:00
if (event->button() == Qt::RightButton && !textCursor().hasSelection()) {
setTextCursor(cursorForPosition(event->pos()));
}
}
void DisassemblyWidget::seekPrev()
{
Core()->seekPrev();
}
/*********************
* Left panel
*********************/
2019-06-29 22:26:48 +00:00
DisassemblyLeftPanel::DisassemblyLeftPanel(DisassemblyWidget *disas)
{
this->disas = disas;
arrows.reserve((arrowsSize * 3) / 2);
}
2021-01-24 14:50:13 +00:00
void DisassemblyLeftPanel::wheelEvent(QWheelEvent *event)
{
int count = -(event->angleDelta() / 15).y();
count -= (count > 0 ? 5 : -5);
this->disas->scrollInstructions(count);
}
void DisassemblyLeftPanel::paintEvent(QPaintEvent *event)
{
2019-06-29 22:26:48 +00:00
Q_UNUSED(event)
2019-07-06 09:08:48 +00:00
constexpr int penSizePix = 1;
2019-06-29 22:26:48 +00:00
constexpr int distanceBetweenLines = 10;
constexpr int arrowWidth = 5;
int rightOffset = size().rwidth();
2021-01-24 14:50:13 +00:00
auto tEdit = qobject_cast<DisassemblyTextEdit *>(disas->getTextWidget());
int topOffset = int(tEdit->contentsMargins().top() + tEdit->textOffset());
int lineHeight = disas->getFontMetrics().height();
2019-06-29 22:26:48 +00:00
QColor arrowColorDown = ConfigColor("flow");
QColor arrowColorUp = ConfigColor("cflow");
QPainter p(this);
2019-06-29 22:26:48 +00:00
QPen penDown(arrowColorDown, penSizePix, Qt::SolidLine, Qt::FlatCap, Qt::RoundJoin);
QPen penUp(arrowColorUp, penSizePix, Qt::SolidLine, Qt::FlatCap, Qt::RoundJoin);
// Fill background
p.fillRect(event->rect(), Config()->getColor("gui.background").darker(115));
QList<DisassemblyLine> lines = disas->getLines();
using LineInfo = std::pair<RVA, int>;
std::vector<LineInfo> lineOffsets;
lineOffsets.reserve(lines.size());
for (int i = 0; i < lines.size(); i++) {
lineOffsets.emplace_back(lines[i].offset, i);
if (lines[i].arrow != RVA_INVALID) {
Arrow a { lines[i].offset, lines[i].arrow };
bool contains = std::find_if(std::begin(arrows), std::end(arrows),
[&](const Arrow &it) {
return it.min == a.min && it.max == a.max;
})
!= std::end(arrows);
if (!contains) {
arrows.emplace_back(lines[i].offset, lines[i].arrow);
}
2019-06-29 22:26:48 +00:00
}
}
auto offsetToLine = [&](RVA offset) -> int {
// binary search because linesPixPosition is sorted by offset
if (lineOffsets.empty()) {
return 0;
2019-06-29 22:26:48 +00:00
}
if (offset < lineOffsets[0].first) {
return -2;
}
auto res = lower_bound(std::begin(lineOffsets), std::end(lineOffsets), offset,
[](const LineInfo &it, RVA offset) { return it.first < offset; });
if (res == std::end(lineOffsets)) {
return lines.size() + 2;
}
return res->second;
};
2019-06-29 22:26:48 +00:00
RVA visibleTop = lineOffsets[0].first, visibleBottom = lineOffsets.back().first;
auto fitsInScreen = [&](const Arrow &a) { return visibleBottom - visibleTop < a.length(); };
std::sort(std::begin(arrows), std::end(arrows), [&](const Arrow &l, const Arrow &r) {
int lScreen = fitsInScreen(l), rScreen = fitsInScreen(r);
if (lScreen != rScreen) {
return lScreen < rScreen;
2019-06-29 22:26:48 +00:00
}
return l.max != r.max ? l.max < r.max : l.min > r.min;
});
RVA max = 0;
RVA min = RVA_MAX;
for (auto &it : arrows) {
min = std::min(it.min, min);
max = std::max(it.max, max);
it.level = 0;
}
uint32_t maxLevel = 0;
if (!arrows.empty()) {
MinMaxAccumulateTree<uint32_t> maxLevelTree(max - min + 2);
for (Arrow &arrow : arrows) {
RVA top = arrow.min >= min ? arrow.min - min + 1 : 0;
RVA bottom = std::min(arrow.max - min, max - min) + 2;
auto minMax = maxLevelTree.rangeMinMax(top, bottom);
if (minMax.first > 1) {
arrow.level = 1;
} else {
arrow.level = minMax.second + 1;
maxLevel = std::max(maxLevel, arrow.level);
}
maxLevelTree.updateRange(top, bottom, arrow.level);
2019-06-29 22:26:48 +00:00
}
}
2019-06-29 22:26:48 +00:00
const RVA currOffset = disas->getSeekable()->getOffset();
const qreal pixelRatio = qhelpers::devicePixelRatio(p.device());
const Arrow visibleRange { lines.first().offset, lines.last().offset };
// Draw the lines
for (const auto &arrow : arrows) {
if (!visibleRange.intersects(arrow)) {
continue;
}
int lineOffset =
int((distanceBetweenLines * arrow.level + distanceBetweenLines) * pixelRatio);
p.setPen(arrow.up ? penUp : penDown);
if (arrow.min == currOffset || arrow.max == currOffset) {
2019-06-29 22:26:48 +00:00
QPen pen = p.pen();
pen.setWidthF((penSizePix * 3) / 2.0);
2019-06-29 22:26:48 +00:00
p.setPen(pen);
}
2019-06-29 22:26:48 +00:00
auto lineToPixels = [&](int i) {
int offset = int(arrow.up ? std::floor(pixelRatio) : -std::floor(pixelRatio));
return i * lineHeight + lineHeight / 2 + topOffset + offset;
};
int lineStartNumber = offsetToLine(arrow.jmpFromOffset());
int currentLineYPos = lineToPixels(lineStartNumber);
int arrowLineNumber = offsetToLine(arrow.jmpToffset());
int lineArrowY = lineToPixels(arrowLineNumber);
// Draw the lines
p.drawLine(rightOffset, currentLineYPos, rightOffset - lineOffset, currentLineYPos); // left
p.drawLine(rightOffset - lineOffset, currentLineYPos, rightOffset - lineOffset,
lineArrowY); // horizontal
p.drawLine(rightOffset - lineOffset, lineArrowY, rightOffset, lineArrowY); // right
{ // triangle
2019-06-29 22:26:48 +00:00
QPainterPath arrow;
arrow.moveTo(rightOffset - arrowWidth, lineArrowY + arrowWidth);
arrow.lineTo(rightOffset - arrowWidth, lineArrowY - arrowWidth);
arrow.lineTo(rightOffset, lineArrowY);
p.fillPath(arrow, p.pen().brush());
}
}
if (maxLevel > maxLevelBeforeFlush) {
arrows.clear();
}
const size_t eraseN = arrows.size() > arrowsSize ? arrows.size() - arrowsSize : 0;
if (eraseN > 0) {
const bool scrolledDown = lastBeginOffset > lines.first().offset;
std::sort(std::begin(arrows), std::end(arrows), [&](const Arrow &l, const Arrow &r) {
if (scrolledDown) {
return l.jmpFromOffset() < r.jmpFromOffset();
} else {
return l.jmpFromOffset() > r.jmpFromOffset();
}
});
arrows.erase(std::end(arrows) - eraseN, std::end(arrows));
}
lastBeginOffset = lines.first().offset;
}