]> git.llucax.com Git - personal/website.git/blob - source/blog/posts/2009/04/naive-garbage-collector.rst
Add some missing posts
[personal/website.git] / source / blog / posts / 2009 / 04 / naive-garbage-collector.rst
1 Title: Naive Garbage Collector
2 Tags: en, d, dgc, tango, gc, naive, mark-sweep, howto
3
4 I was working in a naive garbage collector implementation for D, as a way to
5 document the process of writing a GC for D.
6
7 From the Naive Garbage Collector documentation:
8
9     The idea behind this implementation is to document all the bookkeeping and
10     considerations that has to be taken in order to implement a garbage
11     collector for D.
12
13     The garbage collector algorithm itself is extremely simple so focus can be
14     held in the specifics of D, and not the algorithm. A completely naive mark
15     and sweep algorithm is used, with a recursive mark phase.  The code is
16     extremely inefficient in order to keep the code clean and easy to read and
17     understand.
18
19 Performance is, as expected, **horrible**, **horrible**, **horrible** (2 orders
20 of magnitude slower than the *basic* GC for the simple `Tango GC Benchmark`__)
21 but I think it's pretty good as documentation =)
22
23 __ http://www.dsource.org/projects/tango/wiki/GCBenchmark
24
25 I have `submitted the implementation`__ to Tango__ in the hope that it gets
26 accepted. A git__ repository__ is up too.
27
28 __ http://www.dsource.org/projects/tango/ticket/1620
29 __ http://www.dsource.org/projects/tango/
30 __ https://git.llucax.com/git-logo.png
31 __ https://git.llucax.com/w/software/dgc/naive.git
32
33 If you want to try it out with LDC__, you have to put the files into the
34 ``naive`` directory in ``tango/lib/gc`` and edit the file
35 ``runtime/CMakeLists.txt`` and search/replace "basic" for "naive". Then you
36 have to search for the line::
37
38     file(GLOB GC_D ${RUNTIME_GC_DIR}/*.d)
39
40 And replace it with::
41
42     file(GLOB GC_D ${RUNTIME_GC_DIR}/gc/*.d)
43
44 __ http://www.dsource.org/projects/ldc
45
46 Comments and reviews are welcome, and please let me know if you try it =)
47
48 .. vim: set et sw=4 sts=4 :