mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 07:09:03 +00:00
DSPEmitter: Make emitter dispatcher pointers private
This commit is contained in:
parent
0d42cbc923
commit
f5fe387a20
1 changed files with 6 additions and 6 deletions
|
@ -247,12 +247,6 @@ public:
|
||||||
void madd(const UDSPInstruction opc);
|
void madd(const UDSPInstruction opc);
|
||||||
void msub(const UDSPInstruction opc);
|
void msub(const UDSPInstruction opc);
|
||||||
|
|
||||||
// CALL this to start the dispatcher
|
|
||||||
const u8* m_enter_dispatcher;
|
|
||||||
const u8* m_reenter_dispatcher;
|
|
||||||
const u8* m_stub_entry_point;
|
|
||||||
const u8* m_return_dispatcher;
|
|
||||||
|
|
||||||
std::list<u16> m_unresolved_jumps[MAX_BLOCKS];
|
std::list<u16> m_unresolved_jumps[MAX_BLOCKS];
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -299,6 +293,12 @@ private:
|
||||||
// The index of the last stored ext value (compile time).
|
// The index of the last stored ext value (compile time).
|
||||||
int m_store_index = -1;
|
int m_store_index = -1;
|
||||||
int m_store_index2 = -1;
|
int m_store_index2 = -1;
|
||||||
|
|
||||||
|
// CALL this to start the dispatcher
|
||||||
|
const u8* m_enter_dispatcher;
|
||||||
|
const u8* m_reenter_dispatcher;
|
||||||
|
const u8* m_stub_entry_point;
|
||||||
|
const u8* m_return_dispatcher;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace x86
|
} // namespace x86
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue