mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-18 01:46:47 +00:00
kern: implement KUnsafeMemory
This commit is contained in:
parent
7bc0250cea
commit
970b85bf9a
4 changed files with 86 additions and 0 deletions
|
@ -79,6 +79,7 @@
|
||||||
|
|
||||||
/* More Miscellaneous objects. */
|
/* More Miscellaneous objects. */
|
||||||
#include <mesosphere/kern_k_object_name.hpp>
|
#include <mesosphere/kern_k_object_name.hpp>
|
||||||
|
#include <mesosphere/kern_k_unsafe_memory.hpp>
|
||||||
#include <mesosphere/kern_k_scoped_resource_reservation.hpp>
|
#include <mesosphere/kern_k_scoped_resource_reservation.hpp>
|
||||||
|
|
||||||
/* Supervisor Calls. */
|
/* Supervisor Calls. */
|
||||||
|
|
|
@ -0,0 +1,78 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2018-2020 Atmosphère-NX
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify it
|
||||||
|
* under the terms and conditions of the GNU General Public License,
|
||||||
|
* version 2, as published by the Free Software Foundation.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope 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 for
|
||||||
|
* more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
#pragma once
|
||||||
|
#include <mesosphere/kern_common.hpp>
|
||||||
|
#include <mesosphere/kern_k_light_lock.hpp>
|
||||||
|
|
||||||
|
namespace ams::kern {
|
||||||
|
|
||||||
|
class KUnsafeMemory {
|
||||||
|
private:
|
||||||
|
mutable KLightLock lock;
|
||||||
|
size_t limit_size;
|
||||||
|
size_t current_size;
|
||||||
|
public:
|
||||||
|
constexpr KUnsafeMemory() : lock(), limit_size(), current_size() { /* ... */ }
|
||||||
|
|
||||||
|
bool TryReserve(size_t size) {
|
||||||
|
MESOSPHERE_ASSERT_THIS();
|
||||||
|
KScopedLightLock lk(this->lock);
|
||||||
|
|
||||||
|
/* Test for overflow. */
|
||||||
|
if (this->current_size > this->current_size + size) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Test for limit allowance. */
|
||||||
|
if (this->current_size + size > this->limit_size) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Reserve the size. */
|
||||||
|
this->current_size += size;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Release(size_t size) {
|
||||||
|
MESOSPHERE_ASSERT_THIS();
|
||||||
|
KScopedLightLock lk(this->lock);
|
||||||
|
|
||||||
|
MESOSPHERE_ABORT_UNLESS(this->current_size >= size);
|
||||||
|
this->current_size -= size;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t GetLimitSize() const {
|
||||||
|
MESOSPHERE_ASSERT_THIS();
|
||||||
|
KScopedLightLock lk(this->lock);
|
||||||
|
return this->limit_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t GetCurrentSize() const {
|
||||||
|
MESOSPHERE_ASSERT_THIS();
|
||||||
|
KScopedLightLock lk(this->lock);
|
||||||
|
return this->current_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
Result SetLimitSize(size_t size) {
|
||||||
|
MESOSPHERE_ASSERT_THIS();
|
||||||
|
KScopedLightLock lk(this->lock);
|
||||||
|
|
||||||
|
R_UNLESS(size >= this->current_size, svc::ResultLimitReached());
|
||||||
|
this->limit_size = size;
|
||||||
|
return ResultSuccess();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
|
@ -35,6 +35,7 @@ namespace ams::kern {
|
||||||
class KMemoryBlockSlabManager;
|
class KMemoryBlockSlabManager;
|
||||||
class KBlockInfoManager;
|
class KBlockInfoManager;
|
||||||
class KSynchronization;
|
class KSynchronization;
|
||||||
|
class KUnsafeMemory;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -72,6 +73,7 @@ namespace ams::kern {
|
||||||
static KBlockInfoManager s_block_info_manager;
|
static KBlockInfoManager s_block_info_manager;
|
||||||
static KSupervisorPageTable s_supervisor_page_table;
|
static KSupervisorPageTable s_supervisor_page_table;
|
||||||
static KSynchronization s_synchronization;
|
static KSynchronization s_synchronization;
|
||||||
|
static KUnsafeMemory s_unsafe_memory;
|
||||||
static KWorkerTaskManager s_worker_task_managers[KWorkerTaskManager::WorkerType_Count];
|
static KWorkerTaskManager s_worker_task_managers[KWorkerTaskManager::WorkerType_Count];
|
||||||
private:
|
private:
|
||||||
static ALWAYS_INLINE KCoreLocalContext &GetCoreLocalContext() {
|
static ALWAYS_INLINE KCoreLocalContext &GetCoreLocalContext() {
|
||||||
|
@ -144,6 +146,10 @@ namespace ams::kern {
|
||||||
return s_synchronization;
|
return s_synchronization;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static ALWAYS_INLINE KUnsafeMemory &GetUnsafeMemory() {
|
||||||
|
return s_unsafe_memory;
|
||||||
|
}
|
||||||
|
|
||||||
static ALWAYS_INLINE KWorkerTaskManager &GetWorkerTaskManager(KWorkerTaskManager::WorkerType type) {
|
static ALWAYS_INLINE KWorkerTaskManager &GetWorkerTaskManager(KWorkerTaskManager::WorkerType type) {
|
||||||
MESOSPHERE_ASSERT(type <= KWorkerTaskManager::WorkerType_Count);
|
MESOSPHERE_ASSERT(type <= KWorkerTaskManager::WorkerType_Count);
|
||||||
return s_worker_task_managers[type];
|
return s_worker_task_managers[type];
|
||||||
|
|
|
@ -27,6 +27,7 @@ namespace ams::kern {
|
||||||
KBlockInfoManager Kernel::s_block_info_manager;
|
KBlockInfoManager Kernel::s_block_info_manager;
|
||||||
KSupervisorPageTable Kernel::s_supervisor_page_table;
|
KSupervisorPageTable Kernel::s_supervisor_page_table;
|
||||||
KSynchronization Kernel::s_synchronization;
|
KSynchronization Kernel::s_synchronization;
|
||||||
|
KUnsafeMemory Kernel::s_unsafe_memory;
|
||||||
KWorkerTaskManager Kernel::s_worker_task_managers[KWorkerTaskManager::WorkerType_Count];
|
KWorkerTaskManager Kernel::s_worker_task_managers[KWorkerTaskManager::WorkerType_Count];
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
Loading…
Reference in a new issue