mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #4954 from lioncash/jitbase
JitBase: Put constructor and destructor in the cpp file
This commit is contained in:
commit
25fc7ed8c1
2 changed files with 7 additions and 0 deletions
|
@ -23,6 +23,10 @@ u32 Helper_Mask(u8 mb, u8 me)
|
|||
return mb > me ? ~mask : mask;
|
||||
}
|
||||
|
||||
JitBase::JitBase() = default;
|
||||
|
||||
JitBase::~JitBase() = default;
|
||||
|
||||
bool JitBase::MergeAllowedNextInstructions(int count)
|
||||
{
|
||||
if (CPU::GetState() == CPU::CPU_STEPPING || js.instructionsLeft < count)
|
||||
|
|
|
@ -114,6 +114,9 @@ public:
|
|||
JitOptions jo;
|
||||
JitState js;
|
||||
|
||||
JitBase();
|
||||
~JitBase() override;
|
||||
|
||||
static const u8* Dispatch() { return g_jit->GetBlockCache()->Dispatch(); };
|
||||
virtual JitBaseBlockCache* GetBlockCache() = 0;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue