vote up 11 vote down star
9

I recently read the excellent article "The Transactional Memory / Garbage Collection Analogy" by Dan Grossman. One sentence really caught my attention:

In theory, garbage collection can improve performance by increasing spatial locality (due to object-relocation), but in practice we pay a moderate performance cost for software engineering benefits.

Until then, my feeling had always been very vague about it. Over and over, you see claims that GC can be more efficient, so I always kept that notion in the back of my head. After reading this, however, I started having serious doubts.

As an experiment to measure the impact on GC languages, some people took some Java programs, traced the execution, and then replaced garbage collection with explicit memory management. According to this review of the article on Lambda the ultimate, they found out that GC was always slower. Virtual memory issues made GC look even worse, since the collector regularly touches way more memory pages than the program itself at that point, and therefore causes a lot of swapping.

This is all experimental to me. Has anybody, and in particular in the context of C++, performed a comprehensive benchmark of GC performance when comparing to explicit memory management?

Particularly interesting would be to compare how various big open-source projects, for example, perform with or without GC. Has anybody heard of such results before?

EDIT: And please focus on the performance problem, not on why GC exists or why it is beneficial.

Cheers,

Carl

PS. In case you're already pulling out the flame-thrower: I am not trying to disqualify GC, I'm just trying to get a definitive answer to the performance question.

flag

52% accept rate
Generally I would believe the GC to have much better context about when is best to collect vs explicit management, I would imagine the story is similar to how Threads vs Tasks worked out. – meandmycode Apr 16 at 14:23
I think the halting problem can actually be applied to show that the programmer always (theoretically) has more information about when to collect. The problem is that standard manual memory management tools are woefully inadequate. – Waylon Flinn Apr 17 at 13:36

14 Answers

vote up 5 vote down check

This turns into another flamewar with a lot of "my gut feeling". Some hard data for a change (papers contain details, benchmarks, graphs, etc.):

http://www.cs.umass.edu/~emery/pubs/04-17.pdf says:

"Conclusion. The controversy over garbage collection’s performance impact has long overshadowed the software engineering benefi it provides.This paper introduces a tracing and simulation-based oracular memory manager. Using this framework, we execute a range of unaltered Java benchmarks using both garbage collection and explicit memory management. Comparing runtime, space consumption, and virtual memory footprints, we find that when space is plentiful, the runtime performance of garbage collection can be competitive with explicit memory management, and can even outperform it by up to 4%. We fi that copying garbage collection canrequire six times the physical memory as the Lea or Kingsley allocators to provide comparable performance."

When you have enough memory, copying GC becomes faster than explicit free() - http://www.cs.ucsb.edu/~grze/papers/gc/appel87garbage.pdf

It also depends on what language you use - Java will have to do a lot of rewriting (stack, objects, generations) on each collection and writing a multithreaded GC that doesn't have to stop the world in JVM would be a great achievement. On the other hand, you get that almost for free in Haskell where GC time will rarely be >5%, while alloc time is almost 0. It really depends what you're doing and in what environment.

link|flag
Thanks for a detailed and factual answer! – Carl Seleborg Apr 20 at 12:12
I think this answer provides enough information to show what needs to be taken into account when deciding on whether to use garbage collection in a project. – Carl Seleborg Apr 20 at 12:27
vote up 0 vote down

One pragmatic issue is that with explicit MM it is generally a lot easier to profile, identify the bottleneck, and resolve it.

With a GC system, when your nice O(N) code turns out to trash the GC in a pathological way that makes it O(heap size), it can be harder to work out what is going wrong. Sometimes even as hard as fixing a memory corruption.

link|flag
vote up 1 vote down

Berger's paper is being cited a lot, but it is comparing real garbage collectors against a purely theoretical, offline, optimal algorithm. So while it may tell you something about theoretical limits, it says very little about the performance of real garbage collectors versus real implementations of malloc and free. A study that I like better took real programs and compared explicit malloc and free with Hans Boehm's conservative garbage collector:

The Measured Cost of Conservative Garbage Collection by Ben Zorn

This study isn't perfect, and Zorn is careful to note that if the programs knew they were using a garbage collector, some could be made faster. But the hard data is this: - In real programs originally written to use malloc and free, garbage-collected versions run at about the same speed but require twice as much memory. Zorn argues fairly convincingly that if you know you have GC, you can make things faster, but it's hard to eliminate the memory penalty.

