blob: cb5106121351aeebb80332ea76f4bd5e0a1a1064 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#pragma once
#include <AK/NonnullRefPtr.h>
#include <Kernel/Assertions.h>
#include <Kernel/VM/PhysicalAddress.h>
class PhysicalPage {
friend class MemoryManager;
friend class PageDirectory;
friend class VMObject;
public:
PhysicalAddress paddr() const { return m_paddr; }
void ref()
{
ASSERT(m_retain_count);
++m_retain_count;
}
void deref()
{
ASSERT(m_retain_count);
if (!--m_retain_count) {
if (m_may_return_to_freelist)
move(*this).return_to_freelist();
delete this;
}
}
static NonnullRefPtr<PhysicalPage> create(PhysicalAddress, bool supervisor, bool may_return_to_freelist = true);
u16 ref_count() const { return m_retain_count; }
private:
PhysicalPage(PhysicalAddress paddr, bool supervisor, bool may_return_to_freelist = true);
~PhysicalPage() {}
void return_to_freelist() &&;
u16 m_retain_count { 1 };
bool m_may_return_to_freelist { true };
bool m_supervisor { false };
PhysicalAddress m_paddr;
};
|