mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
110 lines
3.8 KiB
C++
110 lines
3.8 KiB
C++
|
/*
|
||
|
* 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_typed_address.hpp>
|
||
|
#include <mesosphere/kern_slab_helpers.hpp>
|
||
|
|
||
|
namespace ams::kern {
|
||
|
|
||
|
class KBlockInfoManager;
|
||
|
|
||
|
class KBlockInfo : public util::IntrusiveListBaseNode<KBlockInfo> {
|
||
|
private:
|
||
|
KVirtualAddress address;
|
||
|
size_t num_pages;
|
||
|
public:
|
||
|
constexpr KBlockInfo() : address(), num_pages() { /* ... */ }
|
||
|
|
||
|
constexpr void Initialize(KVirtualAddress addr, size_t np) {
|
||
|
this->address = addr;
|
||
|
this->num_pages = np;
|
||
|
}
|
||
|
|
||
|
constexpr KVirtualAddress GetAddress() const { return this->address; }
|
||
|
constexpr size_t GetNumPages() const { return this->num_pages; }
|
||
|
constexpr size_t GetSize() const { return this->GetNumPages() * PageSize; }
|
||
|
constexpr KVirtualAddress GetEndAddress() const { return this->GetAddress() + this->GetSize(); }
|
||
|
|
||
|
constexpr bool IsEquivalentTo(const KBlockInfo &rhs) const {
|
||
|
return this->address == rhs.address && this->num_pages == rhs.num_pages;
|
||
|
}
|
||
|
|
||
|
constexpr bool operator==(const KBlockInfo &rhs) const {
|
||
|
return this->IsEquivalentTo(rhs);
|
||
|
}
|
||
|
|
||
|
constexpr bool operator!=(const KBlockInfo &rhs) const {
|
||
|
return !(*this == rhs);
|
||
|
}
|
||
|
|
||
|
constexpr bool IsStrictlyBefore(KVirtualAddress addr) const {
|
||
|
const KVirtualAddress end = this->GetEndAddress();
|
||
|
|
||
|
if (this->address != Null<KVirtualAddress> && end == Null<KVirtualAddress>) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return end < addr;
|
||
|
}
|
||
|
|
||
|
constexpr bool operator<(KVirtualAddress addr) const {
|
||
|
return this->IsStrictlyBefore(addr);
|
||
|
}
|
||
|
|
||
|
constexpr bool TryConcatenate(KVirtualAddress addr, size_t np) {
|
||
|
if (addr != Null<KVirtualAddress> && addr == this->GetEndAddress()) {
|
||
|
this->num_pages += np;
|
||
|
return true;
|
||
|
}
|
||
|
return false;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
class KPageGroup {
|
||
|
public:
|
||
|
using BlockInfoList = util::IntrusiveListBaseTraits<KBlockInfo>::ListType;
|
||
|
using iterator = BlockInfoList::const_iterator;
|
||
|
private:
|
||
|
BlockInfoList block_list;
|
||
|
KBlockInfoManager *manager;
|
||
|
public:
|
||
|
KPageGroup() : block_list(), manager() { /* ... */ }
|
||
|
|
||
|
void Initialize(KBlockInfoManager *m);
|
||
|
void Finalize();
|
||
|
|
||
|
iterator begin() const { return this->block_list.begin(); }
|
||
|
iterator end() const { return this->block_list.end(); }
|
||
|
|
||
|
Result AddBlock(KVirtualAddress addr, size_t num_pages);
|
||
|
void Open() const;
|
||
|
void Close() const;
|
||
|
|
||
|
size_t GetNumPages() const;
|
||
|
|
||
|
bool IsEquivalentTo(const KPageGroup &rhs) const;
|
||
|
|
||
|
bool operator==(const KPageGroup &rhs) const {
|
||
|
return this->IsEquivalentTo(rhs);
|
||
|
}
|
||
|
|
||
|
bool operator!=(const KPageGroup &rhs) const {
|
||
|
return !(*this == rhs);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|