I learned more from this careful experimental study than from Berger's study of an unimplementable, idealized memory manager.

link|flag
vote up -1 vote down

GC will always be slower than the extreme alternative: perfect, non-deterministic memory management.

The questions are:

  • Are the differences large enough to quibble about?
  • Are the drawbacks of one technique enough to cause us to seriously consider the other?

There are other areas in which managed subsystems have won out over unmanaged ones:

In general, a program will always run slower on a multitasking operating system than on a uni-tasking one -- or a computer with no OS.

In general, a program will always run slower on a system with virtual memory than on one without.

Except in extreme circumstances, do we seriously consider computer systems without VM and without an OS?

link|flag
vote up -2 vote down

Side note: another interesting experiment to run, that I haven't seen people try, is to compare with just leaking. Call alloc and never free. It's an interesting alternative.

Except for long-running server apps, you'll never run out of memory in practice, the OS will just start using disk for virtual memory (machines have effectively infinite memory, up to the limits of virtual address space, which I think is huge now with 64-bit machines). This highlights that a GC is nothing more than a device for improving locality. Leaked/dead objects don't "hurt" when you have infinite memory, except that memory comes in hierarchies and you want to keep the 'live' objects nearby and fast and the 'dead' objects on the faraway/slow memory. If each object was allocated on a different page, then the OS virtual memory system would effective be a GC.

link|flag
vote up -2 vote down

See also

http://prog21.dadgum.com/40.html

which discusses the "sufficiently smart" compiler. The landscape of CS/software is riddled with ideas/techiques which can be in theory more performant than the status-quo. But it's all snake oil.

GC is expensive today, and may always be.

link|flag
vote up 0 vote down

As @dribeas points out, the biggest 'confound' to the experiment in the (Hertz&Berger) paper is that code is always written under some 'implicit assumptions' about what is cheap and what is expensive. Apart from that confound, the experimental methodology (run a Java program offline, create an oracle of object lifetimes, instrument back in the 'ideal' alloc/free calls) is actually quite brilliant and illuminating . (And my personal opinion is that confound does not detract too much from their results.)

