Debugger: Update enums and fix 32 bit support

Also move bitcast to a proper location
This commit is contained in:
Ty Lamontagne 2021-11-08 17:43:02 -05:00 committed by refractionpcsx2
parent 6bec3162f6
commit be71b98c55
7 changed files with 45 additions and 24 deletions

View File

@ -13,6 +13,8 @@
* If not, see <http://www.gnu.org/licenses/>. * If not, see <http://www.gnu.org/licenses/>.
*/ */
#pragma once
// An implementation of bit_cast until we get c++20 // An implementation of bit_cast until we get c++20
template<class T2, class T1> template<class T2, class T1>

View File

@ -100,6 +100,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="Align.h" /> <ClInclude Include="Align.h" />
<ClInclude Include="BitCast.h" />
<ClInclude Include="EmbeddedImage.h" /> <ClInclude Include="EmbeddedImage.h" />
<ClInclude Include="boost_spsc_queue.hpp" /> <ClInclude Include="boost_spsc_queue.hpp" />
<ClInclude Include="FastJmp.h" /> <ClInclude Include="FastJmp.h" />

View File

@ -291,6 +291,9 @@
<ClInclude Include="WindowInfo.h"> <ClInclude Include="WindowInfo.h">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="BitCast.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="GL\Context.h"> <ClInclude Include="GL\Context.h">
<Filter>Header Files\GL</Filter> <Filter>Header Files\GL</Filter>
</ClInclude> </ClInclude>

View File

