diff --git a/Source/Core/Common/CMakeLists.txt b/Source/Core/Common/CMakeLists.txt index 7da6a0a037..0a99131bc4 100644 --- a/Source/Core/Common/CMakeLists.txt +++ b/Source/Core/Common/CMakeLists.txt @@ -1,5 +1,4 @@ set(SRCS Analytics.cpp - BreakPoints.cpp CDUtils.cpp ColorUtil.cpp ENetUtil.cpp diff --git a/Source/Core/Common/Common.vcxproj b/Source/Core/Common/Common.vcxproj index 1e88bd5e33..1dfcf692cb 100644 --- a/Source/Core/Common/Common.vcxproj +++ b/Source/Core/Common/Common.vcxproj @@ -44,7 +44,6 @@ - @@ -146,7 +145,6 @@ - diff --git a/Source/Core/Common/Common.vcxproj.filters b/Source/Core/Common/Common.vcxproj.filters index 3ad3825e23..25a8bf3fd4 100644 --- a/Source/Core/Common/Common.vcxproj.filters +++ b/Source/Core/Common/Common.vcxproj.filters @@ -25,7 +25,6 @@ - @@ -229,7 +228,6 @@ - diff --git a/Source/Core/Core/CMakeLists.txt b/Source/Core/Core/CMakeLists.txt index 5629e21f86..a1c72eba39 100644 --- a/Source/Core/Core/CMakeLists.txt +++ b/Source/Core/Core/CMakeLists.txt @@ -156,6 +156,7 @@ set(SRCS ActionReplay.cpp IPC_HLE/WII_IPC_HLE_WiiMote.cpp IPC_HLE/WiiMote_HID_Attr.cpp IPC_HLE/WiiNetConfig.cpp + PowerPC/BreakPoints.cpp PowerPC/MMU.cpp PowerPC/PowerPC.cpp PowerPC/PPCAnalyst.cpp diff --git a/Source/Core/Core/Core.vcxproj b/Source/Core/Core/Core.vcxproj index 944085b82b..599aa36e07 100644 --- a/Source/Core/Core/Core.vcxproj +++ b/Source/Core/Core/Core.vcxproj @@ -204,6 +204,7 @@ + @@ -423,6 +424,7 @@ + diff --git a/Source/Core/Core/Core.vcxproj.filters b/Source/Core/Core/Core.vcxproj.filters index fb6c05b4cc..074218bbe1 100644 --- a/Source/Core/Core/Core.vcxproj.filters +++ b/Source/Core/Core/Core.vcxproj.filters @@ -276,6 +276,9 @@ HLE + + PowerPC + PowerPC\Cached Interpreter @@ -1235,6 +1238,9 @@ HW %28Flipper/Hollywood%29\Wiimote + + PowerPC + PowerPC diff --git a/Source/Core/Common/BreakPoints.cpp b/Source/Core/Core/PowerPC/BreakPoints.cpp similarity index 99% rename from Source/Core/Common/BreakPoints.cpp rename to Source/Core/Core/PowerPC/BreakPoints.cpp index 75a074788b..2836d7b6f2 100644 --- a/Source/Core/Common/BreakPoints.cpp +++ b/Source/Core/Core/PowerPC/BreakPoints.cpp @@ -2,11 +2,12 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "Core/PowerPC/BreakPoints.h" + #include #include #include -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Common/DebugInterface.h" #include "Core/PowerPC/JitCommon/JitBase.h" diff --git a/Source/Core/Common/BreakPoints.h b/Source/Core/Core/PowerPC/BreakPoints.h similarity index 100% rename from Source/Core/Common/BreakPoints.h rename to Source/Core/Core/PowerPC/BreakPoints.h diff --git a/Source/Core/Core/PowerPC/PowerPC.h b/Source/Core/Core/PowerPC/PowerPC.h index 54c26c7096..c9216c5faf 100644 --- a/Source/Core/Core/PowerPC/PowerPC.h +++ b/Source/Core/Core/PowerPC/PowerPC.h @@ -8,10 +8,10 @@ #include #include -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Core/Debugger/PPCDebugInterface.h" +#include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/Gekko.h" #include "Core/PowerPC/PPCCache.h" diff --git a/Source/Core/DolphinWX/Debugger/BreakpointDlg.cpp b/Source/Core/DolphinWX/Debugger/BreakpointDlg.cpp index db36092e62..363717a247 100644 --- a/Source/Core/DolphinWX/Debugger/BreakpointDlg.cpp +++ b/Source/Core/DolphinWX/Debugger/BreakpointDlg.cpp @@ -2,17 +2,18 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "DolphinWX/Debugger/BreakpointDlg.h" + #include #include #include #include #include -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Common/StringUtil.h" +#include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/PowerPC.h" -#include "DolphinWX/Debugger/BreakpointDlg.h" #include "DolphinWX/Debugger/BreakpointWindow.h" #include "DolphinWX/WxUtils.h" diff --git a/Source/Core/DolphinWX/Debugger/BreakpointView.cpp b/Source/Core/DolphinWX/Debugger/BreakpointView.cpp index 7a2ae27270..f8c6266849 100644 --- a/Source/Core/DolphinWX/Debugger/BreakpointView.cpp +++ b/Source/Core/DolphinWX/Debugger/BreakpointView.cpp @@ -2,17 +2,18 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "DolphinWX/Debugger/BreakpointView.h" + #include #include #include -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Common/StringUtil.h" +#include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/PPCSymbolDB.h" #include "Core/PowerPC/PowerPC.h" -#include "DolphinWX/Debugger/BreakpointView.h" #include "DolphinWX/Debugger/DebuggerUIUtil.h" #include "DolphinWX/WxUtils.h" diff --git a/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp b/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp index 7e83b4502e..f7d8f2b210 100644 --- a/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/BreakpointWindow.cpp @@ -2,6 +2,8 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "DolphinWX/Debugger/BreakpointWindow.h" + #include // clang-format off @@ -12,16 +14,15 @@ #include // clang-format on -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Common/FileUtil.h" #include "Common/IniFile.h" #include "Core/ConfigManager.h" #include "Core/HW/Memmap.h" +#include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/PowerPC.h" #include "DolphinWX/Debugger/BreakpointDlg.h" #include "DolphinWX/Debugger/BreakpointView.h" -#include "DolphinWX/Debugger/BreakpointWindow.h" #include "DolphinWX/Debugger/CodeWindow.h" #include "DolphinWX/Debugger/MemoryCheckDlg.h" #include "DolphinWX/AuiToolBar.h" diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp index 348363ae8d..1b60ca1252 100644 --- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp +++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp @@ -2,6 +2,8 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "DolphinWX/Debugger/CodeWindow.h" + #include #include #include @@ -23,7 +25,6 @@ #include // clang-format on -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Common/StringUtil.h" #include "Common/SymbolDB.h" @@ -34,6 +35,7 @@ #include "Core/HW/Memmap.h" #include "Core/HW/SystemTimers.h" #include "Core/Host.h" +#include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/Gekko.h" #include "Core/PowerPC/JitInterface.h" #include "Core/PowerPC/PPCSymbolDB.h" @@ -41,7 +43,6 @@ #include "Core/PowerPC/PowerPC.h" #include "DolphinWX/Debugger/BreakpointWindow.h" #include "DolphinWX/Debugger/CodeView.h" -#include "DolphinWX/Debugger/CodeWindow.h" #include "DolphinWX/Debugger/DebuggerUIUtil.h" #include "DolphinWX/Debugger/JitWindow.h" #include "DolphinWX/Debugger/MemoryWindow.h" diff --git a/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp b/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp index 9d1ca0ca5c..f9b1cf6510 100644 --- a/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp +++ b/Source/Core/DolphinWX/Debugger/MemoryCheckDlg.cpp @@ -2,18 +2,19 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "DolphinWX/Debugger/MemoryCheckDlg.h" + #include #include #include #include #include -#include "Common/BreakPoints.h" #include "Common/CommonTypes.h" #include "Common/StringUtil.h" +#include "Core/PowerPC/BreakPoints.h" #include "Core/PowerPC/PowerPC.h" #include "DolphinWX/Debugger/BreakpointWindow.h" -#include "DolphinWX/Debugger/MemoryCheckDlg.h" #include "DolphinWX/WxUtils.h" MemoryCheckDlg::MemoryCheckDlg(wxWindow* parent)