2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
2013-01-10 22:42:46 +00:00
|
|
|
#include "base/timeutil.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "HLE.h"
|
|
|
|
#include <map>
|
2012-12-28 22:33:00 +00:00
|
|
|
#include <vector>
|
2013-07-05 07:00:41 +00:00
|
|
|
#include <string>
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "../MemMap.h"
|
2013-01-31 05:58:51 +00:00
|
|
|
#include "../Config.h"
|
2013-03-09 19:37:57 +00:00
|
|
|
#include "Core/CoreTiming.h"
|
2013-03-02 07:14:00 +00:00
|
|
|
#include "Core/Reporting.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
#include "HLETables.h"
|
|
|
|
#include "../System.h"
|
|
|
|
#include "sceDisplay.h"
|
|
|
|
#include "sceIo.h"
|
|
|
|
#include "sceAudio.h"
|
|
|
|
#include "sceKernelMemory.h"
|
2012-12-09 06:39:36 +00:00
|
|
|
#include "sceKernelThread.h"
|
2012-12-21 05:54:40 +00:00
|
|
|
#include "sceKernelInterrupt.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
#include "../MIPS/MIPSCodeUtils.h"
|
2012-12-25 05:47:54 +00:00
|
|
|
#include "../Host.h"
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-12-09 06:39:36 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
// Do nothing after the syscall.
|
|
|
|
HLE_AFTER_NOTHING = 0x00,
|
|
|
|
// Reschedule immediately after the syscall.
|
|
|
|
HLE_AFTER_RESCHED = 0x01,
|
|
|
|
// Call current thread's callbacks after the syscall.
|
|
|
|
HLE_AFTER_CURRENT_CALLBACKS = 0x02,
|
|
|
|
// Check all threads' callbacks after the syscall.
|
|
|
|
HLE_AFTER_ALL_CALLBACKS = 0x04,
|
|
|
|
// Reschedule and process current thread's callbacks after the syscall.
|
|
|
|
HLE_AFTER_RESCHED_CALLBACKS = 0x08,
|
2012-12-21 05:54:40 +00:00
|
|
|
// Run interrupts (and probably reschedule) after the syscall.
|
|
|
|
HLE_AFTER_RUN_INTERRUPTS = 0x10,
|
2012-12-25 05:47:54 +00:00
|
|
|
// Switch to CORE_STEPPING after the syscall (for debugging.)
|
|
|
|
HLE_AFTER_DEBUG_BREAK = 0x20,
|
2013-10-30 05:53:25 +00:00
|
|
|
// Don't fill temp regs with 0xDEADBEEF.
|
|
|
|
HLE_AFTER_SKIP_DEADBEEF = 0x40,
|
2012-12-09 06:39:36 +00:00
|
|
|
};
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2013-07-05 07:00:41 +00:00
|
|
|
typedef std::vector<Syscall> SyscallVector;
|
|
|
|
typedef std::map<std::string, SyscallVector> SyscallVectorByModule;
|
|
|
|
|
2012-12-09 09:16:19 +00:00
|
|
|
static std::vector<HLEModule> moduleDB;
|
2013-03-09 19:37:57 +00:00
|
|
|
static int delayedResultEvent = -1;
|
2012-12-09 09:16:19 +00:00
|
|
|
static int hleAfterSyscall = HLE_AFTER_NOTHING;
|
2013-01-26 18:59:17 +00:00
|
|
|
static const char *hleAfterSyscallReschedReason;
|
2012-12-09 09:16:19 +00:00
|
|
|
|
2013-03-09 19:37:57 +00:00
|
|
|
void hleDelayResultFinish(u64 userdata, int cycleslate)
|
|
|
|
{
|
|
|
|
u32 error;
|
|
|
|
SceUID threadID = (SceUID) userdata;
|
2013-06-09 06:39:49 +00:00
|
|
|
SceUID verify = __KernelGetWaitID(threadID, WAITTYPE_HLEDELAY, error);
|
2013-03-11 09:52:15 +00:00
|
|
|
// The top 32 bits of userdata are the top 32 bits of the 64 bit result.
|
|
|
|
// We can't just put it all in userdata because we need to know the threadID...
|
|
|
|
u64 result = (userdata & 0xFFFFFFFF00000000ULL) | __KernelGetWaitValue(threadID, error);
|
2013-03-09 19:37:57 +00:00
|
|
|
|
|
|
|
if (error == 0 && verify == 1)
|
|
|
|
__KernelResumeThreadFromWait(threadID, result);
|
|
|
|
else
|
|
|
|
WARN_LOG(HLE, "Someone else woke up HLE-blocked thread?");
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
void HLEInit()
|
|
|
|
{
|
|
|
|
RegisterAllModules();
|
2013-03-09 19:37:57 +00:00
|
|
|
delayedResultEvent = CoreTiming::RegisterEvent("HLEDelayedResult", hleDelayResultFinish);
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
2012-12-28 06:14:31 +00:00
|
|
|
void HLEDoState(PointerWrap &p)
|
|
|
|
{
|
2013-09-15 03:23:03 +00:00
|
|
|
auto s = p.Section("HLE", 1);
|
|
|
|
if (!s)
|
|
|
|
return;
|
|
|
|
|
2013-03-09 19:37:57 +00:00
|
|
|
p.Do(delayedResultEvent);
|
|
|
|
CoreTiming::RestoreRegisterEvent(delayedResultEvent, "HLEDelayedResult", hleDelayResultFinish);
|
2012-12-28 06:14:31 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
void HLEShutdown()
|
|
|
|
{
|
2012-12-25 05:04:28 +00:00
|
|
|
hleAfterSyscall = HLE_AFTER_NOTHING;
|
2012-11-01 15:19:01 +00:00
|
|
|
moduleDB.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RegisterModule(const char *name, int numFunctions, const HLEFunction *funcTable)
|
|
|
|
{
|
|
|
|
HLEModule module = {name, numFunctions, funcTable};
|
|
|
|
moduleDB.push_back(module);
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetModuleIndex(const char *moduleName)
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < moduleDB.size(); i++)
|
|
|
|
if (strcmp(moduleName, moduleDB[i].name) == 0)
|
|
|
|
return (int)i;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int GetFuncIndex(int moduleIndex, u32 nib)
|
|
|
|
{
|
|
|
|
const HLEModule &module = moduleDB[moduleIndex];
|
|
|
|
for (int i = 0; i < module.numFunctions; i++)
|
|
|
|
{
|
|
|
|
if (module.funcTable[i].ID == nib)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 GetNibByName(const char *moduleName, const char *function)
|
|
|
|
{
|
|
|
|
int moduleIndex = GetModuleIndex(moduleName);
|
|
|
|
const HLEModule &module = moduleDB[moduleIndex];
|
|
|
|
for (int i = 0; i < module.numFunctions; i++)
|
|
|
|
{
|
|
|
|
if (!strcmp(module.funcTable[i].name, function))
|
|
|
|
return module.funcTable[i].ID;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
const HLEFunction *GetFunc(const char *moduleName, u32 nib)
|
|
|
|
{
|
|
|
|
int moduleIndex = GetModuleIndex(moduleName);
|
|
|
|
if (moduleIndex != -1)
|
|
|
|
{
|
|
|
|
int idx = GetFuncIndex(moduleIndex, nib);
|
|
|
|
if (idx != -1)
|
|
|
|
return &(moduleDB[moduleIndex].funcTable[idx]);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *GetFuncName(const char *moduleName, u32 nib)
|
|
|
|
{
|
2013-01-02 02:08:42 +00:00
|
|
|
_dbg_assert_msg_(HLE, moduleName != NULL, "Invalid module name.");
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
const HLEFunction *func = GetFunc(moduleName,nib);
|
|
|
|
if (func)
|
|
|
|
return func->name;
|
2013-01-02 02:08:42 +00:00
|
|
|
|
|
|
|
static char temp[256];
|
|
|
|
sprintf(temp,"[UNK: 0x%08x]", nib);
|
|
|
|
return temp;
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
u32 GetSyscallOp(const char *moduleName, u32 nib)
|
|
|
|
{
|
2013-09-01 01:35:59 +00:00
|
|
|
// Special case to hook up bad imports.
|
|
|
|
if (moduleName == NULL)
|
|
|
|
{
|
|
|
|
return (0x03FFFFCC); // invalid syscall
|
|
|
|
}
|
|
|
|
|
2012-11-01 15:19:01 +00:00
|
|
|
int modindex = GetModuleIndex(moduleName);
|
|
|
|
if (modindex != -1)
|
|
|
|
{
|
|
|
|
int funcindex = GetFuncIndex(modindex, nib);
|
|
|
|
if (funcindex != -1)
|
|
|
|
{
|
|
|
|
return (0x0000000c | (modindex<<18) | (funcindex<<6));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-01-27 10:37:45 +00:00
|
|
|
INFO_LOG(HLE, "Syscall (%s, %08x) unknown", moduleName, nib);
|
2012-11-01 15:19:01 +00:00
|
|
|
return (0x0003FFCC | (modindex<<18)); // invalid syscall
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ERROR_LOG(HLE, "Unknown module %s!", moduleName);
|
2013-01-27 10:37:45 +00:00
|
|
|
return (0x03FFFFCC); // invalid syscall
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-01 01:35:59 +00:00
|
|
|
bool FuncImportIsSyscall(const char *module, u32 nib)
|
|
|
|
{
|
|
|
|
return GetFunc(module, nib) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteFuncStub(u32 stubAddr, u32 symAddr)
|
|
|
|
{
|
|
|
|
// Note that this should be J not JAL, as otherwise control will return to the stub..
|
|
|
|
Memory::Write_U32(MIPS_MAKE_J(symAddr), stubAddr);
|
|
|
|
// Note: doing that, we can't trace external module calls, so maybe something else should be done to debug more efficiently
|
|
|
|
// Perhaps a syscall here (and verify support in jit), marking the module by uid (debugIdentifier)?
|
|
|
|
Memory::Write_U32(MIPS_MAKE_NOP(), stubAddr + 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void WriteFuncMissingStub(u32 stubAddr, u32 nid)
|
|
|
|
{
|
|
|
|
// Write a trap so we notice this func if it's called before resolving.
|
|
|
|
Memory::Write_U32(MIPS_MAKE_JR_RA(), stubAddr); // jr ra
|
|
|
|
Memory::Write_U32(GetSyscallOp(NULL, nid), stubAddr + 4);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WriteSyscall(const char *moduleName, u32 nib, u32 address)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
|
|
|
if (nib == 0)
|
|
|
|
{
|
2013-09-01 01:35:59 +00:00
|
|
|
WARN_LOG_REPORT(HLE, "Wrote patched out nid=0 syscall (%s)", moduleName);
|
2012-11-01 15:19:01 +00:00
|
|
|
Memory::Write_U32(MIPS_MAKE_JR_RA(), address); //patched out?
|
|
|
|
Memory::Write_U32(MIPS_MAKE_NOP(), address+4); //patched out?
|
2013-09-01 01:35:59 +00:00
|
|
|
return true;
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
2012-11-04 18:01:20 +00:00
|
|
|
int modindex = GetModuleIndex(moduleName);
|
|
|
|
if (modindex != -1)
|
|
|
|
{
|
|
|
|
Memory::Write_U32(MIPS_MAKE_JR_RA(), address); // jr ra
|
|
|
|
Memory::Write_U32(GetSyscallOp(moduleName, nib), address + 4);
|
2013-09-01 01:35:59 +00:00
|
|
|
return true;
|
2012-11-04 18:01:20 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-09-01 01:35:59 +00:00
|
|
|
ERROR_LOG_REPORT(HLE, "Unable to write unknown syscall: %s/%08x", moduleName, nib);
|
|
|
|
return false;
|
2012-11-04 18:01:20 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *GetFuncName(int moduleIndex, int func)
|
|
|
|
{
|
|
|
|
if (moduleIndex >= 0 && moduleIndex < (int)moduleDB.size())
|
|
|
|
{
|
|
|
|
const HLEModule &module = moduleDB[moduleIndex];
|
2013-06-26 18:30:49 +00:00
|
|
|
if (func >= 0 && func < module.numFunctions)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
|
|
|
return module.funcTable[func].name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return "[unknown]";
|
|
|
|
}
|
|
|
|
|
2012-12-09 06:39:36 +00:00
|
|
|
void hleCheckAllCallbacks()
|
|
|
|
{
|
|
|
|
hleAfterSyscall |= HLE_AFTER_ALL_CALLBACKS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hleCheckCurrentCallbacks()
|
|
|
|
{
|
|
|
|
hleAfterSyscall |= HLE_AFTER_CURRENT_CALLBACKS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hleReSchedule(const char *reason)
|
|
|
|
{
|
|
|
|
_dbg_assert_msg_(HLE, reason != 0, "hleReSchedule: Expecting a valid reason.");
|
2012-12-22 00:57:44 +00:00
|
|
|
_dbg_assert_msg_(HLE, reason != 0 && strlen(reason) < 256, "hleReSchedule: Not too long reason.");
|
2012-12-09 06:39:36 +00:00
|
|
|
|
|
|
|
hleAfterSyscall |= HLE_AFTER_RESCHED;
|
2012-12-09 17:12:49 +00:00
|
|
|
|
|
|
|
if (!reason)
|
2013-01-26 18:59:17 +00:00
|
|
|
hleAfterSyscallReschedReason = "Invalid reason";
|
2012-12-09 17:12:49 +00:00
|
|
|
else
|
2013-01-26 18:59:17 +00:00
|
|
|
hleAfterSyscallReschedReason = reason;
|
2012-12-09 06:39:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void hleReSchedule(bool callbacks, const char *reason)
|
|
|
|
{
|
|
|
|
hleReSchedule(reason);
|
2012-12-09 23:08:44 +00:00
|
|
|
if (callbacks)
|
|
|
|
hleAfterSyscall |= HLE_AFTER_RESCHED_CALLBACKS;
|
2012-12-09 06:39:36 +00:00
|
|
|
}
|
|
|
|
|
2012-12-21 05:54:40 +00:00
|
|
|
void hleRunInterrupts()
|
|
|
|
{
|
|
|
|
hleAfterSyscall |= HLE_AFTER_RUN_INTERRUPTS;
|
|
|
|
}
|
|
|
|
|
2012-12-25 05:47:54 +00:00
|
|
|
void hleDebugBreak()
|
2012-12-09 09:16:19 +00:00
|
|
|
{
|
2012-12-25 05:47:54 +00:00
|
|
|
hleAfterSyscall |= HLE_AFTER_DEBUG_BREAK;
|
|
|
|
}
|
|
|
|
|
2013-10-30 05:53:25 +00:00
|
|
|
void hleSkipDeadbeef()
|
|
|
|
{
|
|
|
|
hleAfterSyscall |= HLE_AFTER_SKIP_DEADBEEF;
|
|
|
|
}
|
|
|
|
|
2012-12-25 05:47:54 +00:00
|
|
|
// Pauses execution after an HLE call.
|
2012-12-25 05:58:54 +00:00
|
|
|
bool hleExecuteDebugBreak(const HLEFunction &func)
|
2012-12-25 05:47:54 +00:00
|
|
|
{
|
|
|
|
const u32 NID_SUSPEND_INTR = 0x092968F4, NID_RESUME_INTR = 0x5F10D406;
|
|
|
|
|
|
|
|
// Never break on these, they're noise.
|
|
|
|
u32 blacklistedNIDs[] = {NID_SUSPEND_INTR, NID_RESUME_INTR, NID_IDLE};
|
2013-02-18 16:44:59 +00:00
|
|
|
for (size_t i = 0; i < ARRAY_SIZE(blacklistedNIDs); ++i)
|
2012-12-25 05:47:54 +00:00
|
|
|
{
|
|
|
|
if (func.ID == blacklistedNIDs[i])
|
2012-12-25 05:58:54 +00:00
|
|
|
return false;
|
2012-12-25 05:47:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Core_EnableStepping(true);
|
|
|
|
host->SetDebugMode(true);
|
2012-12-25 05:58:54 +00:00
|
|
|
return true;
|
2012-12-25 05:47:54 +00:00
|
|
|
}
|
|
|
|
|
2013-03-09 19:37:57 +00:00
|
|
|
u32 hleDelayResult(u32 result, const char *reason, int usec)
|
|
|
|
{
|
2013-04-03 07:04:17 +00:00
|
|
|
if (__KernelIsDispatchEnabled())
|
|
|
|
{
|
|
|
|
CoreTiming::ScheduleEvent(usToCycles(usec), delayedResultEvent, __KernelGetCurThread());
|
2013-06-09 06:39:49 +00:00
|
|
|
__KernelWaitCurThread(WAITTYPE_HLEDELAY, 1, result, 0, false, reason);
|
2013-04-03 07:04:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
WARN_LOG(HLE, "Dispatch disabled, not delaying HLE result (right thing to do?)");
|
2013-03-10 17:59:59 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 hleDelayResult(u64 result, const char *reason, int usec)
|
|
|
|
{
|
2013-04-03 07:04:17 +00:00
|
|
|
if (__KernelIsDispatchEnabled())
|
|
|
|
{
|
|
|
|
u64 param = (result & 0xFFFFFFFF00000000) | __KernelGetCurThread();
|
|
|
|
CoreTiming::ScheduleEvent(usToCycles(usec), delayedResultEvent, param);
|
2013-06-09 06:39:49 +00:00
|
|
|
__KernelWaitCurThread(WAITTYPE_HLEDELAY, 1, (u32) result, 0, false, reason);
|
2013-04-03 07:04:17 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
WARN_LOG(HLE, "Dispatch disabled, not delaying HLE result (right thing to do?)");
|
2013-03-09 19:37:57 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-03-19 14:48:41 +00:00
|
|
|
void hleEatCycles(int cycles)
|
2013-03-09 21:41:42 +00:00
|
|
|
{
|
|
|
|
// Maybe this should Idle, at least for larger delays? Could that cause issues?
|
2013-03-19 14:48:41 +00:00
|
|
|
currentMIPS->downcount -= cycles;
|
|
|
|
}
|
|
|
|
|
|
|
|
void hleEatMicro(int usec)
|
|
|
|
{
|
|
|
|
hleEatCycles((int) usToCycles(usec));
|
2013-03-09 21:41:42 +00:00
|
|
|
}
|
|
|
|
|
2013-10-30 05:53:25 +00:00
|
|
|
const static u32 deadbeefRegs[12] = {0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF, 0xDEADBEEF};
|
|
|
|
inline static void SetDeadbeefRegs()
|
|
|
|
{
|
2013-10-30 06:02:05 +00:00
|
|
|
if (g_Config.bSkipDeadbeefFilling)
|
|
|
|
return;
|
|
|
|
|
2013-10-30 05:53:25 +00:00
|
|
|
currentMIPS->r[MIPS_REG_COMPILER_SCRATCH] = 0xDEADBEEF;
|
|
|
|
// Set all the arguments and temp regs.
|
|
|
|
memcpy(¤tMIPS->r[MIPS_REG_A0], deadbeefRegs, sizeof(deadbeefRegs));
|
|
|
|
// Using a magic number since there's confusion/disagreement on reg names.
|
|
|
|
currentMIPS->r[24] = 0xDEADBEEF;
|
|
|
|
currentMIPS->r[25] = 0xDEADBEEF;
|
|
|
|
|
|
|
|
currentMIPS->lo = 0xDEADBEEF;
|
|
|
|
currentMIPS->hi = 0xDEADBEEF;
|
|
|
|
}
|
|
|
|
|
2013-11-02 20:15:44 +00:00
|
|
|
inline void hleFinishSyscall(const HLEFunction &info)
|
2012-12-25 05:47:54 +00:00
|
|
|
{
|
2013-10-30 05:53:25 +00:00
|
|
|
if ((hleAfterSyscall & HLE_AFTER_SKIP_DEADBEEF) == 0)
|
|
|
|
SetDeadbeefRegs();
|
|
|
|
|
2012-12-09 09:16:19 +00:00
|
|
|
if ((hleAfterSyscall & HLE_AFTER_CURRENT_CALLBACKS) != 0)
|
|
|
|
__KernelForceCallbacks();
|
|
|
|
|
2012-12-21 05:54:40 +00:00
|
|
|
if ((hleAfterSyscall & HLE_AFTER_RUN_INTERRUPTS) != 0)
|
|
|
|
__RunOnePendingInterrupt();
|
|
|
|
|
2012-12-09 09:16:19 +00:00
|
|
|
// Rescheduling will also do HLE_AFTER_ALL_CALLBACKS.
|
|
|
|
if ((hleAfterSyscall & HLE_AFTER_RESCHED_CALLBACKS) != 0)
|
|
|
|
__KernelReSchedule(true, hleAfterSyscallReschedReason);
|
|
|
|
else if ((hleAfterSyscall & HLE_AFTER_RESCHED) != 0)
|
|
|
|
__KernelReSchedule(hleAfterSyscallReschedReason);
|
|
|
|
else if ((hleAfterSyscall & HLE_AFTER_ALL_CALLBACKS) != 0)
|
|
|
|
__KernelCheckCallbacks();
|
|
|
|
|
2012-12-25 05:58:54 +00:00
|
|
|
if ((hleAfterSyscall & HLE_AFTER_DEBUG_BREAK) != 0)
|
|
|
|
{
|
2013-11-02 20:15:44 +00:00
|
|
|
if (!hleExecuteDebugBreak(info))
|
2012-12-25 05:58:54 +00:00
|
|
|
{
|
|
|
|
// We'll do it next syscall.
|
|
|
|
hleAfterSyscall = HLE_AFTER_DEBUG_BREAK;
|
2013-01-26 18:59:17 +00:00
|
|
|
hleAfterSyscallReschedReason = 0;
|
2012-12-25 05:58:54 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-09 09:16:19 +00:00
|
|
|
hleAfterSyscall = HLE_AFTER_NOTHING;
|
2013-01-26 18:59:17 +00:00
|
|
|
hleAfterSyscallReschedReason = 0;
|
2012-12-09 09:16:19 +00:00
|
|
|
}
|
|
|
|
|
2013-01-11 16:37:54 +00:00
|
|
|
inline void updateSyscallStats(int modulenum, int funcnum, double total)
|
|
|
|
{
|
|
|
|
const char *name = moduleDB[modulenum].funcTable[funcnum].name;
|
|
|
|
// Ignore this one, especially for msInSyscalls (although that ignores CoreTiming events.)
|
|
|
|
if (0 == strcmp(name, "_sceKernelIdle"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (total > kernelStats.slowestSyscallTime)
|
|
|
|
{
|
|
|
|
kernelStats.slowestSyscallTime = total;
|
|
|
|
kernelStats.slowestSyscallName = name;
|
|
|
|
}
|
|
|
|
kernelStats.msInSyscalls += total;
|
|
|
|
|
|
|
|
KernelStatsSyscall statCall(modulenum, funcnum);
|
|
|
|
auto summedStat = kernelStats.summedMsInSyscalls.find(statCall);
|
|
|
|
if (summedStat == kernelStats.summedMsInSyscalls.end())
|
|
|
|
{
|
|
|
|
kernelStats.summedMsInSyscalls[statCall] = total;
|
|
|
|
if (total > kernelStats.summedSlowestSyscallTime)
|
|
|
|
{
|
|
|
|
kernelStats.summedSlowestSyscallTime = total;
|
|
|
|
kernelStats.summedSlowestSyscallName = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double newTotal = kernelStats.summedMsInSyscalls[statCall] += total;
|
|
|
|
if (newTotal > kernelStats.summedSlowestSyscallTime)
|
|
|
|
{
|
|
|
|
kernelStats.summedSlowestSyscallTime = newTotal;
|
|
|
|
kernelStats.summedSlowestSyscallName = name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-02 20:15:44 +00:00
|
|
|
inline void CallSyscallWithFlags(const HLEFunction *info)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-11-02 20:15:44 +00:00
|
|
|
const u32 flags = info->flags;
|
|
|
|
if ((flags & HLE_NOT_DISPATCH_SUSPENDED) && !__KernelIsDispatchEnabled())
|
2013-03-16 18:22:47 +00:00
|
|
|
{
|
2013-11-02 20:15:44 +00:00
|
|
|
DEBUG_LOG(HLE, "%s: dispatch suspended", info->name);
|
|
|
|
RETURN(SCE_KERNEL_ERROR_CAN_NOT_WAIT);
|
2013-03-16 18:22:47 +00:00
|
|
|
}
|
2013-11-02 20:15:44 +00:00
|
|
|
else if ((flags & HLE_NOT_IN_INTERRUPT) && __IsInInterrupt())
|
|
|
|
{
|
|
|
|
DEBUG_LOG(HLE, "%s: in interrupt", info->name);
|
|
|
|
RETURN(SCE_KERNEL_ERROR_ILLEGAL_CONTEXT);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
info->func();
|
|
|
|
|
|
|
|
if (hleAfterSyscall != HLE_AFTER_NOTHING)
|
|
|
|
hleFinishSyscall(*info);
|
|
|
|
else
|
|
|
|
SetDeadbeefRegs();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void CallSyscallWithoutFlags(const HLEFunction *info)
|
|
|
|
{
|
|
|
|
info->func();
|
|
|
|
|
|
|
|
if (hleAfterSyscall != HLE_AFTER_NOTHING)
|
|
|
|
hleFinishSyscall(*info);
|
|
|
|
else
|
|
|
|
SetDeadbeefRegs();
|
|
|
|
}
|
|
|
|
|
|
|
|
const HLEFunction *GetSyscallInfo(MIPSOpcode op)
|
|
|
|
{
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 callno = (op >> 6) & 0xFFFFF; //20 bits
|
|
|
|
int funcnum = callno & 0xFFF;
|
|
|
|
int modulenum = (callno & 0xFF000) >> 12;
|
2013-10-21 21:02:37 +00:00
|
|
|
if (funcnum == 0xfff)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-01-27 10:37:45 +00:00
|
|
|
ERROR_LOG(HLE,"Unknown syscall: Module: %s", modulenum > (int) moduleDB.size() ? "(unknown)" : moduleDB[modulenum].name);
|
2013-11-02 20:15:44 +00:00
|
|
|
return NULL;
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
2013-11-02 20:15:44 +00:00
|
|
|
return &moduleDB[modulenum].funcTable[funcnum];
|
|
|
|
}
|
|
|
|
|
|
|
|
void *GetQuickSyscallFunc(MIPSOpcode op)
|
|
|
|
{
|
|
|
|
// TODO: Clear jit cache on g_Config.bShowDebugStats change?
|
|
|
|
if (g_Config.bShowDebugStats)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
const HLEFunction *info = GetSyscallInfo(op);
|
|
|
|
if (!info || !info->func)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
// TODO: Do this with a flag?
|
|
|
|
if (op == GetSyscallOp("FakeSysCalls", NID_IDLE))
|
|
|
|
return (void *)info->func;
|
|
|
|
if (info->flags != 0)
|
|
|
|
return (void *)&CallSyscallWithFlags;
|
|
|
|
return (void *)&CallSyscallWithoutFlags;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CallSyscall(MIPSOpcode op)
|
|
|
|
{
|
|
|
|
double start = 0.0; // need to initialize to fix the race condition where g_Config.bShowDebugStats is enabled in the middle of this func.
|
|
|
|
if (g_Config.bShowDebugStats)
|
|
|
|
{
|
|
|
|
time_update();
|
|
|
|
start = time_now_d();
|
|
|
|
}
|
|
|
|
const HLEFunction *info = GetSyscallInfo(op);
|
|
|
|
if (info)
|
2012-11-01 15:19:01 +00:00
|
|
|
{
|
2013-11-02 20:15:44 +00:00
|
|
|
if (info->func)
|
2013-03-25 06:30:32 +00:00
|
|
|
{
|
2013-11-02 20:15:44 +00:00
|
|
|
if (op == GetSyscallOp("FakeSysCalls", NID_IDLE))
|
|
|
|
info->func();
|
|
|
|
else if (info->flags != 0)
|
|
|
|
CallSyscallWithFlags(info);
|
2013-03-25 06:30:32 +00:00
|
|
|
else
|
2013-11-02 20:15:44 +00:00
|
|
|
CallSyscallWithoutFlags(info);
|
2013-03-25 06:30:32 +00:00
|
|
|
}
|
|
|
|
else
|
2013-11-02 20:15:44 +00:00
|
|
|
ERROR_LOG_REPORT(HLE, "Unimplemented HLE function %s", info->name);
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|
2013-01-31 05:58:51 +00:00
|
|
|
if (g_Config.bShowDebugStats)
|
2013-02-03 04:04:45 +00:00
|
|
|
{
|
|
|
|
time_update();
|
2013-11-02 20:15:44 +00:00
|
|
|
u32 callno = (op >> 6) & 0xFFFFF; //20 bits
|
|
|
|
int funcnum = callno & 0xFFF;
|
|
|
|
int modulenum = (callno & 0xFF000) >> 12;
|
2013-01-31 05:58:51 +00:00
|
|
|
updateSyscallStats(modulenum, funcnum, time_now_d() - start);
|
2013-02-03 04:04:45 +00:00
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
}
|