yuzu/src/core/hle/kernel/kernel.h

180 lines
4.7 KiB
C
Raw Normal View History

2014-05-10 03:11:18 +01:00
// Copyright 2014 Citra Emulator Project / PPSSPP Project
// Licensed under GPLv2
// Refer to the license.txt file included.
2014-05-10 03:11:18 +01:00
#pragma once
#include <array>
#include <string>
#include "common/common.h"
#include "core/hle/result.h"
2014-05-10 03:11:18 +01:00
typedef u32 Handle;
typedef s32 Result;
2014-05-10 03:11:18 +01:00
namespace Kernel {
enum KernelHandle {
CurrentThread = 0xFFFF8000,
CurrentProcess = 0xFFFF8001,
};
enum class HandleType : u32 {
Unknown = 0,
Port = 1,
Service = 2,
Event = 3,
Mutex = 4,
SharedMemory = 5,
Redirection = 6,
Thread = 7,
Process = 8,
AddressArbiter = 9,
File = 10,
Semaphore = 11,
Archive = 12,
Directory = 13,
};
enum {
DEFAULT_STACK_SIZE = 0x4000,
};
class ObjectPool;
2014-05-10 03:11:18 +01:00
class Object : NonCopyable {
friend class ObjectPool;
u32 handle;
2014-05-10 03:11:18 +01:00
public:
virtual ~Object() {}
Handle GetHandle() const { return handle; }
virtual std::string GetTypeName() const { return "[BAD KERNEL OBJECT TYPE]"; }
virtual std::string GetName() const { return "[UNKNOWN KERNEL OBJECT]"; }
virtual Kernel::HandleType GetHandleType() const = 0;
/**
* Synchronize kernel object.
* @return True if the current thread should wait as a result of the sync
*/
virtual ResultVal<bool> SyncRequest() {
LOG_ERROR(Kernel, "(UNIMPLEMENTED)");
return UnimplementedFunction(ErrorModule::Kernel);
}
/**
* Wait for kernel object to synchronize.
* @return True if the current thread should wait as a result of the wait
*/
virtual ResultVal<bool> WaitSynchronization() {
LOG_ERROR(Kernel, "(UNIMPLEMENTED)");
return UnimplementedFunction(ErrorModule::Kernel);
}
2014-05-10 03:11:18 +01:00
};
class ObjectPool : NonCopyable {
2014-05-10 03:11:18 +01:00
public:
ObjectPool();
~ObjectPool() {}
2014-05-10 03:11:18 +01:00
// Allocates a handle within the range and inserts the object into the map.
Handle Create(Object* obj, int range_bottom=INITIAL_NEXT_ID, int range_top=0x7FFFFFFF);
2014-05-10 03:11:18 +01:00
static Object* CreateByIDType(int type);
2014-05-10 03:11:18 +01:00
template <class T>
void Destroy(Handle handle) {
if (Get<T>(handle)) {
occupied[handle - HANDLE_OFFSET] = false;
delete pool[handle - HANDLE_OFFSET];
2014-05-10 03:11:18 +01:00
}
2014-11-18 13:27:16 +00:00
}
2014-05-10 03:11:18 +01:00
2014-12-04 00:48:34 +00:00
bool IsValid(Handle handle) const;
2014-05-10 03:11:18 +01:00
template <class T>
T* Get(Handle handle) {
if (handle < HANDLE_OFFSET || handle >= HANDLE_OFFSET + MAX_COUNT || !occupied[handle - HANDLE_OFFSET]) {
if (handle != 0) {
LOG_ERROR(Kernel, "Bad object handle %08x", handle, handle);
2014-05-10 03:11:18 +01:00
}
return nullptr;
2014-05-10 03:11:18 +01:00
} else {
Object* t = pool[handle - HANDLE_OFFSET];
if (t->GetHandleType() != T::GetStaticHandleType()) {
LOG_ERROR(Kernel, "Wrong object type for %08x", handle, handle);
return nullptr;
2014-05-10 03:11:18 +01:00
}
return static_cast<T*>(t);
2014-05-10 03:11:18 +01:00
}
}
// ONLY use this when you know the handle is valid.
template <class T>
T *GetFast(Handle handle) {
const Handle realHandle = handle - HANDLE_OFFSET;
_dbg_assert_(Kernel, realHandle >= 0 && realHandle < MAX_COUNT && occupied[realHandle]);
return static_cast<T*>(pool[realHandle]);
2014-05-10 03:11:18 +01:00
}
template <class T, typename ArgT>
void Iterate(bool func(T*, ArgT), ArgT arg) {
2014-05-10 03:11:18 +01:00
int type = T::GetStaticIDType();
for (int i = 0; i < MAX_COUNT; i++)
2014-05-10 03:11:18 +01:00
{
if (!occupied[i])
continue;
T* t = static_cast<T*>(pool[i]);
2014-05-10 03:11:18 +01:00
if (t->GetIDType() == type) {
if (!func(t, arg))
break;
}
}
}
bool GetIDType(Handle handle, HandleType* type) const {
if ((handle < HANDLE_OFFSET) || (handle >= HANDLE_OFFSET + MAX_COUNT) ||
!occupied[handle - HANDLE_OFFSET]) {
LOG_ERROR(Kernel, "Bad object handle %08X", handle, handle);
2014-05-10 03:11:18 +01:00
return false;
}
Object* t = pool[handle - HANDLE_OFFSET];
*type = t->GetHandleType();
2014-05-10 03:11:18 +01:00
return true;
}
Object* &operator [](Handle handle);
2014-05-10 03:11:18 +01:00
void List();
void Clear();
2014-12-04 00:48:34 +00:00
int GetCount() const;
2014-05-10 03:11:18 +01:00
private:
2014-05-10 03:11:18 +01:00
enum {
MAX_COUNT = 0x1000,
HANDLE_OFFSET = 0x100,
INITIAL_NEXT_ID = 0x10,
};
std::array<Object*, MAX_COUNT> pool;
std::array<bool, MAX_COUNT> occupied;
int next_id;
2014-05-10 03:11:18 +01:00
};
extern ObjectPool g_object_pool;
extern Handle g_main_thread;
/// Initialize the kernel
void Init();
/// Shutdown the kernel
void Shutdown();
/**
* Loads executable stored at specified address
* @entry_point Entry point in memory of loaded executable
* @return True on success, otherwise false
*/
bool LoadExec(u32 entry_point);
} // namespace