mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 13:57:35 +00:00

Instead of PDE's and PTE's being weird wrappers around dword*, just have MemoryManager::ensure_pte() return a PageDirectoryEntry&, which in turn has a PageTableEntry* entries(). I've been trying to understand how things ended up this way, and I suspect it was because I inadvertently invoked the PageDirectoryEntry copy ctor in the original work on this, which must have made me very confused.. Anyways, now things are a bit saner and we can move forward towards a better future, etc. :^)
31 lines
1.1 KiB
C++
31 lines
1.1 KiB
C++
#pragma once
|
|
|
|
#include <AK/HashMap.h>
|
|
#include <AK/RefPtr.h>
|
|
#include <AK/RefCounted.h>
|
|
#include <Kernel/VM/PhysicalPage.h>
|
|
#include <Kernel/VM/RangeAllocator.h>
|
|
|
|
class PageDirectory : public RefCounted<PageDirectory> {
|
|
friend class MemoryManager;
|
|
|
|
public:
|
|
static NonnullRefPtr<PageDirectory> create_for_userspace(const RangeAllocator* parent_range_allocator = nullptr) { return adopt(*new PageDirectory(parent_range_allocator)); }
|
|
static NonnullRefPtr<PageDirectory> create_at_fixed_address(PhysicalAddress paddr) { return adopt(*new PageDirectory(paddr)); }
|
|
~PageDirectory();
|
|
|
|
dword cr3() const { return m_directory_page->paddr().get(); }
|
|
PageDirectoryEntry* entries() { return reinterpret_cast<PageDirectoryEntry*>(cr3()); }
|
|
|
|
void flush(VirtualAddress);
|
|
|
|
RangeAllocator& range_allocator() { return m_range_allocator; }
|
|
|
|
private:
|
|
explicit PageDirectory(const RangeAllocator* parent_range_allocator);
|
|
explicit PageDirectory(PhysicalAddress);
|
|
|
|
RangeAllocator m_range_allocator;
|
|
RefPtr<PhysicalPage> m_directory_page;
|
|
HashMap<unsigned, RefPtr<PhysicalPage>> m_physical_pages;
|
|
};
|