2014-05-10 02:11:18 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project / PPSSPP Project
|
|
|
|
// Licensed under GPLv2
|
2014-11-19 08:49:13 +00:00
|
|
|
// Refer to the license.txt file included.
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-12-04 00:55:45 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
2014-05-10 02:11:18 +00:00
|
|
|
#include "common/common.h"
|
|
|
|
|
2014-05-14 01:57:12 +00:00
|
|
|
#include "core/core.h"
|
2014-05-10 02:11:18 +00:00
|
|
|
#include "core/hle/kernel/kernel.h"
|
|
|
|
#include "core/hle/kernel/thread.h"
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
namespace Kernel {
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-06-02 01:42:50 +00:00
|
|
|
Handle g_main_thread = 0;
|
2014-05-20 22:13:25 +00:00
|
|
|
ObjectPool g_object_pool;
|
2014-05-10 02:11:18 +00:00
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
ObjectPool::ObjectPool() {
|
2014-05-10 02:11:18 +00:00
|
|
|
next_id = INITIAL_NEXT_ID;
|
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
Handle ObjectPool::Create(Object* obj, int range_bottom, int range_top) {
|
2014-05-10 02:11:18 +00:00
|
|
|
if (range_top > MAX_COUNT) {
|
|
|
|
range_top = MAX_COUNT;
|
|
|
|
}
|
|
|
|
if (next_id >= range_bottom && next_id < range_top) {
|
|
|
|
range_bottom = next_id++;
|
|
|
|
}
|
|
|
|
for (int i = range_bottom; i < range_top; i++) {
|
|
|
|
if (!occupied[i]) {
|
|
|
|
occupied[i] = true;
|
|
|
|
pool[i] = obj;
|
2014-05-15 22:26:28 +00:00
|
|
|
pool[i]->handle = i + HANDLE_OFFSET;
|
2014-05-10 02:11:18 +00:00
|
|
|
return i + HANDLE_OFFSET;
|
|
|
|
}
|
|
|
|
}
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Kernel, "Unable to allocate kernel object, too many objects slots in use.");
|
2014-05-10 02:11:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-12-04 00:48:34 +00:00
|
|
|
bool ObjectPool::IsValid(Handle handle) const {
|
2014-05-10 02:11:18 +00:00
|
|
|
int index = handle - HANDLE_OFFSET;
|
|
|
|
if (index < 0)
|
|
|
|
return false;
|
|
|
|
if (index >= MAX_COUNT)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return occupied[index];
|
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
void ObjectPool::Clear() {
|
|
|
|
for (int i = 0; i < MAX_COUNT; i++) {
|
2014-05-10 02:11:18 +00:00
|
|
|
//brutally clear everything, no validation
|
|
|
|
if (occupied[i])
|
|
|
|
delete pool[i];
|
|
|
|
occupied[i] = false;
|
|
|
|
}
|
2014-08-19 04:20:56 +00:00
|
|
|
pool.fill(nullptr);
|
2014-05-10 02:11:18 +00:00
|
|
|
next_id = INITIAL_NEXT_ID;
|
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
Object* &ObjectPool::operator [](Handle handle)
|
2014-05-10 02:11:18 +00:00
|
|
|
{
|
2014-12-06 01:53:49 +00:00
|
|
|
_dbg_assert_msg_(Kernel, IsValid(handle), "GRABBING UNALLOCED KERNEL OBJ");
|
2014-05-10 02:11:18 +00:00
|
|
|
return pool[handle - HANDLE_OFFSET];
|
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
void ObjectPool::List() {
|
2014-05-10 02:11:18 +00:00
|
|
|
for (int i = 0; i < MAX_COUNT; i++) {
|
|
|
|
if (occupied[i]) {
|
|
|
|
if (pool[i]) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_DEBUG(Kernel, "KO %i: %s \"%s\"", i + HANDLE_OFFSET, pool[i]->GetTypeName().c_str(),
|
2014-08-18 03:03:22 +00:00
|
|
|
pool[i]->GetName().c_str());
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-04 00:48:34 +00:00
|
|
|
int ObjectPool::GetCount() const {
|
2014-12-04 00:55:45 +00:00
|
|
|
return std::count(occupied.begin(), occupied.end(), true);
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
|
|
|
|
2014-05-20 22:13:25 +00:00
|
|
|
Object* ObjectPool::CreateByIDType(int type) {
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_ERROR(Kernel, "Unimplemented: %d.", type);
|
2014-09-14 02:48:30 +00:00
|
|
|
return nullptr;
|
2014-05-10 02:11:18 +00:00
|
|
|
}
|
2014-05-14 01:57:12 +00:00
|
|
|
|
2014-06-11 02:43:50 +00:00
|
|
|
/// Initialize the kernel
|
2014-05-20 22:13:25 +00:00
|
|
|
void Init() {
|
2014-05-20 23:37:46 +00:00
|
|
|
Kernel::ThreadingInit();
|
2014-05-20 22:13:25 +00:00
|
|
|
}
|
|
|
|
|
2014-06-11 02:43:50 +00:00
|
|
|
/// Shutdown the kernel
|
2014-05-20 22:13:25 +00:00
|
|
|
void Shutdown() {
|
2014-05-20 23:37:46 +00:00
|
|
|
Kernel::ThreadingShutdown();
|
2014-06-11 02:43:50 +00:00
|
|
|
|
|
|
|
g_object_pool.Clear(); // Free all kernel objects
|
2014-05-20 22:13:25 +00:00
|
|
|
}
|
|
|
|
|
2014-05-22 23:06:12 +00:00
|
|
|
/**
|
|
|
|
* 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) {
|
2014-05-14 01:57:12 +00:00
|
|
|
Core::g_app_core->SetPC(entry_point);
|
|
|
|
|
2014-05-15 00:49:27 +00:00
|
|
|
// 0x30 is the typical main thread priority I've seen used so far
|
2014-06-05 04:20:58 +00:00
|
|
|
g_main_thread = Kernel::SetupMainThread(0x30);
|
2014-05-14 01:57:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2014-05-22 23:06:12 +00:00
|
|
|
|
|
|
|
} // namespace
|