1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

Kernel: Move {Virtual,Physical}Address classes to the Memory directory

This commit is contained in:
Liav A 2023-02-24 19:54:30 +02:00 committed by Jelle Raaijmakers
parent 64af4953c2
commit aaa1de7878
54 changed files with 61 additions and 59 deletions

View file

@ -10,7 +10,7 @@
#include <AK/Types.h>
#include <Kernel/Arch/RegisterState.h>
#include <Kernel/ExecutionMode.h>
#include <Kernel/VirtualAddress.h>
#include <Kernel/Memory/VirtualAddress.h>
namespace Kernel {

View file

@ -15,8 +15,8 @@
#include <AK/Types.h>
#include <Kernel/Forward.h>
#include <Kernel/Locking/Spinlock.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalPage.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel::Memory {

View file

@ -16,7 +16,7 @@
#include <Kernel/Arch/ProcessorSpecificDataID.h>
#include <Kernel/Arch/aarch64/CPUID.h>
#include <Kernel/Arch/aarch64/Registers.h>
#include <Kernel/VirtualAddress.h>
#include <Kernel/Memory/VirtualAddress.h>
namespace Kernel {

View file

@ -7,7 +7,7 @@
#pragma once
#include <AK/Types.h>
#include <Kernel/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Sections.h>
namespace Kernel::RPi {

View file

@ -8,7 +8,7 @@
#pragma once
#include <AK/Types.h>
#include <Kernel/VirtualAddress.h>
#include <Kernel/Memory/VirtualAddress.h>
#include <AK/Platform.h>
VALIDATE_IS_X86()

View file

@ -15,8 +15,8 @@
#include <Kernel/Forward.h>
#include <Kernel/Locking/LockRank.h>
#include <Kernel/Locking/Spinlock.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Memory/PhysicalPage.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel::Memory {

View file

@ -9,8 +9,8 @@
#include <AK/OwnPtr.h>
#include <AK/Types.h>
#include <AK/Vector.h>
#include <Kernel/Memory/PhysicalAddress.h>
#include <Kernel/Memory/Region.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel {