194 lines
4.5 KiB
C++
194 lines
4.5 KiB
C++
#include "types.h"
|
|
|
|
#if defined(__unix__) || defined(__APPLE__) || defined(__SWITCH__)
|
|
#if defined(__APPLE__)
|
|
#define _XOPEN_SOURCE 1
|
|
#define __USE_GNU 1
|
|
#include <TargetConditionals.h>
|
|
#endif
|
|
#include <csignal>
|
|
#include <sys/time.h>
|
|
#if defined(__linux__) && !defined(__ANDROID__)
|
|
#include <sys/personality.h>
|
|
#include <dlfcn.h>
|
|
#endif
|
|
#include <unistd.h>
|
|
#include "hw/sh4/dyna/blockmanager.h"
|
|
|
|
#include "oslib/host_context.h"
|
|
|
|
#include "hw/sh4/dyna/ngen.h"
|
|
#include "rend/TexCache.h"
|
|
#include "hw/mem/_vmem.h"
|
|
#include "hw/mem/mem_watch.h"
|
|
|
|
#ifdef __SWITCH__
|
|
#include <ucontext.h>
|
|
extern "C" char __start__;
|
|
#define siginfo_t switch_siginfo_t
|
|
#endif // __SWITCH__
|
|
|
|
#if !defined(TARGET_NO_EXCEPTIONS)
|
|
|
|
void context_from_segfault(host_context_t* hctx, void* segfault_ctx);
|
|
void context_to_segfault(host_context_t* hctx, void* segfault_ctx);
|
|
|
|
#ifndef __SWITCH__
|
|
static struct sigaction next_segv_handler;
|
|
#endif
|
|
#if defined(__APPLE__)
|
|
static struct sigaction next_bus_handler;
|
|
#endif
|
|
|
|
void fault_handler(int sn, siginfo_t * si, void *segfault_ctx)
|
|
{
|
|
// Ram watcher for net rollback
|
|
if (memwatch::writeAccess(si->si_addr))
|
|
return;
|
|
// code protection in RAM
|
|
if (bm_RamWriteAccess(si->si_addr))
|
|
return;
|
|
// texture protection in VRAM
|
|
if (VramLockedWrite((u8*)si->si_addr))
|
|
return;
|
|
// FPCB jump table protection
|
|
if (BM_LockedWrite((u8*)si->si_addr))
|
|
return;
|
|
|
|
#if FEAT_SHREC == DYNAREC_JIT
|
|
// fast mem access rewriting
|
|
host_context_t ctx;
|
|
context_from_segfault(&ctx, segfault_ctx);
|
|
bool dyna_cde = ((unat)CC_RX2RW(ctx.pc) >= (unat)CodeCache) && ((unat)CC_RX2RW(ctx.pc) < (unat)(CodeCache + CODE_SIZE + TEMP_CODE_SIZE));
|
|
|
|
if (dyna_cde && ngen_Rewrite(ctx, si->si_addr))
|
|
{
|
|
context_to_segfault(&ctx, segfault_ctx);
|
|
return;
|
|
}
|
|
#endif
|
|
ERROR_LOG(COMMON, "SIGSEGV @ %p -> %p was not in vram, dynacode:%d", (void *)ctx.pc, si->si_addr, dyna_cde);
|
|
#ifdef __SWITCH__
|
|
MemoryInfo meminfo;
|
|
u32 pageinfo;
|
|
svcQueryMemory(&meminfo, &pageinfo, (u64)&__start__);
|
|
ERROR_LOG(COMMON, ".text base: %p", (void*)meminfo.addr);
|
|
#else
|
|
if (next_segv_handler.sa_sigaction != nullptr)
|
|
next_segv_handler.sa_sigaction(sn, si, segfault_ctx);
|
|
else
|
|
#endif // !__SWITCH__
|
|
die("segfault");
|
|
}
|
|
#undef HOST_CTX_READY
|
|
|
|
void os_InstallFaultHandler()
|
|
{
|
|
#ifndef __SWITCH__
|
|
struct sigaction act;
|
|
memset(&act, 0, sizeof(act));
|
|
act.sa_sigaction = fault_handler;
|
|
sigemptyset(&act.sa_mask);
|
|
act.sa_flags = SA_SIGINFO;
|
|
sigaction(SIGSEGV, &act, &next_segv_handler);
|
|
#endif
|
|
#if defined(__APPLE__)
|
|
//this is broken on osx/ios/mach in general
|
|
sigaction(SIGBUS, &act, &next_bus_handler);
|
|
#endif
|
|
}
|
|
|
|
void os_UninstallFaultHandler()
|
|
{
|
|
#ifndef __SWITCH__
|
|
sigaction(SIGSEGV, &next_segv_handler, nullptr);
|
|
#endif
|
|
#if defined(__APPLE__)
|
|
sigaction(SIGBUS, &next_bus_handler, nullptr);
|
|
#endif
|
|
}
|
|
|
|
#else // !defined(TARGET_NO_EXCEPTIONS)
|
|
|
|
void os_InstallFaultHandler()
|
|
{
|
|
}
|
|
void os_UninstallFaultHandler()
|
|
{
|
|
}
|
|
#endif // !defined(TARGET_NO_EXCEPTIONS)
|
|
|
|
double os_GetSeconds()
|
|
{
|
|
timeval a;
|
|
gettimeofday (&a,0);
|
|
static u64 tvs_base=a.tv_sec;
|
|
return a.tv_sec-tvs_base+a.tv_usec/1000000.0;
|
|
}
|
|
|
|
#if !defined(__unix__) && !defined(LIBRETRO)
|
|
void os_DebugBreak()
|
|
{
|
|
__builtin_trap();
|
|
}
|
|
#endif
|
|
|
|
void enable_runfast()
|
|
{
|
|
#if HOST_CPU==CPU_ARM && !defined(ARMCC)
|
|
static const unsigned int x = 0x04086060;
|
|
static const unsigned int y = 0x03000000;
|
|
int r;
|
|
asm volatile (
|
|
"fmrx %0, fpscr \n\t" //r0 = FPSCR
|
|
"and %0, %0, %1 \n\t" //r0 = r0 & 0x04086060
|
|
"orr %0, %0, %2 \n\t" //r0 = r0 | 0x03000000
|
|
"fmxr fpscr, %0 \n\t" //FPSCR = r0
|
|
: "=r"(r)
|
|
: "r"(x), "r"(y)
|
|
);
|
|
|
|
DEBUG_LOG(BOOT, "ARM VFP-Run Fast (NFP) enabled !");
|
|
#endif
|
|
}
|
|
|
|
void linux_fix_personality() {
|
|
#if defined(__linux__) && !defined(__ANDROID__)
|
|
DEBUG_LOG(BOOT, "Personality: %08X", personality(0xFFFFFFFF));
|
|
personality(~READ_IMPLIES_EXEC & personality(0xFFFFFFFF));
|
|
DEBUG_LOG(BOOT, "Updated personality: %08X", personality(0xFFFFFFFF));
|
|
#endif
|
|
}
|
|
|
|
void linux_rpi2_init() {
|
|
#if !defined(TARGET_BSD) && !defined(__ANDROID__) && defined(TARGET_VIDEOCORE)
|
|
void* handle;
|
|
void (*rpi_bcm_init)(void);
|
|
|
|
handle = dlopen("libbcm_host.so", RTLD_LAZY);
|
|
|
|
if (handle) {
|
|
DEBUG_LOG(BOOT, "found libbcm_host");
|
|
*(void**) (&rpi_bcm_init) = dlsym(handle, "bcm_host_init");
|
|
if (rpi_bcm_init) {
|
|
DEBUG_LOG(BOOT, "rpi2: bcm_init");
|
|
rpi_bcm_init();
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void common_linux_setup()
|
|
{
|
|
linux_fix_personality();
|
|
linux_rpi2_init();
|
|
|
|
enable_runfast();
|
|
os_InstallFaultHandler();
|
|
signal(SIGINT, exit);
|
|
|
|
DEBUG_LOG(BOOT, "Linux paging: %ld %08X %08X", sysconf(_SC_PAGESIZE), PAGE_SIZE, PAGE_MASK);
|
|
verify(PAGE_MASK==(sysconf(_SC_PAGESIZE)-1));
|
|
}
|
|
#endif
|