Personally, my gut-feel is that using a GC-ed runtime means accepting a factor-of-three performance hit to your application (GC'd will be 3x slower). But the real landscape of programs is littered with confounds, and you'd be likely to find a huge scatterplot of data if you could perform the 'ideal' experiment on lots of programs across many application domains, with GC sometimes winning and Manual often winning. (And the landscape is continually changing - will the results change when multicore (and software designed for multicore) is mainstream?)

See also my answer to

http://stackoverflow.com/questions/354124/are-there-statistical-studies-that-indicates-that-python-is-more-productive/354249#354249

which has the thesis that "due to so many confounds, all evidence about software engineering is anecdotal".

link|flag
vote up 1 vote down

There are quite a bit of different arguments given here. I want to start by making clear that you cannot really make a 1:1 comparison. Each has its pros and cons, and any code snippet will be more appropriate for one or the other system. That is as much to say, on the contrary, that you must know whether you have GC or not to write efficient code.

My argument is you must know your environment and code acordingly. That will make your code efficient. Moving from one paradigm to the other and coding the same style will make your code more inefficient than what the GC really helps/takes away.

Case:

A program makes thousands of heap memory allocations for short lived objects. That is, it allocates and deallocates many times, with different size of objects.

On a non-GC environment, for each allocation you would end up calling malloc, and that requires locating in the list of free memory fragments the most suitable one (according to the specific malloc implementation). The memory is used and then it is freed with free [or new/delete in C++...]. The cost of memory management is the cost of locating the fragments.

On a GC environment, with a movable GC as java or .net are, after each GC run all free memory is contiguous. The cost of acquiring memory for an object is cheap, really cheap (<10 cpu instructions in Java VM). At each GC run, only alive objects are located and moved to the beginning of the appropriate memory region (usually it is a different region than the original one). The cost of memory management is primarily the cost of moving all reachable (alive) objects. Now, the premise is that most objects are shortlived so at the end the cost may be smaller than that of a non-GC system. One million objects allocated and freed (forgotten) on a single GC run amount to no extra cost.

Conclusion: In GC languages you can create all local objects on the heap. They are cheap. On the other hand, in non-GC systems, a bunch of allocations, deallocations and new allocations is expensive. The memory is fragmented and the cost of malloc increases... In non-GC systems you should use the stack as much as possible, using the heap out of necessity.

That has another implication. People used to one of the two memory systems will tend to write inefficient programs in the other. They are used to some idioms that are probably bad on the other system.

A clear example is a non-managed programmer that is used to allocate an object and reuse (reset its internal pointers with new elements as required) is used to that way of thinking: allocation is expensive, reusing is cheap. Now, if the same exact code is moved to a generational GC environment (Java, .net - both are move-generational-GC), you get a funny effect. An object in a memory block can never have references to objects in a younger generation. If you reset one reference with a new statement, the object that has survived and has moved to an old generation must be moved (all memory moved, references to it updated) to the younger generation.

The object was alive during 1, 2, 3... GC runs, and it was moved that many times around, finally is moved to the old generation where it will not be moved in each GC run but can just stand there... but alas, the programmer forces the object to become a younger. It is moved once again, and it will again be moved each time the GC runs up to the time where it becomes old again.

To make a sensible comparison, you would need to get to programmers that know the environment write different pieces of code that solve the same problem with the same algorithms with different mind sets about memory management. Then compare the results of both of them.

link|flag
This is exactly why you'll commonly see memory or object pools being used in non-GC languages. Because the allocation time can be painfully slow. – Jasper Bekkers Apr 16 at 14:31
vote up 0 vote down

Here's an experiment that I like to run:

  1. Start up a program written in a garbage collected environment (like .NET or Java).
  2. Start up a similar program written in a non garbage collected environment (like C or C++).
  3. Use the programs and see which one is more responsive.

Objectivity improvement: get your grandmother to do step 3.

It's all well and good to quote theoretical performance of optimal GC implementations but the fact of the matter is that in real world scenarios programs written in garbage collected languages do not perform as well as native applications. This is why large projects where performance translates directly into user experience still program in C++. The classic example of this is game programming.

Another, perhaps counterintuitive, example of this is the Eclipse IDE. While it may be written in Java the entire graphical subsystem had to be rewritten to produce acceptable performance. The solution: make GUI elements lightweight wrappers around native (C/C++) components (SWT).

I understand the draw of garbage collected environments. Memory management is hard to get right. And a lot of work. The bottom line though is this: knowing how your program is supposed to behave gives you (the programmer) an edge over a machine trying to guess.

link|flag
I don't think getting your grandmother to test the responsiveness of execution environments qualifies as "hard data". As for "the fact of the matter is that in real world scenarios programs written in garbage collected languages do not perform as well as native applications" - where is the evidence to support this statement? – harto Apr 27 at 4:38
@harto It certainly is "hard data". It's "hard data" about perceived performance. If you care more about actual performance get out a stopwatch. The SWT project would not exist if there weren't performance issues with Java, .NET isn't spared this failing. Have you ever played a game written in a language with a GC? If so, can you honestly say it was as responsive as a comparable non-GC game? Everyone likes to toot the GC horn. No one likes to run the GC applications. – Waylon Flinn Apr 27 at 14:56
vote up -1 vote down

In theory, GC may be faster in some cases, but I have never seen that, and I doubt I ever will. Also, C++ with GC such as the Boehm GC will probably always be slower because it is conservative. With all the pointer fiddling in C++, the GC has to pretend everything is a pointer. With a language like Java, it can know exactly what is and isn't a pointer, so it may have the potential to be faster.

link|flag
vote up 0 vote down

In theory, a well profiled program can inform an intelligent GC subsystem to attain the described speedups over manually memory management. These speedups may not be visible without long runtimes, to amortize the fixed startup cost of GC.

In practice, you will likely NOT realize these speedups with present-day GC implementations. Furthermore, you will NOT get a definitive answer, because there will always be pathologically bad scenarios for both cases.

link|flag
+1 for practicality – Waylon Flinn Apr 16 at 15:00
vote up 11 vote down

The cost of memory allocation is generally much lower in a garbage collected memory model, then when just using new or malloc explicitly because garbage collectors generally pre-allocate this memory. However, explicit memory models may also do this (using memory pools or memory areas); making the cost of memory allocation equivalent to a pointer addition.

As Raymond Chen and Rico Mariani pointed out, managed languages tend to out perform unmanaged languages in the general case. However, after pushing it, the unmanaged language can and will eventually beat the GC/Jitted language.

The same thing is also evident in the Computer Language Shootout because even though C++ tends to rank higher than Java most of the time, you'll often see C++ implementations jumping trough various hoops (such as object pools) to achieve optimal performance. Garbage collected languages, however, tend to have easier to follow and more straight forward implementations because the GC is better at allocating (small chunks of) memory.

However, performance isn't the biggest difference when it comes to GC vs non-GC; arguably it's the deterministic finalization (or RIIA) of non-GC (and reference counted) languages that is the biggest argument for explicit memory management because this is generally used for purposes other than memory management (such as releasing locks, closing file or window handles et cetera). 'Recently' however C# introduced the using / IDisposable construct to do exactly this.

Another problem with garbage collection is that the systems they use tend to be rather complex to prevent memory leaks. However, this also makes it way more difficult to debug and track down once you do have a memory leak (yes, even garbage collected languages can have memory leaks).

On the flip side, the garbage collected language can do the most optimal thing at the most optimal time (or approximately) without having to burden the developer with that task. This means that developing for a GC language might be more natural, so you can focus more on the real problem.

link|flag
1  
The example of Chen and Mariani is certainly not the general case. Rather, it is one very special (albeit commonly occurring) problem where .NET happens to perform better for pure technical reasons. There is no a priori reason for managed languages to perform better in similar scenarios. – Konrad Rudolph Apr 16 at 13:28
1  
+1 @ Jasper, with a caveat - IDisposable has nothing to do with deterministic finalisation. It is for cleaning up external resources and has no direct impact on managed memory collection. – Jim Arnold Apr 16 at 13:38
@Konard, I know their problems was more concerned with i18n and string manipulation. But I feel that it's more representative of a real world application than the "performance critical" application C++ is generally used for these days. – Jasper Bekkers Apr 16 at 13:39
@Jim, Correct. I was hinting at using the memory management semantics for different purposes such as often done with RAII. After that, I that I tried to point out how to do a similar thing in .Net (without the proper tools). – Jasper Bekkers Apr 16 at 13:45
@Jim, I updated the post to reflect my argument better. – Jasper Bekkers Apr 16 at 15:02
show 6 more comments
vote up -2 vote down

It is the fact that developers are human and miss things that caused the need for garbage collectors in the first place. With that being said let me say that garbage collection will always be slower than perfect explicit memory management. And garbage collection can often be faster than imperfect explicit memory management given the fact that garbage collectors clean up the things that developers tend to forget.

link|flag
Sorry, but this is not true. The program using explicit memory management is either correct, and then it frees everything (nothing is forgotten), or incorrect. The (im)perfectness only means you hold objects longer than necessary, and in this issue, GC chooses the most imperfect (or pessimistic) way – jpalecek Apr 16 at 13:01
... You can, however, solve this by explicitly setting references to null. – jpalecek Apr 16 at 13:01
vote up -2 vote down

Garbage collection will always be slower because it requires the runtime to keep track of memory usage and remember the scope that data is required for, etc. The improvement comes in the form of not having to worry about memory leaks, not performance.

link|flag
Not quite so. GC only needs to keep track of the alive objects (globals, references from the stack) and objects with finalizers (that cannot just be ignored). In each GC round the alived objects are moved and anything not reachable from the previous set is forgotten in time. – dribeas Apr 16 at 13:42
On the other hand, memory allocation is really fast. We are talking 10 CPU instructions on java VM, as free memory is always contiguous. The implementations of malloc require a lot more instructions to find the most appropriate memory fragment... – dribeas Apr 16 at 13:44
It seems like most people are pointing out how bad malloc is instead of pointing how much better GC is than an optimal manual allocation scheme. +1 to stop the madness. – Waylon Flinn Apr 16 at 15:30
You forget that this "keeping track" also gives the garbage collector heaps of runtime data that can be used for optimization. Runtime data that the programmer using manual memory management cannot possibly have, because it doesn't exist at design time. – Jörg W Mittag Apr 16 at 22:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.