summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorSepalani <sepalani@hotmail.fr>2017-10-05 20:09:12 +0200
committerSepalani <sepalani@hotmail.fr>2017-10-05 20:22:16 +0200
commitf65dcdcdca969031e207cdd4cb204a18cdd8e9a1 (patch)
treed02619e0edacffd11e065b3a7bf9996f57308fb3 /Source/Core
parent428f0fa69b631d72cf55cb83695ff8475bc2ba18 (diff)
DebugInterface: Rename InsertBLR to Patch
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Common/DebugInterface.h2
-rw-r--r--Source/Core/Core/Debugger/PPCDebugInterface.cpp2
-rw-r--r--Source/Core/Core/Debugger/PPCDebugInterface.h2
-rw-r--r--Source/Core/Core/HW/DSPLLE/DSPDebugInterface.cpp4
-rw-r--r--Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h2
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeView.cpp6
6 files changed, 9 insertions, 9 deletions
diff --git a/Source/Core/Common/DebugInterface.h b/Source/Core/Common/DebugInterface.h
index 521c16a8c7..d4459f0272 100644
--- a/Source/Core/Common/DebugInterface.h
+++ b/Source/Core/Common/DebugInterface.h
@@ -39,7 +39,7 @@ public:
virtual void SetPC(unsigned int /*address*/) {}
virtual void Step() {}
virtual void RunToBreakpoint() {}
- virtual void InsertBLR(unsigned int /*address*/, unsigned int /*value*/) {}
+ virtual void Patch(unsigned int /*address*/, unsigned int /*value*/) {}
virtual int GetColor(unsigned int /*address*/) { return 0xFFFFFFFF; }
virtual std::string GetDescription(unsigned int /*address*/) = 0;
};
diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.cpp b/Source/Core/Core/Debugger/PPCDebugInterface.cpp
index 428ce694b1..ec54e0c74d 100644
--- a/Source/Core/Core/Debugger/PPCDebugInterface.cpp
+++ b/Source/Core/Core/Debugger/PPCDebugInterface.cpp
@@ -156,7 +156,7 @@ void PPCDebugInterface::ToggleMemCheck(unsigned int address, bool read, bool wri
}
}
-void PPCDebugInterface::InsertBLR(unsigned int address, unsigned int value)
+void PPCDebugInterface::Patch(unsigned int address, unsigned int value)
{
PowerPC::HostWrite_U32(value, address);
PowerPC::ScheduleInvalidateCacheThreadSafe(address);
diff --git a/Source/Core/Core/Debugger/PPCDebugInterface.h b/Source/Core/Core/Debugger/PPCDebugInterface.h
index 3fa9680bb6..2ea9345286 100644
--- a/Source/Core/Core/Debugger/PPCDebugInterface.h
+++ b/Source/Core/Core/Debugger/PPCDebugInterface.h
@@ -42,7 +42,7 @@ public:
void SetPC(unsigned int address) override;
void Step() override {}
void RunToBreakpoint() override;
- void InsertBLR(unsigned int address, unsigned int value) override;
+ void Patch(unsigned int address, unsigned int value) override;
int GetColor(unsigned int address) override;
std::string GetDescription(unsigned int address) override;
};
diff --git a/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.cpp b/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.cpp
index 1f92be7304..25fc0dc241 100644
--- a/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.cpp
+++ b/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.cpp
@@ -132,9 +132,9 @@ void DSPDebugInterface::ToggleMemCheck(unsigned int address, bool read, bool wri
PanicAlert("MemCheck functionality not supported in DSP module.");
}
-void DSPDebugInterface::InsertBLR(unsigned int address, unsigned int value)
+void DSPDebugInterface::Patch(unsigned int address, unsigned int value)
{
- PanicAlert("insertBLR functionality not supported in DSP module.");
+ PanicAlert("Patch functionality not supported in DSP module.");
}
// =======================================================
diff --git a/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h b/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h
index 69bde6c9b0..5cb45f34db 100644
--- a/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h
+++ b/Source/Core/Core/HW/DSPLLE/DSPDebugInterface.h
@@ -37,7 +37,7 @@ public:
void SetPC(unsigned int address) override;
void Step() override {}
void RunToBreakpoint() override;
- void InsertBLR(unsigned int address, unsigned int value) override;
+ void Patch(unsigned int address, unsigned int value) override;
int GetColor(unsigned int address) override;
std::string GetDescription(unsigned int address) override;
};
diff --git a/Source/Core/DolphinWX/Debugger/CodeView.cpp b/Source/Core/DolphinWX/Debugger/CodeView.cpp
index 8ee5b191f1..554d1ee460 100644
--- a/Source/Core/DolphinWX/Debugger/CodeView.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeView.cpp
@@ -227,9 +227,9 @@ void CCodeView::InsertBlrNop(int Blr)
temp.oldValue = m_debugger->ReadMemory(m_selection);
m_blrList.push_back(temp);
if (Blr == 0)
- m_debugger->InsertBLR(m_selection, 0x4e800020);
+ m_debugger->Patch(m_selection, 0x4e800020);
else
- m_debugger->InsertBLR(m_selection, 0x60000000);
+ m_debugger->Patch(m_selection, 0x60000000);
}
Refresh();
}
@@ -320,7 +320,7 @@ void CCodeView::OnPopupMenu(wxCommandEvent& event)
unsigned long code;
if (dialog.GetValue().ToULong(&code, 0) && code <= std::numeric_limits<u32>::max())
{
- m_debugger->InsertBLR(m_selection, code);
+ m_debugger->Patch(m_selection, code);
Refresh();
}
}