Skip to content

Commit

Permalink
Merge pull request #11815 from lioncash/ppcinc
Browse files Browse the repository at this point in the history
PPCTables: Remove unnecessary includes
  • Loading branch information
AdmiralCurtiss committed May 9, 2023
2 parents 2e9b7f1 + 2561028 commit c766b2f
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Expand Up @@ -10,6 +10,7 @@
#include "Core/HLE/HLE.h"
#include "Core/HW/CPU.h"
#include "Core/PowerPC/Gekko.h"
#include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/Jit64Common/Jit64Constants.h"
#include "Core/PowerPC/PPCAnalyst.h"
#include "Core/PowerPC/PowerPC.h"
Expand Down
1 change: 1 addition & 0 deletions Source/Core/Core/PowerPC/Jit64/Jit.cpp
Expand Up @@ -32,6 +32,7 @@
#include "Core/HW/ProcessorInterface.h"
#include "Core/MachineContext.h"
#include "Core/PatchEngine.h"
#include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/Jit64/JitAsm.h"
#include "Core/PowerPC/Jit64/RegCache/JitRegCache.h"
#include "Core/PowerPC/Jit64Common/FarCodeCache.h"
Expand Down
1 change: 1 addition & 0 deletions Source/Core/Core/PowerPC/Jit64/Jit_Integer.cpp
Expand Up @@ -17,6 +17,7 @@

#include "Core/CoreTiming.h"
#include "Core/PowerPC/Interpreter/ExceptionUtils.h"
#include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/Jit64/RegCache/JitRegCache.h"
#include "Core/PowerPC/Jit64Common/Jit64PowerPCState.h"
#include "Core/PowerPC/JitCommon/DivUtils.h"
Expand Down
1 change: 1 addition & 0 deletions Source/Core/Core/PowerPC/JitArm64/Jit.cpp
Expand Up @@ -22,6 +22,7 @@
#include "Core/HW/Memmap.h"
#include "Core/HW/ProcessorInterface.h"
#include "Core/PatchEngine.h"
#include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/JitArm64/JitArm64_RegCache.h"
#include "Core/PowerPC/JitInterface.h"
#include "Core/PowerPC/PowerPC.h"
Expand Down
1 change: 1 addition & 0 deletions Source/Core/Core/PowerPC/JitArm64/JitArm64_Integer.cpp
Expand Up @@ -13,6 +13,7 @@

#include "Core/Core.h"
#include "Core/CoreTiming.h"
#include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/JitArm64/JitArm64_RegCache.h"
#include "Core/PowerPC/JitCommon/DivUtils.h"
#include "Core/PowerPC/PPCTables.h"
Expand Down
3 changes: 2 additions & 1 deletion Source/Core/Core/PowerPC/JitCommon/JitBase.h
Expand Up @@ -23,8 +23,9 @@ class System;
}
namespace PowerPC
{
class MMU;
struct PowerPCState;
}
} // namespace PowerPC

//#define JIT_LOG_GENERATED_CODE // Enables logging of generated code
//#define JIT_LOG_GPR // Enables logging of the PPC general purpose regs
Expand Down
1 change: 0 additions & 1 deletion Source/Core/Core/PowerPC/PPCTables.cpp
Expand Up @@ -19,7 +19,6 @@
#include "Common/StringUtil.h"
#include "Common/TypeUtils.h"

#include "Core/PowerPC/Interpreter/Interpreter.h"
#include "Core/PowerPC/PowerPC.h"

namespace PPCTables
Expand Down
5 changes: 0 additions & 5 deletions Source/Core/Core/PowerPC/PPCTables.h
Expand Up @@ -3,13 +3,8 @@

#pragma once

#include <array>
#include <cstddef>
#include <utility>

#include "Common/CommonTypes.h"
#include "Core/PowerPC/Gekko.h"
#include "Core/PowerPC/Interpreter/Interpreter.h"

// Flags that indicate what an instruction can do.
enum InstructionFlags : u64
Expand Down

0 comments on commit c766b2f

Please sign in to comment.