summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Heap
AgeCommit message (Expand)Author
2021-12-11Everywhere: Fix -Winconsistent-missing-override warnings from ClangDaniel Bertalan
2021-12-09LibJS: Add Handle::operator->()Andreas Kling
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-10-08LibJS: Prune WeakContainers before freeing HeapBlocksAndreas Kling
2021-10-08LibJS: Make BlockAllocator cache reuse blocks in random orderAndreas Kling
2021-10-08LibJS: Increase GC heap BlockAllocator cache sizeAndreas Kling
2021-10-05LibJS: Make WeakContainer pruning do less workAndreas Kling
2021-10-02LibJS: Put zombie cell tracking code behind a compile-time flagAndreas Kling
2021-10-02LibJS: Keep track of PrimitiveStrings and share themAndreas Kling
2021-10-01LibJS: Remove transition avoidance & start caching prototype transitionsAndreas Kling
2021-09-17LibJS: Increase time between garbage collectionsAndreas Kling
2021-09-16LibJS: Use default instead of an empty constructor/destructorBrian Gianforcaro
2021-09-12LibJS: Use ElapsedTimer::start_new();Brian Gianforcaro
2021-09-11LibJS: Fix ASAN poisoning range in new HeapBlocksAndreas Kling
2021-09-11LibJS+js+test-js: Add GC debug mode that keeps cells "alive" as zombiesAndreas Kling
2021-09-11LibJS: Tweak the WeakContainer::remove_swept_cells() API a little bitAndreas Kling
2021-09-10AK+Everywhere: Reduce the number of template parameters of IntrusiveListAli Mohammad Pur
2021-09-08test-js: Add a mark_as_garbage method to force GC to collect that objectdavidot
2021-09-05LibJS: Declare type aliases with "using" instead of "typedef"Brian Gianforcaro
2021-08-28LibJS: Avoid pointless transitions and metadata lookups in storage_set()Linus Groh
2021-08-12Kernel: Make sys$perf_register_string() generate the string ID'sAndreas Kling
2021-08-12LibJS: Emit a profile signpost when starting a garbage collectionAndreas Kling
2021-08-01LibJS: Remove unused header includesBrian Gianforcaro
2021-08-01LibJS: Remove unused includes out of Cell.h, move to the usersBrian Gianforcaro
2021-07-21LibJS: Use IntrusiveList for keeping track of WeakContainersAndreas Kling
2021-07-21LibJS: Use IntrusiveList for keeping track of MarkedValueListsAndreas Kling
2021-07-21LibJS: Use IntrusiveList for keeping track of HandleImplsAndreas Kling
2021-07-01LibJS: Drop "Record" suffix from all the *Environment record classesAndreas Kling
2021-06-27LibJS: Fix typo "sweeped" => "swept" everywhereAndreas Kling
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