Skip to content

Commit

Permalink
Qt Debugger: Remove VFPU dialog.
Browse files Browse the repository at this point in the history
Being replaced by new WeBsocket based debugger with better maintenance.
  • Loading branch information
unknownbrackets committed Jun 6, 2018
1 parent 360e28f commit 18f0168
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 316 deletions.
5 changes: 0 additions & 5 deletions CMakeLists.txt
Expand Up @@ -761,7 +761,6 @@ elseif(USING_QT_UI)
Qt/Debugger/debugger_displaylist.ui
Qt/Debugger/debugger_memory.ui
Qt/Debugger/debugger_memorytex.ui
Qt/Debugger/debugger_vfpu.ui
)
qt5_wrap_ui(QT_UI_GEN ${Qt_UI})
list(APPEND NativeAppSource
Expand All @@ -778,8 +777,6 @@ elseif(USING_QT_UI)
Qt/Debugger/ctrlmemview.h
Qt/Debugger/ctrlregisterlist.cpp
Qt/Debugger/ctrlregisterlist.h
Qt/Debugger/ctrlvfpuview.cpp
Qt/Debugger/ctrlvfpuview.h
Qt/Debugger/debugger_disasm.cpp
Qt/Debugger/debugger_disasm.h
Qt/Debugger/debugger_displaylist.cpp
Expand All @@ -788,8 +785,6 @@ elseif(USING_QT_UI)
Qt/Debugger/debugger_memory.h
Qt/Debugger/debugger_memorytex.cpp
Qt/Debugger/debugger_memorytex.h
Qt/Debugger/debugger_vfpu.cpp
Qt/Debugger/debugger_vfpu.h
)
add_definitions(-DUSING_QT_UI)
include_directories(${CMAKE_CURRENT_BINARY_DIR} Qt Qt/Debugger)
Expand Down
93 changes: 0 additions & 93 deletions Qt/Debugger/ctrlvfpuview.cpp

This file was deleted.

38 changes: 0 additions & 38 deletions Qt/Debugger/ctrlvfpuview.h

This file was deleted.

13 changes: 0 additions & 13 deletions Qt/Debugger/debugger_disasm.cpp
Expand Up @@ -29,8 +29,6 @@ Debugger_Disasm::Debugger_Disasm(DebugInterface *_cpu, MainWindow* mainWindow_,
{
ui->setupUi(this);

vfpudlg = new Debugger_VFPU(_cpu, mainWindow, this);

ui->DisasmView->setWindowTitle(_cpu->GetName());

QObject::connect(ui->RegListScroll,SIGNAL(actionTriggered(int)), ui->RegList, SLOT(scrollChanged(int)));
Expand Down Expand Up @@ -58,11 +56,6 @@ Debugger_Disasm::~Debugger_Disasm()
delete ui;
}

void Debugger_Disasm::ShowVFPU()
{
vfpudlg->show();
}

void Debugger_Disasm::Update()
{
ui->RegList->redraw();
Expand Down Expand Up @@ -108,7 +101,6 @@ void Debugger_Disasm::UpdateDialog()
ui->DisasmView->setAlign(cpu->getInstructionSize(0));
ui->DisasmView->redraw();
ui->RegList->redraw();
vfpudlg->Update();
UpdateBreakpoints();
UpdateThread();
UpdateDisplayList();
Expand Down Expand Up @@ -267,11 +259,6 @@ void Debugger_Disasm::ShowMemory(u32 addr)
mainWindow->ShowMemory(addr);
}

void Debugger_Disasm::on_vfpu_clicked()
{
ShowVFPU();
}

void Debugger_Disasm::on_FuncList_itemClicked(QListWidgetItem *item)
{
u32 addr = item->data(Qt::UserRole).toInt();
Expand Down
4 changes: 0 additions & 4 deletions Qt/Debugger/debugger_disasm.h
Expand Up @@ -4,7 +4,6 @@
#include "Core/MIPS/MIPSStackWalk.h"
#include "Core/HLE/sceKernelThread.h"
#include "Core/Debugger/DebugInterface.h"
#include "debugger_vfpu.h"
#include <QDialog>
#include <QListWidgetItem>
#include <QTreeWidgetItem>
Expand All @@ -24,7 +23,6 @@ class Debugger_Disasm : public QDialog
~Debugger_Disasm();
void SetDebugMode(bool _bDebug);

void ShowVFPU();
void Go();
void Step();
void StepOver();
Expand Down Expand Up @@ -73,7 +71,6 @@ private slots:
void on_DisasmView_customContextMenuRequested(const QPoint &pos);

void on_RegList_customContextMenuRequested(const QPoint &pos);
void on_vfpu_clicked();
void on_FuncList_itemClicked(QListWidgetItem *item);
void on_breakpointsList_itemClicked(QTreeWidgetItem *item, int column);
void on_breakpointsList_customContextMenuRequested(const QPoint &pos);
Expand All @@ -92,7 +89,6 @@ private slots:
Ui::Debugger_Disasm *ui;
DebugInterface* cpu;
MainWindow* mainWindow;
Debugger_VFPU* vfpudlg;
u32 breakpointAddr;
QTreeWidgetItem* threadRowSelected;
QTreeWidgetItem* displayListRowSelected;
Expand Down
7 changes: 0 additions & 7 deletions Qt/Debugger/debugger_disasm.ui
Expand Up @@ -122,13 +122,6 @@
</property>
</spacer>
</item>
<item>
<widget class="QPushButton" name="vfpu">
<property name="text">
<string>Show VFPU</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
Expand Down
38 changes: 0 additions & 38 deletions Qt/Debugger/debugger_vfpu.cpp

This file was deleted.

31 changes: 0 additions & 31 deletions Qt/Debugger/debugger_vfpu.h

This file was deleted.

0 comments on commit 18f0168

Please sign in to comment.