9 comments

  • piinbinary1 hour ago
    I have this book and like it.<p>I also wish there was a book that guided you through the process of implementing a language with accurate garbage collection, similar to how Crafting Interpreters teaches you to implement a language. Perhaps it could start with a shadow stack + simple mark-and-sweep and then move on to stack maps + generational GC.
  • pdevr11 hours ago
    I had the 2012 print edition. One of the best books available - the best book that I knew - about GC at that time.<p>Anti-pattern: Regarding the 2023 e-book edition, I do not see a way to buy it from the site, or even a link to buy.
    • Jtsummers11 hours ago
      I thought I was missing something but figured they just didn&#x27;t have a link to purchase it. I ended up going to the publisher&#x27;s site to track it down:<p><a href="https:&#x2F;&#x2F;www.routledge.com&#x2F;The-Garbage-Collection-Handbook-The-Art-of-Automatic-Memory-Management&#x2F;Jones-Hosking-Moss&#x2F;p&#x2F;book&#x2F;9781032231785" rel="nofollow">https:&#x2F;&#x2F;www.routledge.com&#x2F;The-Garbage-Collection-Handbook-Th...</a>
      • LandR4 hours ago
        How on earth is the ebook more expensive than the physical copy!
        • LtdJorge23 minutes ago
          And it&#x27;s not an actual ebook. You have to create an account on the &quot;ebook&quot; provider&#x27;s site and read it through their website or app.
        • PaulRobinson3 hours ago
          The physical copy will only get used by one reader (at a time). The ebook is going to be, err, &quot;liberated&quot; more often than not around a dorm?<p>In all seriousness, this is likely a nudge to a preference they have for how they want to sell this and how you should want to buy it.
          • LtdJorge25 minutes ago
            They advertise the ebook as having interactive features and more compared to the print version. Shouldn&#x27;t it be the preferred one?
    • toolslive5 hours ago
      I have the 2012 print edition too and fully concur with the assessment. The best book about garbage collection at the time (and maybe still?)
  • orionblastar14 hours ago
    I remember reading it before. My son threw it away when we moved houses, not knowing how important it was. I&#x27;d recommend it.
    • tikhonj13 hours ago
      Ironic that this of all books got garbage collected prematurely.
    • travisgriggs13 hours ago
      Q: what kind of collection is this real world example illustrating?<p>A: Copying Garbage Collector (semi space). Chapter 4!<p>Great book. I was always fascinated by bakers treadmill. Always wanted a real world case where I could implement one with Fibonacci sized mills.
    • z0ltan6 hours ago
      [dead]
  • ChrisArchitect10 hours ago
    Previously:<p>Dec 2025 <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46357870">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=46357870</a><p>Apr 2023 <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=35492307">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=35492307</a>
  • kevinten1011 hours ago
    [dead]
  • rayiner12 hours ago
    How good are AIs at coding manual memory management? Is this a sea change in automatic memory management?
    • adrian_b6 hours ago
      In my opinion, the &quot;manual&quot; memory management, introduced by the IBM PL&#x2F;I programming language by the end of 1964, and inherited by C and other languages, i.e. where the programmer is responsible for invoking &quot;free&quot;, was a serious mistake and it was an obsolete technique already at the date of its introduction.<p>When the explicit &quot;free&quot; was invented, automatic memory reclamation while avoiding the non-determinism of garbage collectors had already been known for 4 years, since 1960, when another IBM employee had invented reference counting (as a reaction to the garbage collector of LISP I).<p>When implemented naively, reference counting has some disadvantages, but those can be circumvented relatively easily in an optimized implementation. The book discussed in the parent article also has a chapter about reference counting.<p>I have written C programs for many decades, but I have never invoked &quot;free&quot; directly, because I have always used reference counts. I have never encountered a circumstance when I would have wanted to invoke &quot;free&quot; directly.<p>C has the disadvantage that the compiler will not do implicitly things like virtual function invocation, reference counts handling etc. but any such techniques that are provided by higher-level languages can still be used in a language like C, even if they require more boilerplate code.<p>I do not like the &quot;shared_ptr&quot; implementation of reference counting in C++, because that data type is not directly usable in places where a plain reference or pointer is expected. Implementations that do not have this problem exist.
      • dcuthbertson16 minutes ago
        I too have written C programs for decades. I encountered reference counting when I learned how to write Windows kernel drivers. It was very liberating to see that there were so fewer opportunities for memory leaks when reference counts were applied liberally.
    • mtklein11 hours ago
      I have never seen Codex or Claude get manual memory management wrong. I used to be pretty fastidious about using leak sanitizer or other such tools to catch my own memory management issues, and while not quite useless, that sort of testing has dropped way down my list of worries the more I lean on LLMs. I am constantly surprised by how many formerly tedious or error prone tasks stopped being either of those, and I expect to see practice shift away from middle-safe languages like C++ to not just much more safe languages like Rust but surprisingly also to much less safe ones like C and platform specific assembly.
      • gf0007 hours ago
        The hard part was never getting it correct on a local scope, that&#x27;s mostly solved by a linter, or even C++&#x27;s RAII will get it right.<p>The hard part is doing it correctly on a global scope with non-trivial lifetimes, possibly influenced by multiple threads.<p>And in my experience LLMs are still hit or miss on these kind of problems, they can find problems from time to time, but they can&#x27;t really reason well about more complex global state reliably. They will come up with &quot;hypotheses&quot; that &#x27;oh sure this is the root cause of the issue&#x27; only to say something completely wrong (which you may notice or not, only to fail later)
    • a-french-anon6 hours ago
      GC&#x27;s strength is not only in the ease of writing but at also reading, since you don&#x27;t need to interleave allocation and business logic everywhere (be it through types or imperative code).<p>GC simply is the only way to approach the clarity of pseudo-code in real code. That&#x27;s one of my later realizations concerning the subject (<a href="https:&#x2F;&#x2F;world-playground-deceit.net&#x2F;blog&#x2F;2024&#x2F;11&#x2F;how-i-learned-to-stop-worrying-and-love-gc.html" rel="nofollow">https:&#x2F;&#x2F;world-playground-deceit.net&#x2F;blog&#x2F;2024&#x2F;11&#x2F;how-i-learn...</a>)
      • adrian_b5 hours ago
        You mean &quot;interleave <i>deallocation</i> and business logic everywhere&quot;.<p>For <i>allocation</i> there is no difference between automatic memory management with garbage collectors or reference counts and manual memory management, where the programmer is responsible for invoking &quot;free&quot;.<p>These alternative memory management methods differ only in how <i>deallocation</i> is handled.<p>Allocation must always be done by defining a new object, regardless of how memory is managed. Moreover, allocation also does not depend on whether an object is allocated in static storage, in a stack or in a heap. You always must define the object, so that memory should be allocated for it at compile-time if in static storage, or at run-time if in a stack or in a heap.
        • a-french-anon5 hours ago
          Well, it&#x27;s true that most of the noise comes from deallocation but I did mention types for good reasons: having your code littered with std::shared_ptr (or worse for Rust where encoding lifetime goes much further than Rc&#x2F;Arc) is a direct consequence of wanting GC without a global one.<p>The source of my second revelation: GC should be opt-out (e.g. SBCL&#x27;s arena system) instead of opt-in via refcounted types.
          • adrian_b2 hours ago
            While C and C++ have ugly syntaxes for &quot;malloc&quot;, &quot;std::shared_ptr&quot; and the like, it is quite easy to mask that ugliness by using macros and writing thus only cleanly-looking programs, without any noise words and symbols around dynamic allocations.<p>In general, by using macros it is possible to transform so much a C or C++ program, that it becomes unrecognizable as C&#x2F;C++ and it can mimic reasonably well any other programming language that you might fancy.<p>The problem is when you work in a team, because even if everyone will agree that such programming languages have great deficiencies, it would be impossible to reach a consensus about how the ideal programming language should look like, so eventually the team remains stuck with writing programs in the ugly standard manner.
  • hamstergene11 hours ago
    What I didn’t like about this series of books was choosing “garbage collection” as umbrella term for both tracing GC and reference counting, without verifying if programming community would agree with that, which turned out they didn’t.<p>I’ve seen a lot of threads here and on reddit where people were arguing about terminology purely because of this book alone.<p>By that definition, C++ code has garbage collection if it uses std::shared_ptr, going against widespread common usage of the term “garbage collected programming language” which specifically contrasts manual languages like C++ or Rust against garbage collected ones.<p>“Automatic Memory Management” is a lot more suitable description to what programmers have to do to manage memory; it is now in the title but still hasn’t become the primary term.
    • pron11 hours ago
      &gt; What I didn’t like about this series of books was choosing “garbage collection” as umbrella term for both tracing GC and reference counting, without verifying if programming community would agree with that, which turned out they didn’t.<p>This has been the standard terminology in memory management research for many decades. The only programmers who don&#x27;t like it are those who don&#x27;t understand the principles of memory management.<p>&gt; By that definition, C++ code has garbage collection if it uses std::shared_ptr<p>That&#x27;s right.<p>&gt; going against widespread common usage of the term “garbage collected programming language” which specifically contrasts manual languages like C++ or Rust against garbage collected ones.<p>Since this contrast mostly exists in the minds of people who don&#x27;t understand memory management, going against this common misconception is good. That&#x27;s not to say that there aren&#x27;t some interesting tradeoffs that often align with the colloquial perception, &quot;garbage collection&quot; isn&#x27;t the interesting part. As you said, both C++ and Rust use GC; in fact, they use a GC somewhat similar to the one used by CPython.
      • gdwatson9 hours ago
        This reminds me a bit of the way academics in programming language theory internalized the type-theoretic definition of the word “type” over and against the traditional programming definition. You sometimes see people who try to correct the term “dynamically typed language,” which makes perfect sense when types are data types, to “untyped” or “unityped,” which makes sense when types are mathematical constructs equivalent to proofs.<p>The colloquial term is clear in context, and it draws its boundaries in useful places. If academia prefers other boundaries to simplify its formal definitions, that’s understandable. But the rest of us shouldn’t restrict our language in that way.
        • pron2 hours ago
          It&#x27;s not about restricting the language. It&#x27;s that practising programmers often don&#x27;t know a subject well enough, so they use different words to make distinctions that don&#x27;t matter as much as they think (see &quot;transpile&quot;). &quot;Dynamically typed&quot; is actually not that big of an offence (because the distinction is real, it&#x27;s just that the terminology is a bit muddled), and the people in PL theory who are bothered by this (most notably one person) are considered pedants even among their colleagues.<p>E.g. many practising programmers don&#x27;t know that tracing moving collectors are used to avoid some of the high overheads associated with memory allocators (malloc&#x2F;free), which are themselves big and complex beasts that make up substantial &quot;runtimes&quot; (another misused and misleading word).
        • gf0007 hours ago
          I think GC&#x27;s definition is pretty clear cut. How is counting references to determine when a lifetime ends materially different from another way of doing the same thing? Like there is even a paper that shows that one is tracking liveness, while the other tracks &quot;deadness&quot; and they are literally going at the same thing from different ends.<p>If anything, I often see a bias against tracing GCs from the people misusing the term, to &quot;hype up&quot; their choice of language that it must be better for not having (tracing) GC, when it usually just has ref counting which in many metrics is actually worse, given equal usage -- rust&#x2F;cpp gets away from that because they only use it on a handful of objects, other lifetimes being driven by RAII, which is pretty much just compile-time decidable ref counting?
          • deliciousturkey1 hour ago
            By that definition even C has garbage collection. Automatic storage duration types have compiler-determined lifetime and automatic deallocation.<p>If the definition of a word&#x2F;concept does not match how the word is used in real life, the definition is wrong. After all, semantics is about common understanding of concepts. If your definition of a word doesn&#x27;t match how it&#x27;s used, using that definition is not beneficial to use.
            • gf0001 hour ago
              Well yeah, stack variables are automatically reclaimed. What&#x27;s your issue?<p>It&#x27;s just that this is not the predominant way C programs are written and for everything else you do need to somehow manage the memory, malloced objects would otherwise just leak. What exactly is the issue, the real life use of C requires manually adding free calls, is it not? So it doesn&#x27;t do automatic memory management for you.
              • deliciousturkey1 hour ago
                The term &quot;garbage collection&quot; does not mean that the language has some mechanism of automatically reclaiming some memory. If it did, C would be a garbage-collected language. The term is not used in such way.<p>Now, of course reference counting can be used as a part of a garbage collector. But that doesn&#x27;t mean any language that allows you to implement reference counting as a library, is a garbage-collected language.
                • gf00043 minutes ago
                  Yeah, and?<p>We are in agreement here, C++ is not a GCd language. What I (we) claim is that reference counting is a GC, that&#x27;s it. A language that uses RC 100% would be a GCd language, like python (okay, it does have a tracing GC to collect cycles as well). C++&#x2F;rust has the necessary language primitives to express reference counting as a library, but that&#x27;s an optional thing, usually applied only to select few objects. That&#x27;s a bit like Java can also just allocate a byte buffer and do manual memory management, neither makes a language GCd&#x2F;manual in and of itself.
          • hayley-patton5 hours ago
            &gt; Like there is even a paper that shows that one is tracking liveness, while the other tracks &quot;deadness&quot; and they are literally going at the same thing from different ends.<p><a href="https:&#x2F;&#x2F;dl.acm.org&#x2F;doi&#x2F;10.1145&#x2F;1035292.1028982" rel="nofollow">https:&#x2F;&#x2F;dl.acm.org&#x2F;doi&#x2F;10.1145&#x2F;1035292.1028982</a>
          • gdwatson5 hours ago
            I think a lot of people just want to be able to discuss different areas of the automatic memory management design space separately, and maintaining the distinction between reference counting and garbage collection (meaning tracing GCs) lets them do that.<p>As for me personally, I consider refcounting and GC overlapping categories. I am perfectly willing to call CPython’s reference counting plus cycle collector a form of garbage collection, because it is transparent to the programmer. Every memory management technique has tradeoffs and pathological edge cases, but since you don’t have to consider them in the ordinary course of programming I’d say it counts. If you had to break cycles manually, or to annotate which references should be counted, I’d call that refcounting but not GC – as in the C++ stdlib.
            • pron1 hour ago
              &gt; I think a lot of people just want to be able to discuss different areas of the automatic memory management design space separately, and maintaining the distinction between reference counting and garbage collection (meaning tracing GCs) lets them do that.<p>The problem is that there are many differences in memory management techniques that offer different tradeoffs, and the difference between refcounting and tracing is not necessarily the biggest of them.<p>For example, one of the most important distinctions in memory management is whether it optimises for footprint or speed (or some compromise), and the line isn&#x27;t where people who don&#x27;t understand memory management think it is. It can matter (often a great deal) whether you determine that an object is dead dynamically (say, by counting references) or statically (by manually writing free or by having the language track lifetimes), but it doesn&#x27;t matter as much as whether or not the mechanism needs to know when objects are dead in the first place. So reference counting, manual free, static lifetimes, and even non-moving mark-and-sweep tracing collectors (like Go&#x27;s) generally optimise for footprint at the expense of speed (although different allocators can have some control over that tradeoff), while arenas and tracing moving collectors optimise for speed at the expense of footprint (although here, too, they have some control over the tradeoff). So the line for this super-important tradeoff is between [manual, static, refcoutning] and [arenas, moving tracing]; non-moving tracing collectors are somewhere in between but may be closer to the first group.<p>People who don&#x27;t understand memory management and may not have a lot of experience in low-level programming sometimes think that manual or statically-determined freeing must be fast because low-level languages, which inexperienced people think are fast, use them. In fact, low-level languages have some concerns that are much more important than speed and that preclude them from optimisations such as moving pointers. To get around that performance handicap, these languages try to avoid using their heap memory management as much as possible because they&#x27;re using a rather slow technique because of their constraints.
            • cb3212 hours ago
              I don&#x27;t really disagree much with what you said. My favored PLang Nim (<a href="https:&#x2F;&#x2F;nim-lang.org&#x2F;" rel="nofollow">https:&#x2F;&#x2F;nim-lang.org&#x2F;</a> -- it has both `ref` and `ptr` styles of pointer, one auto-managed, one manually managed) even changed a while back it&#x27;s `nim c --gc=x` command-line language to `nim c --mm=x`, and I was in favor of said change.<p>However, it does inspire me to write.. The kernel of all this terminology confusion is under-exposure of industrial programmers to not just academic terminology, but also the very design space you mention (which has always been nicely covered by Jones&#x27; outstanding book). Just to take an example from the root of this thread:<p>&gt;widespread common usage of the term “garbage collected programming language” which specifically contrasts manual languages like C++ or Rust against garbage collected ones<p>Boehm-Wiser conservative collection for <i>C</i>, among the most manual languages of all, pre-dates its very first ANSI 1989 standard.<p>This underexposure itself is downstream of the kinds of oversimplifications&#x2F;lies of marketing and in this particular case came from Java. The evolution I witnessed was roughly 1) linking Boehm with -lgc and deleting (or #define&#x27;ing away) all your `free()` calls is conservative - to be <i>precise</i> you need compiler aid and a lot of programmers are &quot;not perfect==awful&quot; personality types, 2) Sun Microsystems wants to leverage a lot of reliability issues with C code and become <i>The</i> Platform and spends <i>gobs</i> of money to win hearts &amp; minds, partly succeeding, 3) part of its ad-warfare against the then WIntel hegemony and&#x2F;or tutorials&#x2F;introductory material for Junior Programmers (<i>often</i> the target of &quot;be more reliable&quot; material) plays fast &amp; loose with GC terminology because marketing plays fast &amp; loose structurally for fun but mostly profit, 4) because human language really does == language usage a la Quine, everyone in the industry re-defines what &quot;GC&quot; means to bind it to a programming language instead of to a specific run-time, 5) industry &amp; academics use different language, confusion ensues and so here we are.<p>This is not even the 100th time that either explicit or implicit forces of marketing have achieved confusion analogously to this. If you believe most people don&#x27;t need much of what they spend on then confusion is arguably intrinsic to marketing of ideas&#x2F;products. The highly misleading but suggestive metaphorical language used all over &quot;AI&quot; in both research and in product-lines is a more current case of this, leading anyone who knows much to have to qualify &quot;not AGI&quot; or other such junk just to have a conversation.<p>So, what is my point? Basically just that the larger problem here will persist as long as there is money to be made&#x2F;attention to be garnered by sowing confusion&#x2F;having people talk past each other&#x2F;think some product is more than it really is. I have no meta-strategy in my back pocket to block these successful confusions, but it does seem worth being aware of it.
    • trumpdong11 hours ago
      The Linux kernel has garbage collection, and not just the controversial refcount kind.