ladybird/Kernel/VM
Andreas Kling 9da62f52a1 Kernel: Use the Multiboot memory map info to inform our paging setup.
This makes it possible to run Serenity with more than 64 MB of RAM.
Because each physical page is represented by a PhysicalPage object, and such
objects are allocated using kmalloc_eternal(), more RAM means more pressure
on kmalloc_eternal(), so we're gonna need a better strategy for this.

But for now, let's just celebrate that we can use the 128 MB of RAM we've
been telling QEMU to run with. :^)
2019-06-09 11:48:58 +02:00
..
.gitignore Kernel: Move VM-related files into Kernel/VM/. 2019-04-03 15:13:07 +02:00
MemoryManager.cpp Kernel: Use the Multiboot memory map info to inform our paging setup. 2019-06-09 11:48:58 +02:00
MemoryManager.h Kernel: Use the Multiboot memory map info to inform our paging setup. 2019-06-09 11:48:58 +02:00
PageDirectory.cpp Kernel: Rename LinearAddress => VirtualAddress. 2019-06-07 12:56:50 +02:00
PageDirectory.h Kernel: Rename LinearAddress => VirtualAddress. 2019-06-07 12:56:50 +02:00
PhysicalPage.cpp Kernel: Run clang-format on everything. 2019-06-07 11:43:58 +02:00
PhysicalPage.h Add clang-format file 2019-05-28 17:31:20 +02:00
RangeAllocator.cpp Kernel: Rename LinearAddress => VirtualAddress. 2019-06-07 12:56:50 +02:00
RangeAllocator.h Kernel: Rename LinearAddress => VirtualAddress. 2019-06-07 12:56:50 +02:00
Region.cpp Kernel: Tweak some String&& => const String&. 2019-06-07 20:58:12 +02:00
Region.h Kernel: Tweak some String&& => const String&. 2019-06-07 20:58:12 +02:00
VMObject.cpp Kernel: Run clang-format on everything. 2019-06-07 11:43:58 +02:00
VMObject.h Kernel: Tweak some String&& => const String&. 2019-06-07 20:58:12 +02:00