summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Heap/Heap.cpp
AgeCommit message (Expand)Author
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-16Libraries: Use default constructors/destructors in LibJSLenny Maiorani
2022-02-09LibJS: Remove MarkedValueList in favor of MarkedVector<Value> :^)Linus Groh
2022-02-09LibJS: Let MarkedVector<T> inherit from Vector and handle Cell* + ValueLinus Groh
2022-02-05LibJS: Remove the JS_TRACK_ZOMBIE_CELLS optiondavidot
2022-01-31LibJS: Add a 96-byte CellAllocatorAndreas Kling
2021-12-16LibJS: Add MarkedVector<T>Andreas Kling
2021-12-11Everywhere: Fix -Winconsistent-missing-override warnings from ClangDaniel Bertalan
2021-10-08LibJS: Prune WeakContainers before freeing HeapBlocksAndreas 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-09-12LibJS: Use ElapsedTimer::start_new();Brian Gianforcaro
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-08test-js: Add a mark_as_garbage method to force GC to collect that objectdavidot
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-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-06-27LibJS: Fix typo "sweeped" => "swept" everywhereAndreas 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: Expose minimum possible cell size of JS::HeapAndrew Kaster
2021-05-27LibJS: Rename Allocator => CellAllocatorAndreas 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-14LibJS: Make sure all allocators are 8-byte alignedAndrew Kaster
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-08LibJS: Use dbgln_if in Heap.cppHendiadyoin1
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas 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