2020-03-29 21:43:16 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-03-29 21:43:16 +00:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
#include <stratosphere.hpp>
|
2022-06-11 05:35:57 +00:00
|
|
|
#include "impl/os_memory_heap_manager.hpp"
|
2020-03-29 21:43:16 +00:00
|
|
|
|
|
|
|
namespace ams::os {
|
|
|
|
|
2022-06-11 05:35:57 +00:00
|
|
|
Result SetMemoryHeapSize(size_t size) {
|
|
|
|
/* Check pre-conditions. */
|
|
|
|
AMS_ASSERT(util::IsAligned(size, MemoryHeapUnitSize));
|
|
|
|
|
|
|
|
/* Set the heap size. */
|
|
|
|
R_RETURN(impl::GetMemoryHeapManager().SetHeapSize(size));
|
|
|
|
}
|
|
|
|
|
|
|
|
uintptr_t GetMemoryHeapAddress() {
|
|
|
|
return impl::GetMemoryHeapManager().GetHeapAddress();
|
|
|
|
}
|
|
|
|
|
|
|
|
size_t GetMemoryHeapSize() {
|
|
|
|
return impl::GetMemoryHeapManager().GetHeapSize();
|
|
|
|
}
|
|
|
|
|
2020-03-29 21:43:16 +00:00
|
|
|
Result AllocateMemoryBlock(uintptr_t *out_address, size_t size) {
|
2022-06-11 05:35:57 +00:00
|
|
|
/* Check pre-conditions. */
|
|
|
|
AMS_ASSERT(size > 0);
|
|
|
|
AMS_ASSERT(util::IsAligned(size, MemoryBlockUnitSize));
|
|
|
|
|
|
|
|
/* Allocate from heap. */
|
|
|
|
R_RETURN(impl::GetMemoryHeapManager().AllocateFromHeap(out_address, size));
|
2020-03-29 21:43:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void FreeMemoryBlock(uintptr_t address, size_t size) {
|
2022-06-11 05:35:57 +00:00
|
|
|
/* Get memory heap manager. */
|
|
|
|
auto &manager = impl::GetMemoryHeapManager();
|
|
|
|
|
|
|
|
/* Check pre-conditions. */
|
|
|
|
AMS_ASSERT(util::IsAligned(address, MemoryBlockUnitSize));
|
|
|
|
AMS_ASSERT(size > 0);
|
|
|
|
AMS_ASSERT(util::IsAligned(size, MemoryBlockUnitSize));
|
|
|
|
AMS_ABORT_UNLESS(manager.IsRegionInMemoryHeap(address, size));
|
|
|
|
|
|
|
|
/* Release the memory block. */
|
|
|
|
manager.ReleaseToHeap(address, size);
|
2020-03-29 21:43:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|