summaryrefslogtreecommitdiff
path: root/Kernel/Heap
AgeCommit message (Expand)Author
2021-07-16Kernel+AK: Generate compile-time error for non-sized `delete`Daniel Bertalan
2021-07-16Kernel: Implement aligned `operator new` and use itDaniel Bertalan
2021-07-14Kernel: Allow passing null pointer to deleteDaniel Bertalan
2021-07-11Kernel: Remove unused header includes in Heap subtreeBrian Gianforcaro
2021-07-11Kernel: Remove krealloc()Andreas Kling
2021-07-11Kernel: VERIFY_NOT_REACHED in un-sized operator deleteAndreas Kling
2021-07-11Kernel: Add kfree_sized(), kfree() with a known allocation sizeAndreas Kling
2021-07-03Everywhere: Fix some alignment issuesDaniel Bertalan
2021-07-01Kernel: Only deallocate memory when alloc succeedsHendiadyoin1
2021-06-28Kernel: Add a sanity check for CHUNK_SIZEGunnar Beutner
2021-06-28Kernel: Increase kmalloc eternal heap to 3MiBGunnar Beutner
2021-06-26Kernel: Make addresses returned by kmalloc() properly aligned for x86_64Gunnar Beutner
2021-06-26Kernel: Add slab allocator for 256 bytesGunnar Beutner
2021-06-24AK+Kernel: Make fallible allocations compiler-agnosticDaniel Bertalan
2021-06-24Kernel: Move special sections into Sections.hHendiadyoin1
2021-06-24Kernel: Remove PAGE_SIZE from CPU.hHendiadyoin1
2021-06-16Kernel: Remove various other uses of ssize_tGunnar Beutner
2021-05-30Kernel: Don't log profile data before/after the process/thread lifetimeGunnar Beutner
2021-05-29Kernel: Don't overrun the buffer in krealloc()Gunnar Beutner
2021-05-19Kernel: Add support for profiling kmalloc()/kfree()Gunnar Beutner
2021-05-18BitmapView: Disable mutations of the underlying BitmapLenny Maiorani
2021-05-17Revert "BitmapView: Disable mutations of the underlying Bitmap"Andreas Kling
2021-05-17BitmapView: Disable mutations of the underlying BitmapLenny Maiorani
2021-05-15AK+LibC: Implement malloc_good_size() and use it for Vector/HashTableGunnar Beutner
2021-05-14Kernel: Add the ability to verify we don't kmalloc under spinlock.Brian Gianforcaro
2021-05-13Kernel: Declare operator new/delete noexcept for MAKE_SLAB_ALLOCATEDBrian Gianforcaro
2021-05-13Kernel: Declare operator new/delete noexcept for MAKE_ALIGNED_ALLOCATEDBrian Gianforcaro
2021-05-13Kernel: Declare operator new/delete as noexcept for the KernelBrian Gianforcaro
2021-04-29Everywhere: Use "the SerenityOS developers." in copyright headersLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-09Kernel: Do some basic metadata integrity verification in kmalloc/kfreeAndreas Kling
2021-04-09Kernel: Add some basic double-kfree() detectionAndreas Kling
2021-03-21Kernel::CPU: Move headers into common directoryHendiadyoin1
2021-03-11Kernel: Suppress logging during kmalloc heap expansionAndreas Kling
2021-03-11Kernel: Add MAKE_ALIGNED_ALLOCATED helper macroAndreas Kling
2021-03-11Kernel: Allow kmalloc_aligned() alignment up to 4096Andreas Kling
2021-03-09Kernel: Remove some unused things in kmalloc.cppAndreas Kling
2021-03-09Kernel: Convert klog() => dmesgln() in kmallocAndreas Kling
2021-03-04Kernel: Remove unused KMALLOC_DEBUG_LARGE_ALLOCATIONS modeAndreas Kling
2021-03-04Kernel: Use BitmapView instead of Bitmap::wrap()Andreas Kling
2021-02-28Kernel: Use default con/de-structorsBen Wiederhake
2021-02-25Kernel: Take some baby steps towards x86_64Andreas Kling
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-23Kernel: Fix a dmesgln() format errorAnotherTest
2021-02-19Kernel: Slap UNMAP_AFTER_INIT on a whole bunch of functionsAndreas Kling
2021-02-14Kernel: Mark a handful of things in kmalloc.cpp as READONLY_AFTER_INITAndreas Kling
2021-02-14Kernel: Assert if rounding-up-to-page-size would wrap around to 0Andreas Kling
2021-02-14Kernel: Use PANIC() in a bunch of places :^)Andreas Kling
2021-02-14Kernel: Remove user/kernel flags from RegionAndreas Kling
2021-01-26Meta: Split debug defines into multiple headers.asynts