2020-03-30 00:20:25 +00:00
|
|
|
/*
|
2021-10-04 19:59:10 +00:00
|
|
|
* Copyright (c) Atmosphère-NX
|
2020-03-30 00:20:25 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <stratosphere/sf/sf_common.hpp>
|
|
|
|
#include <stratosphere/mem.hpp>
|
|
|
|
|
|
|
|
namespace ams::sf {
|
|
|
|
|
|
|
|
class StandardAllocatorMemoryResource : public MemoryResource {
|
|
|
|
private:
|
2021-10-10 07:14:06 +00:00
|
|
|
mem::StandardAllocator *m_standard_allocator;
|
2020-03-30 00:20:25 +00:00
|
|
|
public:
|
2021-10-10 07:14:06 +00:00
|
|
|
explicit StandardAllocatorMemoryResource(mem::StandardAllocator *sa) : m_standard_allocator(sa) { /* ... */ }
|
2020-03-30 00:20:25 +00:00
|
|
|
|
2021-10-10 07:14:06 +00:00
|
|
|
mem::StandardAllocator *GetAllocator() const { return m_standard_allocator; }
|
2020-03-30 00:20:25 +00:00
|
|
|
private:
|
|
|
|
virtual void *AllocateImpl(size_t size, size_t alignment) override {
|
2021-10-10 07:14:06 +00:00
|
|
|
return m_standard_allocator->Allocate(size, alignment);
|
2020-03-30 00:20:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual void DeallocateImpl(void *buffer, size_t size, size_t alignment) override {
|
2021-10-07 00:58:42 +00:00
|
|
|
AMS_UNUSED(size, alignment);
|
2021-10-10 07:14:06 +00:00
|
|
|
return m_standard_allocator->Free(buffer);
|
2020-03-30 00:20:25 +00:00
|
|
|
}
|
|
|
|
|
2021-11-07 01:19:34 +00:00
|
|
|
virtual bool IsEqualImpl(const MemoryResource &resource) const override {
|
2020-03-30 00:20:25 +00:00
|
|
|
return this == std::addressof(resource);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-11-07 01:19:34 +00:00
|
|
|
}
|