banan-os/kernel/arch/i386
Bananymous d9c05b7378 Kernel: rewrite the whole kmalloc (again)
Performance of the old kmalloc implementation was terrible.
We now use fixed-width linked list allocations for sizes <= 60 bytes.
This is much faster than variable size allocation.

We don't use bitmap scanning anymore since it was probably the slow
part. Instead we use headers that tell allocations size and aligment.

I removed the kmalloc_eternal, even though it was very fast, there is
not really any need for it, since the only place it was used in was IDT.

These changes allowed my psf (font) parsing to go from ~500 ms to ~20 ms.
(coming soon :D)
2023-02-22 16:32:50 +02:00
..
IDT.cpp Kernel: rewrite the whole kmalloc (again) 2023-02-22 16:32:50 +02:00
MMU.cpp All: rename every function from UpperCamelCase to snake_case 2023-02-01 21:05:44 +02:00
SpinLock.S Kernel: fix spinlock for i386 2023-02-02 15:49:00 +02:00
Thread.S Kernel: Sleep now actually sleeps and allows idling 2023-02-19 18:52:25 +02:00
boot.S Kernel: move GDT initialization to boot.S 2023-01-22 00:48:12 +02:00
crti.S Rename .s extensions to .S 2022-11-15 09:25:18 +02:00
crtn.S Rename .s extensions to .S 2022-11-15 09:25:18 +02:00
linker.ld Kernel: Multiboot data and kernel command lines are now global variables 2023-01-10 17:50:24 +02:00
make.config Kernel: Improve multithreading support 2023-02-02 23:24:12 +02:00