summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Heap/Heap.h
AgeCommit message (Expand)Author
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling
2020-11-10LibJS: Use a HashTable to identify potential cell pointers in GC scanAndreas Kling
2020-10-06LibJS: Split Heap into per-cell-size allocatorsAndreas Kling
2020-10-05LibJS: Prevent object shape transitions during runtime object buildupAndreas Kling
2020-10-04LibJS: Remove unused Heap::interpreter()Andreas Kling
2020-09-21LibJS: Assert if garbage collection is restarted while ongoingAndreas Kling
2020-09-20LibJS+Clients: Add JS::VM object, separate Heap from InterpreterAndreas Kling
2020-08-16LibJS: Add API for doing GC with a little debug log report at endAndreas Kling
2020-07-23LibJS: Simplify Cell::initialize()Andreas Kling
2020-06-20LibJS: Move native objects towards two-pass constructionAndreas Kling
2020-04-19LibJS: Add MarkedValueList and use it for argument passingAndreas Kling
2020-04-19LibJS: Add DeferGC, a RAII way to prevent GC temporarilyAndreas Kling
2020-04-06LibJS: Do a garbage collection every N allocations (N=10'000)Andreas Kling
2020-03-23LibJS: Always collect all garbage when destroying HeapAndreas Kling
2020-03-18LibJS: Add Handle<T>, a strong C++ handle for keeping GC objects aliveAndreas Kling
2020-03-16LibJS+js: Add a debug option (js -g) to GC after every allocationAndreas Kling
2020-03-16LibJS: Implement basic conservative garbage collectionAndreas Kling
2020-03-16LibJS: Add "Heap" and "Runtime" subdirectoriesAndreas Kling