index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Userland
/
Libraries
/
LibJS
/
Heap
/
Heap.cpp
Age
Commit message (
Expand
)
Author
2022-04-01
Everywhere: Run clang-format
Idan Horowitz
2022-03-16
Libraries: Use default constructors/destructors in LibJS
Lenny Maiorani
2022-02-09
LibJS: Remove MarkedValueList in favor of MarkedVector<Value> :^)
Linus Groh
2022-02-09
LibJS: Let MarkedVector<T> inherit from Vector and handle Cell* + Value
Linus Groh
2022-02-05
LibJS: Remove the JS_TRACK_ZOMBIE_CELLS option
davidot
2022-01-31
LibJS: Add a 96-byte CellAllocator
Andreas Kling
2021-12-16
LibJS: Add MarkedVector<T>
Andreas Kling
2021-12-11
Everywhere: Fix -Winconsistent-missing-override warnings from Clang
Daniel Bertalan
2021-10-08
LibJS: Prune WeakContainers before freeing HeapBlocks
Andreas Kling
2021-10-05
LibJS: Make WeakContainer pruning do less work
Andreas Kling
2021-10-02
LibJS: Put zombie cell tracking code behind a compile-time flag
Andreas Kling
2021-10-02
LibJS: Keep track of PrimitiveStrings and share them
Andreas Kling
2021-09-12
LibJS: Use ElapsedTimer::start_new();
Brian Gianforcaro
2021-09-11
LibJS+js+test-js: Add GC debug mode that keeps cells "alive" as zombies
Andreas Kling
2021-09-11
LibJS: Tweak the WeakContainer::remove_swept_cells() API a little bit
Andreas Kling
2021-09-08
test-js: Add a mark_as_garbage method to force GC to collect that object
davidot
2021-08-12
Kernel: Make sys$perf_register_string() generate the string ID's
Andreas Kling
2021-08-12
LibJS: Emit a profile signpost when starting a garbage collection
Andreas Kling
2021-07-21
LibJS: Use IntrusiveList for keeping track of WeakContainers
Andreas Kling
2021-07-21
LibJS: Use IntrusiveList for keeping track of MarkedValueLists
Andreas Kling
2021-07-21
LibJS: Use IntrusiveList for keeping track of HandleImpls
Andreas Kling
2021-06-27
LibJS: Fix typo "sweeped" => "swept" everywhere
Andreas Kling
2021-06-12
LibJS: Generify the garbage collector's weak container notifications
Idan Horowitz
2021-06-09
LibJS: Notify WeakSets when heap cells are sweeped
Idan Horowitz
2021-06-06
LibJS: Add dbgln() to Heap::allocator_for_size() before crashing
Linus Groh
2021-05-29
LibJS: Expose minimum possible cell size of JS::Heap
Andrew Kaster
2021-05-27
LibJS: Rename Allocator => CellAllocator
Andreas Kling
2021-05-25
LibJS: Fix broken dbgln_if(HEAP_DEBUG)
Andreas Kling
2021-05-25
LibJS: Fix clang-tidy warnings about redundant types in Heap.cpp
Andreas Kling
2021-05-25
LibJS: Make Value::as_cell() return a Cell&
Andreas Kling
2021-05-25
LibJS: Make Cell::Visitor::visit_impl() take a Cell&
Andreas Kling
2021-05-25
LibJS: Replace Cell live bit with a cell state
Andreas Kling
2021-05-14
LibJS: Make sure all allocators are 8-byte aligned
Andrew Kaster
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-04-18
LibJS: Use 'if constexpr' instead of '#if HEAP_DEBUG'
Linus Groh
2021-04-08
LibJS: Use dbgln_if in Heap.cpp
Hendiadyoin1
2021-02-23
Everywhere: Rename ASSERT => VERIFY
Andreas Kling
2021-01-25
Everywhere: Hook up remaining debug macros to Debug.h.
asynts
2021-01-25
Everywhere: Remove unnecessary debug comments.
asynts
2021-01-12
Libraries: Move to Userland/Libraries/
Andreas Kling