Core/DSPCore: Make JIT work on 64 bit hosts

This is the safe variant that does not assume other
functions use R11 for &g_dsp.r, which they actually do.
So there is a lot unnecessary reloading of the register
getting emitted.

There are a few small changes exploiting pointers known
at emission time and making use of MComplex math.

Also renames m_LLEplaying to m_AIplaying in Core/AudioCommon.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6245 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
pierre
2010-10-01 23:23:13 +00:00
parent c8c805f720
commit b80e207a8a
6 changed files with 313 additions and 26 deletions

View File

@ -35,7 +35,7 @@ public:
, m_numSamples(0)
, m_indexW(0)
, m_indexR(0)
, m_LLEplaying(true)
, m_AIplaying(true)
{
// AyuanX: The internal (Core & DSP) sample rate is fixed at 32KHz
// So when AI/DAC sample rate differs than 32KHz, we have to do re-sampling
@ -81,7 +81,7 @@ protected:
u32 m_indexW;
u32 m_indexR;
bool m_LLEplaying;
bool m_AIplaying;
private: