mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Remove unnecessary Src/ folders
This commit is contained in:
37
Source/Core/Core/PowerPC/JitInterface.h
Normal file
37
Source/Core/Core/PowerPC/JitInterface.h
Normal file
@ -0,0 +1,37 @@
|
||||
// Copyright 2013 Dolphin Emulator Project
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "ChunkFile.h"
|
||||
#include "CPUCoreBase.h"
|
||||
|
||||
namespace JitInterface
|
||||
{
|
||||
void DoState(PointerWrap &p);
|
||||
|
||||
CPUCoreBase *InitJitCore(int core);
|
||||
void InitTables(int core);
|
||||
CPUCoreBase *GetCore();
|
||||
|
||||
// Debugging
|
||||
void WriteProfileResults(const char *filename);
|
||||
|
||||
// Memory Utilities
|
||||
bool IsInCodeSpace(u8 *ptr);
|
||||
const u8 *BackPatch(u8 *codePtr, u32 em_address, void *ctx);
|
||||
|
||||
// used by JIT to read instructions
|
||||
u32 Read_Opcode_JIT(const u32 _Address);
|
||||
|
||||
// Clearing CodeCache
|
||||
void ClearCache();
|
||||
|
||||
void ClearSafe();
|
||||
|
||||
void InvalidateICache(u32 address, u32 size);
|
||||
|
||||
void Shutdown();
|
||||
}
|
||||
extern bool bFakeVMEM;
|
||||
extern bool bMMU;
|
||||
|
Reference in New Issue
Block a user