Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #11414 from Pokechu22/msvc-dsp-jit-x64-only
Move x64 DSP JIT into DolphinLib.x64.props
  • Loading branch information
JosJuice committed Jan 7, 2023
2 parents 7444f90 + d20b71c commit 710d7e3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
14 changes: 0 additions & 14 deletions Source/Core/DolphinLib.props
Expand Up @@ -214,9 +214,6 @@
<ClInclude Include="Core\DSP\Interpreter\DSPIntTables.h" />
<ClInclude Include="Core\DSP\Interpreter\DSPIntUtil.h" />
<ClInclude Include="Core\DSP\Jit\DSPEmitterBase.h" />
<ClInclude Include="Core\DSP\Jit\x64\DSPEmitter.h" />
<ClInclude Include="Core\DSP\Jit\x64\DSPJitRegCache.h" />
<ClInclude Include="Core\DSP\Jit\x64\DSPJitTables.h" />
<ClInclude Include="Core\DSP\LabelMap.h" />
<ClInclude Include="Core\DSPEmulator.h" />
<ClInclude Include="Core\FifoPlayer\FifoDataFile.h" />
Expand Down Expand Up @@ -835,17 +832,6 @@
<ClCompile Include="Core\DSP\Interpreter\DSPIntMultiplier.cpp" />
<ClCompile Include="Core\DSP\Interpreter\DSPIntTables.cpp" />
<ClCompile Include="Core\DSP\Jit\DSPEmitterBase.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPEmitter.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitArithmetic.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitBranch.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitCCUtil.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitExtOps.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitLoadStore.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitMisc.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitMultiplier.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitRegCache.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitTables.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitUtil.cpp" />
<ClCompile Include="Core\DSP\LabelMap.cpp" />
<ClCompile Include="Core\DSPEmulator.cpp" />
<ClCompile Include="Core\FifoPlayer\FifoDataFile.cpp" />
Expand Down
14 changes: 14 additions & 0 deletions Source/Core/DolphinLib.x64.props
Expand Up @@ -4,6 +4,9 @@
<ClInclude Include="Common\x64ABI.h" />
<ClInclude Include="Common\x64Emitter.h" />
<ClInclude Include="Common\x64Reg.h" />
<ClInclude Include="Core\DSP\Jit\x64\DSPEmitter.h" />
<ClInclude Include="Core\DSP\Jit\x64\DSPJitRegCache.h" />
<ClInclude Include="Core\DSP\Jit\x64\DSPJitTables.h" />
<ClInclude Include="Core\PowerPC\Jit64\Jit.h" />
<ClInclude Include="Core\PowerPC\Jit64\JitAsm.h" />
<ClInclude Include="Core\PowerPC\Jit64\RegCache\CachedReg.h" />
Expand All @@ -27,6 +30,17 @@
<ClCompile Include="Common\x64CPUDetect.cpp" />
<ClCompile Include="Common\x64Emitter.cpp" />
<ClCompile Include="Common\x64FPURoundMode.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPEmitter.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitArithmetic.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitBranch.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitCCUtil.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitExtOps.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitLoadStore.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitMisc.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitMultiplier.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitRegCache.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitTables.cpp" />
<ClCompile Include="Core\DSP\Jit\x64\DSPJitUtil.cpp" />
<ClCompile Include="Core\PowerPC\Jit64\Jit_Branch.cpp" />
<ClCompile Include="Core\PowerPC\Jit64\Jit_FloatingPoint.cpp" />
<ClCompile Include="Core\PowerPC\Jit64\Jit_Integer.cpp" />
Expand Down

0 comments on commit 710d7e3

Please sign in to comment.