What are the roots in garbage collection?

I have read the definition of root as "any reference that you program can access to" and definition of live is that an object that is being used, which can be a local variable, static variable.

I m little confused with discriminating the difference between root and live objects.

What is path to root? How does root and live objects work?

Can someone elaborate ?

link|improve this question

3  
What crummy definitions :) I would start at Garbage Collection – pst Jun 16 '11 at 1:39
@user177833 - where did you read those definitions? – Stephen C Jun 16 '11 at 2:03
2  
the definition in that page for the root is: "any object reference your program can access directly, without going through another object". That is vastly different from "any reference that you program can access to". It is very specific in that your program holds the references to the said managed object, and that your program does not need to traverse the heap to arrive at the root. – Vineet Reynolds Jun 16 '11 at 2:17
1  
you'll need to visualize the JVM/CLR as the actual processes that manage the heap. The only objects in the heap, that the process is aware of, is the set of thread stack frames under execution, the classes that have been loaded, amongst a few others. This is the GC root; every other object in the heap is either reachable or unreachable from this set. – Vineet Reynolds Jun 16 '11 at 2:22
feedback

3 Answers

up vote 8 down vote accepted

If you think of the objects in memory as a tree, the "roots" would be the root nodes - every object immediately accessible by your program.

Person p = new Person();
p.car = new Car(RED);
p.car.engine = new Engine();
p.car.horn = new AnnoyingHorn();

There are four objects; a person, a red car, its engine and horn. Draw the reference graph:

     Person [p]
        |
     Car (red)
   /           \
Engine    AnnoyingHorn

And you'll end up with Person at the "root" of the tree. It's live because it's referenced by a local variable, p, which the program might use at any time to refer to the Person object. This also goes for the other objects, through p.car, p.car.engine, etc.

Since Person and all other objects recursively connected to it are live, there would be trouble if the GC collected them.

Consider, however, if the following is run after a while:

p.car = new Car(BLUE);

And redraw the graph:

     Person [p]
        |
     Car (blue)       Car (red)
                    /           \
                Engine    AnnoyingHorn

Now the Person is accessible through p and the blue car through p.car, but there is no way the red car or its parts can ever be accessed again - they are not connected to a live root. They can be safely collected.

So it's really a matter of taking every starting point (every local variable, globals, statics, everything in other threads and stack frames) — every root — and recursively following all the references to make up a list of all the "live" objects: objects which are in use and unsuitable for deletion. Everything else is garbage, waiting to be collected.

link|improve this answer
feedback

Roots or garbage collection roots are the objects that are always reachable. If an object is always reachable, then it is not eligible for garbage collection; roots therefore are always ineligible for collection. It is the initial set of objects from where reachability of all other objects on the heap are determined.

Other objects on the heap reachable from the garbage collection roots are considered to be live objects, and ineligible for collection; the objects that are unreachable can be marked for reclamation.

I know Java more than the .Net platform, so I'll speak only for one. On the Java platform, the GC roots are actually implementation dependent. In most runtime however, the GC roots tend to be the operands on the stack (for they are currently in use by threads) and class (static) members of classes. Reachability is calculated from these objects in most JVMs. There are other cases where local parameters and operands used by JNI calls will be considered part of the root set, and also used to calculate reachability.

I hope this clears any lingering doubts over what is a root (set) and what is a live object.

link|improve this answer
can i say that roots are pointers to live objects? if there is no path from a root to an object that object can be claimed by garbage collection? – DarthVader Jun 16 '11 at 1:58
1  
Root are live objects. Don't bring pointers into this and confuse yourself (GC algorithms use the number of references to an object to determine reachability; see what you did there by considering roots as pointers). Pointers/References have to be used to determine reachability. – Vineet Reynolds Jun 16 '11 at 2:03
1  
The above comment should have read as "Roots are live objects known to the JVM/CLR". The problem with treating them as pointers is that the GC algorithm will be more complex, for any GC algorithm deals with the number of pointers/references to objects to distinguish between live and collectable objects. Once a root is a pointer, all root pointers (sic) have to be handled differently, for no apparent benefit. – Vineet Reynolds Jun 16 '11 at 2:27
feedback

In java I would say threads are the root objects. Every live object can be back traced to a live thread. For example, a static object is referenced by a class, which is referenced by a class loader, which is referenced by another class, which is referenced by an instance of that class, ... which is referenced by a Runnable, which is referenced by a live thread. (Note, classes can be GC'ed, they can't be roots)

We can also consider a "real" root for all threads, however that is out of the realm of standard Java. We can't say what it is, and how it references all the threads.

link|improve this answer
Loaded classes are also roots (as they may contain global/static variables). – duskwuff Jun 16 '11 at 3:22
no, they can be GC'ed. – irreputable Jun 16 '11 at 3:36
feedback

Your Answer

 
or
required, but never shown

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