1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00
Mirror of the upstream GNU Guile repository on Savannah. https://www.gnu.org/software/guile/
Find a file
2024-08-05 14:41:04 +02:00
api Add gc_finalizer_priority_count to gc-embedder-api.h 2024-08-05 11:56:46 +02:00
benchmarks Add benchmark for finalizers 2024-07-24 09:51:56 +02:00
doc Add serial copying collector 2024-08-05 14:41:04 +02:00
src Add serial copying collector 2024-08-05 14:41:04 +02:00
test Reorganize source tree and document 2023-08-06 12:04:33 +02:00
.gitignore Put deps in subdir 2023-08-07 10:55:30 +02:00
embed.mk Add serial copying collector 2024-08-05 14:41:04 +02:00
Makefile Add serial copying collector 2024-08-05 14:41:04 +02:00
manifest.scm Add Guix manifest.scm 2024-07-03 10:38:55 +02:00
README.md Rework docs 2024-07-27 22:26:24 +02:00

Whippet Garbage Collector

This repository is for development of Whippet, a new garbage collector implementation, eventually for use in Guile Scheme.

Whippet is an embed-only C library, designed to be copied into a program's source tree. It exposes an abstract C API for managed memory allocation, and provides a number of implementations of that API.

Documentation

See the documentation.

Source repository structure

  • api/: The user-facing API. Also, the "embedder API"; see the manual for more.
  • doc/: Documentation, such as it is.
  • src/: The actual GC implementation. The specific implementations of the Whippet API are semi.c, a semi-space collector; bdw.c, the third-party BDW-GC conservative parallel stop-the-world mark-sweep segregated-fits collector with lazy sweeping; and whippet.c, the whippet collector.
  • benchmarks/: Benchmarks. A work in progress.
  • test/: A dusty attic of minimal testing.

To do

Missing features before Guile can use Whippet

  • Pinning
  • Conservative stacks
  • Conservative data segments
  • Heap growth/shrinking
  • Debugging/tracing
  • Finalizers
  • Weak references / weak maps

Features that would improve Whippet performance

  • Immix-style opportunistic evacuation
  • [ ] Overflow allocation (should just evacuate instead)
  • Generational GC via sticky mark bits
  • Generational GC with semi-space nursery
  • Concurrent marking with SATB barrier

About the name

It sounds better than WIP (work-in-progress) garbage collector, doesn't it? Also apparently a whippet is a kind of dog that is fast for its size. It would be nice if whippet-gc turns out to have this property.

License

Copyright (c) 2022-2023 Andy Wingo

Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that some benchmarks have other licenses; see benchmarks/README.md for more.