summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Heap
AgeCommit message (Expand)Author
2021-06-23LibJS: Make EnvironmentRecord inherit directly from CellAndreas Kling
2021-06-13LibJS: Don't generate unused HeapBlock names on non-SerenityOS systemsAndreas Kling
2021-06-12LibJS: Generify the garbage collector's weak container notificationsIdan Horowitz
2021-06-09LibJS: Notify WeakSets when heap cells are sweepedIdan Horowitz
2021-06-06LibJS: Add dbgln() to Heap::allocator_for_size() before crashingLinus Groh
2021-05-29LibJS: Instrument HeapBlock cell allocation for ASANAndrew Kaster
2021-05-29LibJS: Expose minimum possible cell size of JS::HeapAndrew Kaster
2021-05-29LibJS: Remove unused HeapBlock private member functionAndrew Kaster
2021-05-28LibJS: Poison unused heap blocks until they are re-allocatedAndrew Kaster
2021-05-28LibJS: Add inline capacity to BlockAllocator's blocks VectorIdan Horowitz
2021-05-27LibJS: Update mmap name after recycling a HeapBlock :^)Andreas Kling
2021-05-27LibJS: Make sure aligned_alloc() doesn't return a null pointerGunnar Beutner
2021-05-27LibJS: Remove unused HeapBlock::operator delete()Andreas Kling
2021-05-27LibJS: Make BlockAllocator use free() on non-Serenity platformsAndreas Kling
2021-05-27LibJS: Rename Allocator => CellAllocatorAndreas Kling
2021-05-27LibJS: Recycle up to 64 HeapBlocks to improve performance :^)Andreas Kling
2021-05-25LibJS: Fix broken dbgln_if(HEAP_DEBUG)Andreas Kling
2021-05-25LibJS: Fix clang-tidy warnings about redundant types in Heap.cppAndreas Kling
2021-05-25LibJS: Make Value::as_cell() return a Cell&Andreas Kling
2021-05-25LibJS: Make Cell::Visitor::visit_impl() take a Cell&Andreas Kling
2021-05-25LibJS: Replace Cell live bit with a cell stateAndreas Kling
2021-05-25LibJS: Inline Cell::Visitor::visit() functionsAndreas Kling
2021-05-17LibJS: Don't consider cells in the lazy freelist in conservative scanAndreas Kling
2021-05-17LibJS: Always prefer freelist over lazy freelist if possibleAndreas Kling
2021-05-17LibJS: Move Cell.{cpp,h} from Runtime/ to Heap/Andreas Kling
2021-05-17LibJS: Implement lazy freelist allocation for cellsAndreas Kling
2021-05-14LibJS: Make sure all allocators are 8-byte alignedAndrew Kaster
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-18LibJS: Use 'if constexpr' instead of '#if HEAP_DEBUG'Linus Groh
2021-04-16AK+Kernel: Make IntrusiveList capable of holding non-raw pointersAnotherTest
2021-04-10AK+Everywhere: Make StdLibExtras templates less wrapper-yAnotherTest
2021-04-08LibJS: Use dbgln_if in Heap.cppHendiadyoin1
2021-03-28LibJS: Fix m_allocations_since_last_gc initialization valueLinus Groh
2021-03-21LibJS: Always inline Cell::vm() and Cell::heap()Andreas Kling
2021-03-11Userland: Remove superfluous headersBen Wiederhake
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-13LibJS: Add some basic freelist validation for the GC heapAndreas Kling
2021-02-12LibJS: Randomize GC heap block locationsAndreas Kling
2021-01-25Everywhere: Hook up remaining debug macros to Debug.h.asynts
2021-01-25Everywhere: Remove unnecessary debug comments.asynts
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling