This commit is contained in:
SSimco 2023-10-03 05:51:47 +03:00
parent aca4534108
commit 99e908c708
12 changed files with 2116 additions and 19 deletions

3
.gitmodules vendored
View File

@ -16,3 +16,6 @@
[submodule "dependencies/imgui"]
path = dependencies/imgui
url = https://github.com/ocornut/imgui
[submodule "dependencies/xbyak_aarch64"]
path = dependencies/xbyak_aarch64
url = https://github.com/fujitsu/xbyak_aarch64

View File

@ -200,6 +200,10 @@ endif()
add_subdirectory("dependencies/ih264d" EXCLUDE_FROM_ALL)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "(aarch64)|(AARCH64)")
add_subdirectory("dependencies/xbyak_aarch64" EXCLUDE_FROM_ALL)
endif()
find_package(ZArchive)
if (NOT ZArchive_FOUND)
add_subdirectory("dependencies/ZArchive" EXCLUDE_FROM_ALL)

1
dependencies/xbyak_aarch64 vendored Submodule

@ -0,0 +1 @@
Subproject commit ffaa99b55efb822b389b97a24044a41a9ef74a10

View File

@ -78,15 +78,6 @@ add_library(CemuCafe
HW/Espresso/Recompiler/PPCRecompilerImlGenFPU.cpp
HW/Espresso/Recompiler/PPCRecompilerIml.h
HW/Espresso/Recompiler/PPCRecompilerIntermediate.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64AVX.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64BMI.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64FPU.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64Gen.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64GenFPU.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64.h
HW/Espresso/Recompiler/BackendX64/X64Emit.hpp
HW/Espresso/Recompiler/BackendX64/x86Emitter.h
HW/Latte/Common/RegisterSerializer.cpp
HW/Latte/Common/RegisterSerializer.h
HW/Latte/Common/ShaderSerializer.cpp
@ -490,6 +481,25 @@ add_library(CemuCafe
TitleList/TitleList.h
)
if(CMAKE_SYSTEM_PROCESSOR MATCHES "(x86)|(X86)|(amd64)|(AMD64)")
target_sources(CemuCafe PRIVATE
HW/Espresso/Recompiler/BackendX64/BackendX64AVX.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64BMI.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64FPU.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64Gen.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64GenFPU.cpp
HW/Espresso/Recompiler/BackendX64/BackendX64.h
HW/Espresso/Recompiler/BackendX64/X64Emit.hpp
HW/Espresso/Recompiler/BackendX64/x86Emitter.h
)
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "(aarch64)|(AARCH64)")
target_sources(CemuCafe PRIVATE
HW/Espresso/Recompiler/BackendAArch64/BackendAArch64.cpp
HW/Espresso/Recompiler/BackendAArch64/BackendAArch64.h
)
endif()
if(APPLE)
target_sources(CemuCafe PRIVATE "HW/Latte/Renderer/Vulkan/CocoaSurface.mm")
endif()
@ -535,6 +545,10 @@ if (ENABLE_WAYLAND)
target_link_libraries(CemuCafe PUBLIC Wayland::Client)
endif()
if(CMAKE_SYSTEM_PROCESSOR MATCHES "(aarch64)|(AARCH64)")
target_link_libraries(CemuCafe PRIVATE xbyak_aarch64)
endif()
if(WIN32)
target_link_libraries(CemuCafe PRIVATE iphlpapi)
endif()

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,5 @@
#pragma once
bool PPCRecompiler_generateAArch64Code(struct PPCRecFunction_t* PPCRecFunction, struct ppcImlGenContext_t* ppcImlGenContext);
void PPCRecompilerAArch64Gen_generateRecompilerInterfaceFunctions();

View File

