2020-12-09 17:36:08 -05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-08-10 13:27:15 -04:00
|
|
|
|
|
2018-02-04 18:08:20 -05:00
|
|
|
|
<PropertyGroup>
|
2020-11-15 13:27:15 -05:00
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
Add a new JIT compiler for CPU code (#693)
* Start of the ARMeilleure project
* Refactoring around the old IRAdapter, now renamed to PreAllocator
* Optimize the LowestBitSet method
* Add CLZ support and fix CLS implementation
* Add missing Equals and GetHashCode overrides on some structs, misc small tweaks
* Implement the ByteSwap IR instruction, and some refactoring on the assembler
* Implement the DivideUI IR instruction and fix 64-bits IDIV
* Correct constant operand type on CSINC
* Move division instructions implementation to InstEmitDiv
* Fix destination type for the ConditionalSelect IR instruction
* Implement UMULH and SMULH, with new IR instructions
* Fix some issues with shift instructions
* Fix constant types for BFM instructions
* Fix up new tests using the new V128 struct
* Update tests
* Move DIV tests to a separate file
* Add support for calls, and some instructions that depends on them
* Start adding support for SIMD & FP types, along with some of the related ARM instructions
* Fix some typos and the divide instruction with FP operands
* Fix wrong method call on Clz_V
* Implement ARM FP & SIMD move instructions, Saddlv_V, and misc. fixes
* Implement SIMD logical instructions and more misc. fixes
* Fix PSRAD x86 instruction encoding, TRN, UABD and UABDL implementations
* Implement float conversion instruction, merge in LDj3SNuD fixes, and some other misc. fixes
* Implement SIMD shift instruction and fix Dup_V
* Add SCVTF and UCVTF (vector, fixed-point) variants to the opcode table
* Fix check with tolerance on tester
* Implement FP & SIMD comparison instructions, and some fixes
* Update FCVT (Scalar) encoding on the table to support the Half-float variants
* Support passing V128 structs, some cleanup on the register allocator, merge LDj3SNuD fixes
* Use old memory access methods, made a start on SIMD memory insts support, some fixes
* Fix float constant passed to functions, save and restore non-volatile XMM registers, other fixes
* Fix arguments count with struct return values, other fixes
* More instructions
* Misc. fixes and integrate LDj3SNuD fixes
* Update tests
* Add a faster linear scan allocator, unwinding support on windows, and other changes
* Update Ryujinx.HLE
* Update Ryujinx.Graphics
* Fix V128 return pointer passing, RCX is clobbered
* Update Ryujinx.Tests
* Update ITimeZoneService
* Stop using GetFunctionPointer as that can't be called from native code, misc. fixes and tweaks
* Use generic GetFunctionPointerForDelegate method and other tweaks
* Some refactoring on the code generator, assert on invalid operations and use a separate enum for intrinsics
* Remove some unused code on the assembler
* Fix REX.W prefix regression on float conversion instructions, add some sort of profiler
* Add hardware capability detection
* Fix regression on Sha1h and revert Fcm** changes
* Add SSE2-only paths on vector extract and insert, some refactoring on the pre-allocator
* Fix silly mistake introduced on last commit on CpuId
* Generate inline stack probes when the stack allocation is too large
* Initial support for the System-V ABI
* Support multiple destination operands
* Fix SSE2 VectorInsert8 path, and other fixes
* Change placement of XMM callee save and restore code to match other compilers
* Rename Dest to Destination and Inst to Instruction
* Fix a regression related to calls and the V128 type
* Add an extra space on comments to match code style
* Some refactoring
* Fix vector insert FP32 SSE2 path
* Port over the ARM32 instructions
* Avoid memory protection races on JIT Cache
* Another fix on VectorInsert FP32 (thanks to LDj3SNuD
* Float operands don't need to use the same register when VEX is supported
* Add a new register allocator, higher quality code for hot code (tier up), and other tweaks
* Some nits, small improvements on the pre allocator
* CpuThreadState is gone
* Allow changing CPU emulators with a config entry
* Add runtime identifiers on the ARMeilleure project
* Allow switching between CPUs through a config entry (pt. 2)
* Change win10-x64 to win-x64 on projects
* Update the Ryujinx project to use ARMeilleure
* Ensure that the selected register is valid on the hybrid allocator
* Allow exiting on returns to 0 (should fix test regression)
* Remove register assignments for most used variables on the hybrid allocator
* Do not use fixed registers as spill temp
* Add missing namespace and remove unneeded using
* Address PR feedback
* Fix types, etc
* Enable AssumeStrictAbiCompliance by default
* Ensure that Spill and Fill don't load or store any more than necessary
2019-08-08 14:56:22 -04:00
|
|
|
|
<RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-08-10 13:27:15 -04:00
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2020-02-12 08:35:39 -05:00
|
|
|
|
<Version>1.0.0-dirty</Version>
|
2020-12-09 17:36:08 -05:00
|
|
|
|
<TieredCompilation>false</TieredCompilation>
|
|
|
|
|
<TieredCompilationQuickJit>false</TieredCompilationQuickJit>
|
2019-04-26 00:53:10 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-11-15 13:27:15 -05:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Crc32.NET" Version="1.2.0" />
|
|
|
|
|
<PackageReference Include="DiscordRichPresence" Version="1.0.166" />
|
|
|
|
|
<PackageReference Include="GLWidget" Version="1.0.2" />
|
|
|
|
|
<PackageReference Include="GtkSharp" Version="3.22.25.128" />
|
|
|
|
|
<PackageReference Include="GtkSharp.Dependencies" Version="1.1.0" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
|
|
|
|
<PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="4.3.0" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
2020-12-30 17:08:09 -05:00
|
|
|
|
<PackageReference Include="Ryujinx.Audio.OpenAL.Dependencies" Version="1.21.0.1" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
|
2020-11-15 13:27:15 -05:00
|
|
|
|
<PackageReference Include="OpenTK.NetStandard" Version="1.0.5.32" />
|
|
|
|
|
<PackageReference Include="SharpZipLib" Version="1.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
|
|
|
|
|
<ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Config.json" Condition="'$(Configuration)' == 'Debug' OR '$(Configuration)' == 'Profile Debug'">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="THIRDPARTY.md">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<ContentWithTargetPath Include="..\Ryujinx.Audio.Renderer\LICENSE.txt">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
<TargetPath>LICENSE-Ryujinx.Audio.Renderer.txt</TargetPath>
|
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-04-22 00:13:41 -04:00
|
|
|
|
<!-- Due to .net core 3.1 embedded resource loading -->
|
2019-10-31 14:09:03 -04:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
|
2020-01-24 10:14:51 -05:00
|
|
|
|
<ApplicationIcon>Ryujinx.ico</ApplicationIcon>
|
2019-10-31 14:09:03 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-11-28 23:32:51 -05:00
|
|
|
|
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'osx-x64'">
|
|
|
|
|
<DefineConstants>MACOS_BUILD</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="Ui\MainWindow.glade" />
|
2021-01-08 03:14:13 -05:00
|
|
|
|
<None Remove="Ui\Resources\Controller_JoyConLeft.svg" />
|
|
|
|
|
<None Remove="Ui\Resources\Controller_JoyConPair.svg" />
|
|
|
|
|
<None Remove="Ui\Resources\Controller_JoyConRight.svg" />
|
|
|
|
|
<None Remove="Ui\Resources\Controller_ProCon.svg" />
|
|
|
|
|
<None Remove="Ui\Resources\Icon_NCA.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Icon_NRO.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Icon_NSO.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Icon_NSP.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Icon_XCI.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Logo_Discord.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Logo_GitHub.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Logo_Patreon.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Logo_Ryujinx.png" />
|
|
|
|
|
<None Remove="Ui\Resources\Logo_Twitter.png" />
|
|
|
|
|
<None Remove="Ui\Widgets\ProfileDialog.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\ControllerWindow.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\DlcWindow.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\SettingsWindow.glade" />
|
|
|
|
|
<None Remove="Ui\Windows\TitleUpdateWindow.glade" />
|
|
|
|
|
<None Remove="Modules\Updater\UpdateDialog.glade" />
|
2019-11-28 23:32:51 -05:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2019-09-02 12:03:57 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Ui\MainWindow.glade" />
|
2021-01-08 03:14:13 -05:00
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Controller_JoyConLeft.svg" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Controller_JoyConPair.svg" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Controller_JoyConRight.svg" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Controller_ProCon.svg" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Icon_NCA.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Icon_NRO.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Icon_NSO.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Icon_NSP.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Icon_XCI.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Logo_Discord.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Logo_GitHub.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Logo_Patreon.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Logo_Ryujinx.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Resources\Logo_Twitter.png" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Widgets\ProfileDialog.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\ControllerWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\DlcWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\SettingsWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Ui\Windows\TitleUpdateWindow.glade" />
|
|
|
|
|
<EmbeddedResource Include="Modules\Updater\UpdateDialog.glade" />
|
2019-09-02 12:03:57 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2018-08-10 13:27:15 -04:00
|
|
|
|
</Project>
|