@ -1232,8 +1232,7 @@ set(pcsx2UtilitiesSources
# Utilities headers # Utilities headers
set(pcsx2UtilitiesHeaders set(pcsx2UtilitiesHeaders
Utilities/AsciiFile.h Utilities/AsciiFile.h)
Utilities/BitCast.h)
# Windows sources # Windows sources

View File

@ -17,8 +17,10 @@
#include "CtrlMemSearch.h" #include "CtrlMemSearch.h"
#include "DebugTools/Debug.h" #include "DebugTools/Debug.h"
#include "gui/AppConfig.h" #include "gui/AppConfig.h"
#include "Utilities/BitCast.h" #include "common/BitCast.h"
#include "../Patch.h" // Required for SwapEndian :( #include "common/StringUtil.h"
#include "Patch.h" // Required for SwapEndian :(
#include "BreakpointWindow.h" #include "BreakpointWindow.h"
#include "DebugEvents.h" #include "DebugEvents.h"
@ -63,6 +65,14 @@ const wxString wxStringTypes[] =
"String"}; "String"};
const wxArrayString SearchTypes = wxArrayString(7, wxStringTypes); const wxArrayString SearchTypes = wxArrayString(7, wxStringTypes);
// StringUtils::FromChars doesn't appreciate the leading 0x.
__fi wxString CheckHexadecimalString(wxString s)
{
if(s.StartsWith("0x"))
return s.Remove(0, 2);
return s;
}
CtrlMemSearch::CtrlMemSearch(wxWindow* parent, DebugInterface* _cpu) CtrlMemSearch::CtrlMemSearch(wxWindow* parent, DebugInterface* _cpu)
: wxWindow(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize) : wxWindow(parent, wxID_ANY, wxDefaultPosition, wxDefaultSize)
, cpu(_cpu) , cpu(_cpu)
@ -102,7 +112,7 @@ CtrlMemSearch::CtrlMemSearch(wxWindow* parent, DebugInterface* _cpu)
txtMemoryEnd->SetValue(L"0x20000"); txtMemoryEnd->SetValue(L"0x20000");
lblSearchHits = new wxStaticText(this, wxID_ANY, L"Hits: 0"); lblSearchHits = new wxStaticText(this, wxID_ANY, L"Hits: 0");
lblSearchHitSelected = new wxStaticText(this, wxID_ANY, L"Selected: 0"); lblSearchHitSelected = new wxStaticText(this, wxID_ANY, L"Cur: 0");
btnNext = new wxButton(this, wxID_ANY, L"Next", wxDefaultPosition); btnNext = new wxButton(this, wxID_ANY, L"Next", wxDefaultPosition);
btnNext->Enable(false); btnNext->Enable(false);
@ -194,17 +204,22 @@ void CtrlMemSearch::Search(wxCommandEvent& evt)
u64 startAddress = 0; u64 startAddress = 0;
u64 endAddress = 0; u64 endAddress = 0;
if (!txtMemoryStart->GetValue().ToULong(&startAddress, 16)) const auto resStart = StringUtil::FromChars<u64>(CheckHexadecimalString(txtMemoryStart->GetValue()).ToStdString(), 16);
if (!resStart.has_value())
{ {
wxMessageBox(L"Invalid start address", L"Error", wxOK | wxICON_ERROR); wxMessageBox(L"Invalid start address", L"Error", wxOK | wxICON_ERROR);
return; return;
} }
startAddress = resStart.value();
if (!txtMemoryEnd->GetValue().ToULong(&endAddress, 16)) const auto resEnd = StringUtil::FromChars<u64>(CheckHexadecimalString(txtMemoryEnd->GetValue()).ToStdString(), 16);
if (!resStart.has_value())
{ {
wxMessageBox(L"Invalid end address", L"Error", wxOK | wxICON_ERROR); wxMessageBox(L"Invalid end address", L"Error", wxOK | wxICON_ERROR);
return; return;
} }
endAddress = resEnd.value();
m_SearchThread->m_start = startAddress; m_SearchThread->m_start = startAddress;
m_SearchThread->m_end = endAddress; m_SearchThread->m_end = endAddress;
m_SearchThread->m_type = static_cast<SEARCHTYPE>(cmbSearchType->GetSelection()); m_SearchThread->m_type = static_cast<SEARCHTYPE>(cmbSearchType->GetSelection());
@ -212,19 +227,19 @@ void CtrlMemSearch::Search(wxCommandEvent& evt)
// Prepare the search value for the thread // Prepare the search value for the thread
wxString searchString = txtSearch->GetValue(); wxString searchString = txtSearch->GetValue();
if (cmbSearchType->GetSelection() == SEARCHTYPE::STRING) if (m_SearchThread->m_type == SEARCHTYPE::STRING)
{ {
m_SearchThread->m_value_string = searchString; m_SearchThread->m_value_string = searchString;
} }
else if (chkHexadecimal->IsChecked()) else if (chkHexadecimal->IsChecked())
{ {
u64 searchValue = 0; const auto res = StringUtil::FromChars<u64>(CheckHexadecimalString(txtSearch->GetValue()).ToStdString(), 16);
if (!searchString.ToULong(&searchValue, 16)) if (!res.has_value())
{ {
wxMessageBox(L"Invalid hexadecimal value", L"Error", wxOK | wxICON_ERROR); wxMessageBox(L"Invalid hexadecimal value", L"Error", wxOK | wxICON_ERROR);
return; return;
} }
m_SearchThread->m_value = radBigEndian->GetValue() ? SwapEndian(searchValue, SEARCHTYPEBITS[m_SearchThread->m_type]) : searchValue; m_SearchThread->m_value = radBigEndian->GetValue() ? SwapEndian(res.value(), SEARCHTYPEBITS[cmbSearchType->GetSelection()]) : res.value();
} }
else else
{ {
@ -237,11 +252,11 @@ void CtrlMemSearch::Search(wxCommandEvent& evt)
// Now we can convert the string to a number // Now we can convert the string to a number
if (cmbSearchType->GetSelection() == SEARCHTYPE::FLOAT || cmbSearchType->GetSelection() == SEARCHTYPE::DOUBLE) if (m_SearchThread->m_type == SEARCHTYPE::FLOAT || m_SearchThread->m_type == SEARCHTYPE::DOUBLE)
{ {
// We're searching for a float or double, so we need to convert the string to a double // We're searching for a float or double, so we need to convert the string to a double
double searchValue = 0; const auto res = StringUtil::FromChars<double>(txtSearch->GetValue().ToStdString());
if (!searchString.ToDouble(&searchValue)) if (!res.has_value())
{ {
wxMessageBox(L"Invalid floating point value", L"Error", wxOK | wxICON_ERROR); wxMessageBox(L"Invalid floating point value", L"Error", wxOK | wxICON_ERROR);
return; return;
@ -249,27 +264,28 @@ void CtrlMemSearch::Search(wxCommandEvent& evt)
if (m_SearchThread->m_type == SEARCHTYPE::FLOAT) if (m_SearchThread->m_type == SEARCHTYPE::FLOAT)
{ {
const u32 u32SearchValue = bit_cast<u32, float>(searchValue); const u32 u32SearchValue = bit_cast<u32, float>(res.value());
m_SearchThread->m_value = u32SearchValue; m_SearchThread->m_value = u32SearchValue;
} }
else else
{ {
const u64 u64SearchValue = bit_cast<u64, double>(searchValue); const u64 u64SearchValue = bit_cast<u64, double>(res.value());
m_SearchThread->m_value = u64SearchValue; m_SearchThread->m_value = u64SearchValue;
} }
} }
else else
{ {
// We're searching for either a BYTE, WORD, DWORD or QWORD // We're searching for either a BYTE, WORD, DWORD or QWORD
u64 searchValue = 0;
if (!searchString.ToULong(&searchValue, 10)) const auto res = StringUtil::FromChars<u64>(txtSearch->GetValue().ToStdString());
if(!res.has_value())
{ {
wxMessageBox(L"Invalid decimal search value", L"Error", wxOK | wxICON_ERROR); wxMessageBox(L"Invalid decimal search value", L"Error", wxOK | wxICON_ERROR);
return; return;
} }
// We don't need to bitcast here, because the thread already has the correct value type of u64 // We don't need to bitcast here, because the thread already has the correct value type of u64
m_SearchThread->m_value = radBigEndian->GetValue() ? SwapEndian(searchValue, SEARCHTYPEBITS[m_SearchThread->m_type]) : searchValue; m_SearchThread->m_value = radBigEndian->GetValue() ? SwapEndian(res.value(), SEARCHTYPEBITS[cmbSearchType->GetSelection()]) : res.value();
} }
} }
@ -326,7 +342,7 @@ void CtrlMemSearch::onSearchPrev(wxCommandEvent& evt)
void CtrlMemSearch::onSearchTypeChanged(wxCommandEvent& evt) void CtrlMemSearch::onSearchTypeChanged(wxCommandEvent& evt)
{ {
// Update the search value text box to match the search type // Update the search value text box to match the search type
switch (cmbSearchType->GetSelection()) switch (static_cast<SEARCHTYPE>(cmbSearchType->GetSelection()))
{ {
case SEARCHTYPE::BYTE: case SEARCHTYPE::BYTE:
case SEARCHTYPE::WORD: case SEARCHTYPE::WORD:

View File

@ -19,7 +19,7 @@
#include "DebugTools/DebugInterface.h" #include "DebugTools/DebugInterface.h"
#include "DebugTools/DisassemblyManager.h" #include "DebugTools/DisassemblyManager.h"
enum SEARCHTYPE enum class SEARCHTYPE
{ {
BYTE, BYTE,
WORD, WORD,

View File

@ -16,7 +16,7 @@
#include "PrecompiledHeader.h" #include "PrecompiledHeader.h"
#include "CtrlRegisterList.h" #include "CtrlRegisterList.h"
#include "DebugTools/Debug.h" #include "DebugTools/Debug.h"
#include "Utilities/BitCast.h" #include "common/BitCast.h"
#include "DebugEvents.h" #include "DebugEvents.h"
#include "gui/AppConfig.h" #include "gui/AppConfig.h"