mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
f67afb4fca
* Optimised the updating of g_dsp.pc in the compile loop (code by kiesel-stein) * Added JIT version of LRI (code by kiesel-stein) * Added JIT versions of the branch instructions (code by Jack Frost) * DSP_SendAIBuffer fix (code by Mylek) * Marked instructions that update g_dsp.pc in the DSP table and updated PC based on the table (speed up) * Fixed the signed bits not being set properly in the addr instruction * Created a MainOpFallback function to use interpreted versions of the instructions if necessary (code by kiesel-stein) * Disabled the jit versions of subarn and addarn as they are slowing down NSMBW The above work in both x86 and x64 modes. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6582 8ced0084-cf51-0410-be5f-012b33b47a6e
36 lines
693 B
Python
36 lines
693 B
Python
# -*- python -*-
|
|
|
|
Import('env')
|
|
|
|
files = [
|
|
"assemble.cpp",
|
|
"disassemble.cpp",
|
|
"DSPAccelerator.cpp",
|
|
"DSPIntCCUtil.cpp",
|
|
"DSPIntExtOps.cpp",
|
|
"DSPHWInterface.cpp",
|
|
"DSPMemoryMap.cpp",
|
|
"DSPStacks.cpp",
|
|
"DSPAnalyzer.cpp",
|
|
"DspIntArithmetic.cpp",
|
|
"DspIntBranch.cpp",
|
|
"DspIntLoadStore.cpp",
|
|
"DspIntMisc.cpp",
|
|
"DspIntMultiplier.cpp",
|
|
"DSPEmitter.cpp",
|
|
"DSPCodeUtil.cpp",
|
|
"LabelMap.cpp",
|
|
"DSPInterpreter.cpp",
|
|
"DSPCore.cpp",
|
|
"DSPTables.cpp",
|
|
"Jit/DSPJitExtOps.cpp",
|
|
"Jit/DSPJitBranch.cpp",
|
|
"Jit/DSPJitUtil.cpp",
|
|
"Jit/DSPJitCCUtil.cpp",
|
|
"Jit/DSPJitArithmetic.cpp",
|
|
"Jit/DSPJitMultiplier.cpp",
|
|
"Jit/DSPJitMisc.cpp",
|
|
]
|
|
|
|
env.StaticLibrary(env['local_libs'] + 'dspcore', files)
|