@ -17,6 +17,10 @@
#include "IML/IMLRegisterAllocator.h"
#include "BackendX64/BackendX64.h"
#if defined(__aarch64__)
#include "BackendAArch64/BackendAArch64.h"
#endif
struct PPCInvalidationRange
{
MPTR startAddress;
@ -217,15 +221,21 @@ PPCRecFunction_t* PPCRecompiler_recompileFunction(PPCFunctionBoundaryTracker::PP
// Functions for testing (botw):
// 3B4049C (large with switch case)
// 30BF118 (has a bndz copy loop + some float instructions at the end)
#if defined(ARCH_X86_64)
// emit x64 code
bool x64GenerationSuccess = PPCRecompiler_generateX64Code(ppcRecFunc, &ppcImlGenContext);
if (x64GenerationSuccess == false)
{
return nullptr;
}
#elif defined(__aarch64__)
bool aarch64GenerationSuccess = PPCRecompiler_generateAArch64Code(ppcRecFunc, &ppcImlGenContext);
if (aarch64GenerationSuccess == false)
{
return nullptr;
}
#endif
// collect list of PPC-->x64 entry points
entryPointsOut.clear();
@ -251,7 +261,7 @@ void PPCRecompiler_NativeRegisterAllocatorPass(ppcImlGenContext_t& ppcImlGenCont
for (auto& it : ppcImlGenContext.mappedRegs)
raParam.regIdToName.try_emplace(it.second.GetRegID(), it.first);
#if defined(ARCH_X86_64)
auto& gprPhysPool = raParam.GetPhysRegPool(IMLRegFormat::I64);
gprPhysPool.SetAvailable(IMLArchX86::PHYSREG_GPR_BASE + X86_REG_RAX);
gprPhysPool.SetAvailable(IMLArchX86::PHYSREG_GPR_BASE + X86_REG_RDX);
@ -283,6 +293,15 @@ void PPCRecompiler_NativeRegisterAllocatorPass(ppcImlGenContext_t& ppcImlGenCont
fprPhysPool.SetAvailable(IMLArchX86::PHYSREG_FPR_BASE + 12);
fprPhysPool.SetAvailable(IMLArchX86::PHYSREG_FPR_BASE + 13);
fprPhysPool.SetAvailable(IMLArchX86::PHYSREG_FPR_BASE + 14);
#elif defined(__aarch64__)
auto& gprPhysPool = raParam.GetPhysRegPool(IMLRegFormat::I64);
for (int i = 0; i < 12; i++)
gprPhysPool.SetAvailable(i);
auto& fprPhysPool = raParam.GetPhysRegPool(IMLRegFormat::F64);
for (int i = 0; i < 15; i++)
fprPhysPool.SetAvailable(i);
#endif
IMLRegisterAllocator_AllocateRegisters(&ppcImlGenContext, raParam);
}
@ -659,8 +678,11 @@ void PPCRecompiler_init()
debug_printf("Allocating %dMB for recompiler instance data...\n", (sint32)(sizeof(PPCRecompilerInstanceData_t) / 1024 / 1024));
ppcRecompilerInstanceData = (PPCRecompilerInstanceData_t*)MemMapper::ReserveMemory(nullptr, sizeof(PPCRecompilerInstanceData_t), MemMapper::PAGE_PERMISSION::P_RW);
MemMapper::AllocateMemory(&(ppcRecompilerInstanceData->_x64XMM_xorNegateMaskBottom), sizeof(PPCRecompilerInstanceData_t) - offsetof(PPCRecompilerInstanceData_t, _x64XMM_xorNegateMaskBottom), MemMapper::PAGE_PERMISSION::P_RW, true);
#if defined(ARCH_X86_64)
PPCRecompilerX64Gen_generateRecompilerInterfaceFunctions();
#else
PPCRecompilerAArch64Gen_generateRecompilerInterfaceFunctions();
#endif
PPCRecompiler_allocateRange(0, 0x1000); // the first entry is used for fallback to interpreter
PPCRecompiler_allocateRange(mmuRange_TRAMPOLINE_AREA.getBase(), mmuRange_TRAMPOLINE_AREA.getSize());
PPCRecompiler_allocateRange(mmuRange_CODECAVE.getBase(), mmuRange_CODECAVE.getSize());

View File

@ -84,8 +84,8 @@
namespace fs = std::filesystem;
#if __ANDROID__
#endif // __ANDROID
#include "Common/unix/FilesystemAndroid.h"
#endif // __ANDROID
namespace cemu
{
@ -93,8 +93,10 @@ namespace fs
{
inline bool is_directory(const std::filesystem::path& p)
{
#if __ANDROID__
if (FilesystemAndroid::isContentUri(p))
return FilesystemAndroid::isDirectory(p);
#endif // __ANDROID__
return std::filesystem::is_directory(p);
}
inline bool is_directory(const std::filesystem::path& p, std::error_code& ec)

View File

@ -13,7 +13,8 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters("x86_64", "arm64-v8a")
// abiFilters("x86_64", "arm64-v8a")
abiFilters("arm64-v8a")
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
@ -38,6 +39,7 @@ android {
externalNativeBuild {
cmake {
arguments(
"-DANDROID_ARM_MODE=arm", "-DANDROID_STL=c++_shared",
'-DENABLE_VCPKG=ON',
'-DVCPKG_TARGET_ANDROID=ON',
'-DENABLE_SDL=OFF',
@ -47,7 +49,8 @@ android {
'-DENABLE_DISCORD_RPC=OFF',
'-DENABLE_WAYLAND=OFF'
)
abiFilters("x86_64", "arm64-v8a")
// abiFilters("x86_64", "arm64-v8a")
abiFilters("arm64-v8a")
}
}
}

View File

@ -109,7 +109,7 @@ std::string GameTitleLoader::GetNameByTitleId(uint64 titleId)
return "Unknown title";
std::string name;
if (!GetConfig().GetGameListCustomName(titleId, name))
name = titleInfo.GetTitleName();
name = titleInfo.GetMetaTitleName();
m_name_cache.emplace(titleId, name);
return name;
}

View File

@ -66,7 +66,7 @@ bool ActiveSettings::FullscreenEnabled()
CPUMode ActiveSettings::GetCPUMode()
{
#ifndef ARCH_X86_64
return CPUMode::SinglecoreInterpreter;
return CPUMode::SinglecoreRecompiler;
#else
auto mode = g_current_game_profile->GetCPUMode().value_or(CPUMode::Auto);

View File

@ -10,7 +10,6 @@
#include "config/NetworkSettings.h"
#include "config/LaunchSettings.h"
#include "input/InputManager.h"
#include "gui/CemuApp.h"
#include "Cafe/CafeSystem.h"
#include "Cafe/TitleList/TitleList.h"