in ,

Garbage Collection, Hacker News


26

  

         

×

If you see a mistake, find something unclear, or have a suggestion, pleaselet me know. To learn when new chapters are up, join the mailing list:

           

(I post about once a month. Don’t worry, I won’t spam you.)

I wanna, I wanna,
I wanna, I wanna,
I wanna be trash.

The Whip,Trash

We say Lox is a “high-level” language because it frees programmers worrying about details irrelevant to the problem they’re solving. The user becomes an executive giving the machine abstract goals and letting the lowly computer figure out how to get there.

Dynamic memory allocation is a perfect candidate for automation. It’s necessary for a working program, tedious to do by hand, and yet still error-prone. The inevitable mistakes can be catastrophic, leading to crashes, memory corruption or security violations. It’s the kind of risky-yet-boring work that machines Excel at Over Humans.

This is why Lox is a “managed” language, which means that the language implementation manages memory allocation and freeing on the user’s behalf. When a user performs an operation that requires some dynamic memory, the VM automatically allocates it. The programmer never worries about deallocating anything. As long as they use a piece of memory, the machine ensures that memory is still there.

Lox provides the illusion that the computer has an infinite amount of memory. Users can allocate and allocate and allocate and never once think about where all these bytes are coming from. Of course, computers do not yethaveinfinite memory. So the way managed languages ​​maintain this illusion is by going behind the programmer’s back and reclaiming memory that the program no longer needs. The component that does this is called agarbagecollector.

26. 0. 1Reachability

This raises a surprisingly difficult question: how does a VM tell what memory isnotneeded? Memory is only needed if it is read in the future, but short of having a time machine, how can an implementation tell what code the programwillexecute and which data itwilluse? Spoiler alert: VMs cannot travel into the future. Instead, the language makes aconservativeapproximation : it considers a piece of memory to still be in use if itcould possiblybe read in the future.

That soundstooconservative . Couldn’tanybit of memory potentially be read? Actually, no, at least not in a memory-safe language like Lox. Here’s an example:

vara="first value";a="updated";// GC here.printa;

Say we run the GC after the assignment has completed on the second line. The string “first value” is still sitting in memory, but there is no way for the user’s program to ever get to it. Onceagot reassigned, the program lost any reference to that string. We can safely free it. A value isreachableif there is some way for a user program to reference it.

Many values ​​can be directly accessed by the VM. Take a look at:

varglobal="string";{  varlocal="another";  printgloballocal;}

Pause the program right after the two strings have been concatenated but before the print statement has executed. The VM can reach"string"by looking through the global variable table and finding the entry forglobal. It can find"another"by walking the value stack and hitting the slot for the local variablelocal. It can even find the concatenated string"stringanother"since that temporary value is also sitting on the VM’s stack at the point when we paused our program.

All of these values ​​are calledroots. A root is any object that the VM can reach directly without going through a reference in some other object. Most roots are global variables or on the stack, but as we’ll see, there are a couple of other places the VM stores references to objects that it can find.

Other values ​​can be found by going through a reference inside another value.Fieldson instances of classes are the most obvious case, but we don’t have those yet. Even without those, our VM still has indirect references. Consider: ******

funmakeClosure(){  vara="data";  funf(){printa;}  returnf;}varclosure=makeClosure() ;// GC here.closure();

Say we pause the program on the marked line and run the garbage collector. When the collector is done and the program resumes, it will call the closure, which will in turn print"data". So the collector needs tonotfree that string. But here’s what the stack looks like when we pause the program:

The stack, containing only the script and closure.

The"data"string is nowhere on it. It has already been hoisted off the stack and moved into the closed upvalue that the closure uses. The closure itself is on the stack. But to get to the string, we need to trace through the closure and its upvalue array. Since itispossible for the user’s program to do that , all of these indirectly accessible objects are also considered reachable.

All of the referenced objects from the closure and the path to the 'data' string from the stack.

This gives us an inductive definition of reachability:

  • All roots are reachable.

  • Any object referred to from a reachable object is itself reachable.

These are the values ​​that are still “live” and need to stay in memory. Any value thatdoesn’tmeet this definition is fair game for the collector to reap. That recursive pair of rules hints at a recursive algorithm we can use to free up unneeded memory:

    Starting with the roots, traverse through object references to find the     full set of reachable objects. ******

  1. Free all objectsnotin that set.

Manydifferentgarbage collection algorithms are in use today, but they all roughly follow that same structure. Some may interleave the steps or mix them, but the three fundamental operations are there. They mostly differ inhowthey perform each step.

26. 1Mark-Sweep Garbage Collection

The first managed language was Lisp, the second “high level” language to be invented, right after Fortran. John McCarthy considered using manual memory management or reference counting, buteventuallysettled on (and coined) garbage collectiononce the program was out of memory it would go back and find unused storage it could reclaim. ******

He designed the very first, simplest garbage collection algorithm, calledmark-and-sweepor justmark-sweep. Its description fits in three short paragraphs in the initial paper on Lisp. Despite its age and simplicity, the same fundamental algorithm underlies many modern memory managers. Some corners of CS seem to be timeless.

As the name implies, mark-sweep works in two phases:

  • Marking.We start with the roots and traverse ortracethrough all of the objects those roots refer to.     This is a classic graph traversal of all of the reachable objects. Each time     we visit an object, wemarkit in some way . (Implementations differ in how     they record the mark.)

  • Sweeping.Once the mark phase completes, every reachable object in the     heap is marked. That means any unmarked object is unreachable and ripe for     reclamation. We go through all the unmarked objects and free each one.

It looks something like this:

Starting from a graph of objects, first the reachable ones are marked, the remaining are swept and then only the reachable remain.

That’s what we’re gonna implement. Whenever we decide it’s time to reclaim some bytes, we’ll trace everything and mark all the reachable objects, free what didn’t get marked, and then resume the user’s program.

26. 1. 1Collecting garbage

This entire chapter is about implementing onefunction:

void*reallocate(void*previous,(size_t)oldSize,size_tnewSize);

memory.h
add afterreallocate()

voidcollectGarbage();
voidfreeObjects();

memory.h, add afterreallocate()

We’ll work our way up to a full implementation starting with this empty shell:

memory.c
add afterfreeObject()

voidcollectGarbage(){}

memory.c, add afterfreeObject()

The first question you might ask is, “When does this function get called?” It turns out that’s a subtle question that we’ll spend some time on later in the chapter. For now we’ll sidestep the issue and build ourselves a handy diagnostic tool in the process:

# define DEBUG_TRACE_EXECUTION

common.h


# define DEBUG_STRESS_GC

# define UINT8_COUNT (UINT8_MAX 1)

common.h

We’ll add an optional “stress test” mode for the garbage collector. When this flag is defined, the GC runs as often as it possibly can. This is, obviously, horrendous for performance. But it’s great for flushing out memory management bugs that only occur when a GC is triggered at just the right moment. Ifeverymoment triggers a GC, you’re likely to hit it.


void*reallocate(void*previous,size_toldSize,size_tnewSize){

memory.c
inreallocate()

if()newSize>(oldSize){# ifdef DEBUG_STRESS_GC    collectGarbage();# endif  }
if(newSize==0){

memory.c, inreallocate()

Whenever we callreallocate ()to acquire more memory, we force a collection to run. The if check is becausereallocate ()is also called to free or shrink an allocation. We don’t want to trigger a GC for thatin particular because the GC itself will callreallocate ()to free memory.

Collecting right beforeallocationis the classic way to wire a GC into a VM. You’re already calling into the memory manager, so it’s an easy place to hook in the code. Also, allocation is the only time when you reallyneedsome freed up memory, so that you can reuse it. If youdon’tuse allocation to trigger a GC, you have to make sure every possible place in code where you can loop and allocate memory also has a way to trigger the collector. Otherwise, the VM can get into a starved state where it needs more memory but never collects any.

26. 1. 2Debug logging

While we’re on the subject of diagnostics, let’s put some more in. A real challenge I’ve found with garbage collectors is that they are opaque. We’ve been running lots of Lox programs just fine without any GCat allso far. Once we add one, how do we tell if it’s doing anything useful? Can we only tell if we write programs that plow through acres of memory? How do we debug that?

An easy way to shine a light into the GC’s inner workings is with some logging:

# define DEBUG_STRESS_GC

common.h

# define DEBUG_LOG_GC

# define UINT8_COUNT (UINT8_MAX 1)

common.h

When this is enabled, clox prints information to the console when it does something with dynamic memory. We need a couple of includes:

# include"vm.h"

memory.c


# ifdef DEBUG_LOG_GC# include# include"debug.h"# endif

voidreallocate(void*)previous,size_toldSize,size_tnewSize){

memory.c

We don’t have a collector yet, but we can start putting in some of the logging now. We’ll want to know when a collection run starts:

voidcollectGarbage(){

memory.c
incollectGarbage()

# ifdef DEBUG_LOG_GC  printf("- gc begin n");# endif
}voidfreeObjects(){

memory.c, incollectGarbage()

Eventually we will log some other operations during the collection, so we’ll also want to know when the show’s over:

printf("- gc begin n");# endif

memory.c
incollectGarbage()


# ifdef DEBUG_LOG_GC  printf("- gc end n");# endif
}

memory.c, incollectGarbage()

We don’t have any code for the collector yet, but we do have functions for allocating and freeing, so we can instrument those now:

vm.objects=object;

object.c
inallocateObject()


# ifdef DEBUG_LOG_GC  printf("% p allocate% ld for% d n",) (void*)object),size,type) ;# endif
return) object;

object.c, inallocateObject()

And at the end of an object’s lifespan:

staticvoidfreeObject(Obj*object){{

memory.c
infreeObject()

# ifdef DEBUG_LOG_GC  printf("% p free type% d n",(void*)object,object->type);# endif
switch(object->type){

memory.c, infreeObject()

With these two flags, we should be able to see that we’re making progress as we work through the rest of the chapter.

26. 2Marking the Roots

Objects are scattered across the heap like stars in the inky night sky. A reference from one object to another forms a connection and these constellations are the graph that the mark phase traverses. Marking begins at the roots:

# ifdef DEBUG_LOG_GC  printf("- gc begin n");# endif

memory.c
incollectGarbage()


markRoots();

# ifdef DEBUG_LOG_GC

memory.c, incollectGarbage()

Most roots are local variables or temporaries sitting right in the VM’s stack, so we start by walking that:

memory.c
add afterfreeObject()

staticvoidmarkRoots(){  for()  (Value)*(slot)=VM.stack;slot
VM.stackTop;slot){    markValue*slot);  }}

memory.c, add afterfreeObject()

To mark a Lox value, we use this new function:

void*reallocate(void*previous,(size_t)oldSize,size_tnewSize);

memory.h
add afterreallocate()

voidmarkValue(Value) value);
voidcollectGarbage();

memory.h, add afterreallocate()

Its implementation is:

memory.c
add afterreallocate()

voidmarkValue(Value(value)){{*********)   if(!IS_OBJ(value))return;  markObject(AS_OBJ((value)));}

memory.c, add afterreallocate()

Some Lox values ​​-numbers, Booleans, and (nil)-are stored directly inline in Value and require no heap allocation. The garbage collector doesn’t need to worry them at all, so the first thing we do is ensure that the value is an actual heap object. If so, the real work happens in this function:

void*reallocate(void*previous,(size_t)oldSize,size_tnewSize);

memory.h
add afterreallocate()

voidmarkObject(Obj*object);;
voidmarkValue(Valuevalue);

memory.h, add afterreallocate()

Which is defined here:

memory.c
add afterreallocate()

voidmarkObject(Objobject)){  if(object==NULL)return;  object->isMarked=true;}

memory.c, add afterreallocate()

TheNULLcheck is unnecessary when called frommarkValue (). A Lox Value that is some kind of Obj type will always have a valid pointer. But later we will call this function directly from other code and in some of those places, the object Being pointed to is optional.

Assuming we do have a valid object, we mark it by setting a flag. That new field lives in the Obj header struct all objects share:

ObjTypetype;

object.h
in structsObj

boolisMarked;
structsObj*next;

object.h, in structsObj

Every new object begins life unmarked because we haven’t determined if it is reachable or not yet:

object->type=)type;

object.c
inallocateObject()

object->isMarked=false;

object) ->next=VM.objects;

object.c, inallocateObject()

Before we go any farther, let's add some logging tomarkObject ():

voidmarkObject(Obj*object){  if(object==NULL)return;

memory.c
inmarkObject()

# ifdef DEBUG_LOG_GC  printf("% p mark",(void*)object);  printValue(OBJ_VAL((object)));  printf(" n");# endif
object) ->isMarked=true;

memory.c, inmarkObject()

Marking the stack covers local variables and temporaries. The other main source of roots are the global variables:

markValue(*slot);  }

memory.c
inmarkRoots()


markTable(&VM.globals);
}

memory.c, inmarkRoots()

Those live in a hash table owned by the VM, so we’ll declare another helper function for marking all of the objects in a table:

ObjString*tableFindString(Table*table,(const)char*chars,intlength,                           uint 32 _ thash);

table.h
in functiontableFindString

voidmarkTable(Table) *table);

# endif

table.h, in functiontableFindString

We implement that in the “table” module:

table.c
add aftertableFindString()

voidmarkTable(Table) *table){  for()inti=0;itable->capacity;(i)){    Entry*entry=& &table->entries[i];    markObject((Obj*)entry->key);)     markValueentry->value);  }}

table.c, add aftertableFindString()

Pretty straightforward. We walk the entry array and mark every key string and value, uh, value.

26. 2. 1Less obvious roots

Those cover the roots that we typically think of-the values ​​that are obviously reachable because they’re stored in variables the user’s program can see. But the VM has a few of its own hidey holes where it squirrels away references to values ​​that it directly accesses.

Most function call state lives in the value stack, but the VM maintains a separate stack of CallFrames. Each CallFrame contains a pointer to the closure being called. The VM uses those pointers to access constants and upvalues, so those closures need to be kept around too:

}

memory.c
inmarkRoots()


for(inti=0;ivm.frameCount;i){    markObject((Obj*)VM.frames[i].closure);  }

markTable(&vm.globals));

memory.c, inmarkRoots()

Speaking of upvalues, the open upvalue list is another set of values ​​that the VM can directly reach:

for(inti=0;iVM.frameCount;i){    markObject((Obj*)VM.frames[i].closure);  }

memory.c
inmarkRoots()


for(ObjUpvalue*upvalue=VM.openUpvalues ​​;       upvalue!=NULL;       upvalue=upvalue->next){    markObject((Obj*)upvalue);  }

markTable(&vm.globals));

memory.c, inmarkRoots()

Remember also that a collection can begin duringanyallocation. Those allocations don’t just happen while the user’s program is running. The compiler itself periodically grabs memory from the heap for literals and the constant table. If the GC runs while we’re in the middle of compiling, then any values the compiler directly accesses need to be treated as roots too.

To keep the compiler module cleanly separated from the rest of the VM, we’ll do that in a separate function:

markTable(&VM.globals);

memory.c
inmarkRoots()

markCompilerRoots();
}

memory.c, inmarkRoots()

It’s declared here:

ObjFunction*compile(constchar*source);

compiler.h
add aftercompile()

voidmarkCompilerRoots();

# endif

compiler.h, add aftercompile()

Which means the “memory” module needs an include:

# include"common.h"

memory.c

# include"compiler.h"
# include"memory.h"

memory.c

And the definition is over in the “compiler” module:

compiler.c
add aftercompile()

voidmarkCompilerRoots(){  Compiler*compiler=(current);  while(compiler!=NULL){    markObject((Obj*)compiler->function);)     compiler=compiler->enclosing;  }}

compiler.c, add aftercompile()

Fortunately, the compiler doesn’t have too many values ​​that it hangs onto. The only object it uses is the ObjFunction it is compiling into. Since function declarations can nest, the compiler has a linked list of those and we walk the whole list.

Since the “compiler” module is callingmarkObject (), it also needs an include:

# include"compiler.h"

compiler.c

# include"memory.h"
# include"scanner.h"

compiler.c

Those are all the roots. After running this, every object that the VM-runtime and compiler-can get towithoutgoing through some other object has its mark bit set.

26. 3Tracing Object References

The next step in the marking process is tracing through the graph of references between objects to find the indirectly reachable values. We don’t have instances with fields yet, so there aren’t many objects that contain references, but we do Havesome. In particular, ObjClosure has the list of ObjUpvalues ​​it closes over as well as a reference to the raw ObjFunction that it wraps. ObjFunction in turn has a constant table containing references to all of the literals created in the function’s body. This is enough to build a fairly complex web of objects for our collector to crawl through.

Now it’s time to implement that traversal. We can go breadth-first, depth-first, or some other order. Since we just need to find thesetof all reachable objects, the order we visit themmostlydoesn't matter.

26. 3. 1The tri-color abstraction

As the collector wanders through the graph of objects, we need to make sure it doesn’t lose track of where it is or get stuck going in circles. This is paricularly a concern for advanced implementations like incremental GCs that interleave marking with running pieces of the user’s program. The collector needs to be able to pause and then pick up where it left off later.

To help us soft-brained humans reason about this complex process, VM hackers came up with a metaphor called theTri-color abstraction. Each object has a conceptual “color” that tracks what state the object is in and what work is left t o do.

  • White    – At the beginning of a garbage collection, every object is white.     This color means we have not reached or processed the object at all.

  • Gray–     During marking, when we first reach an object, we darken it gray. This color     means we know it is reachable and should not be collected. But we have not     yet tracedthroughit to see whatotherobjects it references. In graph     algorithm terms, this is theworklistthe set of objects we know about     but haven’t processed yet.

  • Black    – When we take a gray object and mark all of the objects it     references, we then turn it black. This color means the mark phase is done     with that object.

In terms of that abstraction, the marking process now looks like this:

    Start off with all objects white.

  1. Find all the roots and mark them gray.

  2. As long as there are still gray objects:

      Pick a gray object. Turn any white objects that the object mentions to     Gray.
  3. Mark the original gray object black.

I find it helps to visualize this. You have a web of objects with references between them. Initially, they are all little white dots. Off to the side are some incoming edges from the VM that point to the roots. Those roots turn gray. Then each gray object’s siblings turn gray while the object itself turns black. The full effect is a gray wavefront that passes through the graph, leaving a field of reachable black objects behind it. Unreachable objects are not touched by the wavefront and stay white.

A gray wavefront working through a graph of nodes.

At the end, you’re left with a sea of ​​reached black objects sprinkled with islands of white objects that can be swept up and freed. Once the unreachable objects are freed, the remaining objectsall black

are reset to white for the next garbage collection cycle.

26. 3. 2A worklist for gray objects

In our implementation we have already marked the roots. They’re all gray. The next step is to start picking them and traversing their references. But we don’t have any easy way to find them. We set a field on the object, but that’s it. We don’t want to have to traverse the entire object list looking for objects with that field set.

Instead, we’ll create a separate worklist to keep track of all of the gray objects. When an object turns grayin addition to setting the mark fieldwe’ll also add it to the worklist:

object->isMarked=true;

memory.c
inmarkObject()


if(VM.grayCapacityVM.grayCount1){    VM.grayCapacity=GROW_CAPACITY)(VM.grayCapacity);    VM.grayStack=(realloc)(VM.grayStack,                           sizeof()Obj*)*VM.grayCapacity);  }  VM.grayStack[vm.grayCount]=object;
}

memory.c, inmarkObject()

We could use any kind of data structure that lets us put items in and take them out easily. I picked a stack because that’s the simplest to implement with a dynamic array in C. It works mostly like other dynamic arrays we’ve built in Lox,exceptnote that it calls thesystemrealloc ()function and not our ownreallocate ()wrapper. The memory for the gray stack itself isnotmanaged by the garbage collector. We don’t want growing the gray stack during a GC to cause the GC to recursively start a new GC. That could tear a hole in the space-time continuum.

We’ll manage its memory ourselves, explicitly. The VM owns the gray stack:

Obj*objects;

vm.h
in structVM

intgrayCount;  intgrayCapacity;  Obj**grayStack;
}VM;

vm.h, in structVM

It starts out empty:

vm.objects=NULL;

vm.c
ininitVM()


VM.grayCount=0;  VM.grayCapacity=(0);  VM.grayStack=(NULL);

initTable(&vm.globals));

vm.c, ininitVM()

And, because we manage it ourselves, we need to free it when the VM shuts down:

object=next;  }

memory.c
infreeObjects()


free(VM.grayStack);
}

memory.c, infreeObjects()

26. 3. 3Processing gray objects

OK, now when we’re done marking the roots we have both set a bunch of fields and filled our work list with objects to chew through. It’s time for the next phase:

markRoots();

memory.c
incollectGarbage()

traceReferences();

memory.c, incollectGarbage()

Here’s the implementation:

memory.c
add aftermarkRoots()

staticvoidtraceReferences(){  while(vm.grayCount)>0***){    Obj*object=(vm).grayStack[--vm.grayCount];    blackenObject(object);  }}

memory.c, add aftermarkRoots()

It’s as close to that textual algorithm as you can get. Until the stack empties, we keep pulling out gray objects, traversing their references, and then marking them black. Traversing an object’s references may turn up new white objects that get marked gray and added to the stack. So this function swings back and forth between turning white objects gray and gray objects black, gradually advancing the entire wavefront forward.

Here’s where we traverse a single object’s references:

memory.c
add aftermarkValue()

staticvoidblackenObject((Obj) **********object){)   switch(object->type){    caseOBJ_NATIVE:    caseOBJ_STRING:      break;  }}

memory.c, add aftermarkValue()

Each objectkindhas different fields that might reference other objects, so we need a specific blob of code for each type. We start with the easy onesstrings and native function objects contain no outgoing references so there is nothing to traverse.

Note that we don’t set any state in the traversed object itself. There is no direct encoding of “black” in the object’s state. A black object is any object whoseisMarked (field is) ********************************************************************** (set) and that is no longer in The Gray Stack.

Now let’s start adding in the other object types. The simplest is upvalues:

staticvoidblackenObject(Obj*object){  switch(object->type){

memory.c
inblackenObject()

caseOBJ_UPVALUE(********:      markValue((()  ObjUpvalue*)object)->closed));      break;
case) OBJ_NATIVE:

memory.c, inblackenObject()

When an upvalue is closed, it contains a reference to the closed-over value. Since the value is no longer on the stack, we need to make sure we trace the reference to it from the upvalue.

Next are functions:

switch(object->)type){

memory.c
inblackenObject()

caseOBJ_FUNCTION(********:{      ObjFunction*function=(ObjFunction*)object;      markObject((Obj*)function->name);)       markArray(&function->chunk.constants);      break;    }
case) OBJ_UPVALUE:

memory.c, inblackenObject()

Each function has a reference to an ObjString containing the function’s name. More importantly, the function has a constant table packed full of references to other objects. We trace all of those using this helper:

memory.c
add aftermarkValue()

staticvoidmarkArray((ValueArray*array){)   for()inti=0;iarray->count;(i)){    markValuearray->values[i]);  }}

memory.c, add aftermarkValue()

The last object type we have now-we'll add more in later chapters-is Closures:

switch(object->)type){

memory.c
inblackenObject()

caseOBJ_CLOSURE(********:{      ObjClosure*closure=(ObjClosure*)object;      markObject((Obj*)closure->function);)       for()inti=0;iclosure->upvalueCount;(i)){        markObject((Obj*)closure->upvalues ​​[i]);      }      break;    }
case(OBJ_FUNCTION:{

memory.c, inblackenObject()

Each closure has a reference to the bare function it wraps, as well as an array of pointers to the upvalues ​​it captures.

That’s the basic mechanism for processing a gray object, but there are two loose ends to tie off. First, some logging:

staticvoidblackenObject(Obj*object){{

memory.c
inblackenObject()

# ifdef DEBUG_LOG_GC  printf("% p blacken",(void*)object);  printValue(OBJ_VAL((object)));  printf(" n");# endif
switch(object->type){

memory.c, inblackenObject()

This way, we can watch the tracing percolate through the object graph. Speaking of which, note that I saidgraph. References between objects are directed, but that doesn't mean they'reacyclic!It's entirely possible to have cycles of objects. When that happens, we need to ensure our collector doesn’t get stuck in an infinite loop as it continually re-adds the same series of objects to the Gray Stack.

The fix is ​​easy:

if(object==NULL)return;

memory.c
inmarkObject()

if()object->
isMarked)return;
# ifdef DEBUG_LOG_GC

memory.c, inmarkObject()

If the object is already marked, we don’t mark it again and thus don’t add it to the gray stack. This ensures that an already-gray object is not redundantly added and that a black object is not inadvertently turned back to gray. In other words, it keeps the wavefront moving forward through the white objects.

26. 4Sweeping Unused Objects

When the loop intraceReferences ()exits, we have processed all the objects we could get our hands on. The gray stack is empty and every object in the heap is either black or white. The black objects are reachable and we want to hang on to them. Anything still white never got touched by the trace and is thus garbage. All that’s left is to reclaim them:

traceReferences();

memory.c
incollectGarbage()

sweep();

memory.c, incollectGarbage()

All of the logic lives in one function:

memory.c
add aftertraceReferences()

staticvoidsweep(){  Obj*(previous)=(NULL);  Obj*object=(vm).objects;  while(object!=NULL){    if(object->isMarked){      previous=object;      object=object->next;    }else{      Obj*unreached=(object);      object=object->next;      if(previous!=NULL){        previous->next=object;      }else{        VM.objects=(object);      }      freeObject()unreached);    }  }}

memory.c, add aftertraceReferences()

I know that’s kind of a lot of code and pointer shenanigans but there isn’t much to it once you work through it. The outer while loop walks the linked list of every object in the heap, checking their mark bits. If an object is unmarked (white), we unlink it from the list and free it using thefreeObject ()function we already wrote.

Most of the other code in here deals with the fact that removing a node from a singly-linked list is cumbersome. We have to continously remember the previous node so we can unlink its next pointer, and we have to handle the edge case where we are freeing the first node. But, otherwise, it's pretty simple-delete every node in a linked list that doesn't have a bit set in it.

A recycle bin full of bits.

There’s one little addition:

if(object->isMarked){

memory.c
insweep()

object->isMarked=false;
previous=object;

memory.c, insweep()

Aftersweep ()completes, the only remaining objects are the live black ones with their mark bits set. That’s correct, but when thenextcollection cycle starts, we need every object to be white. So whenever we reach a black object, we go ahead and clear the bit now in anticipation of the next run.

26. 4. 1Weak references and the string pool

We are almost done collecting. There is one remaining corner of the VM that has some unusual requirements around memory. Recall that when we added strings to clox we made the VM intern them all. That means the VM has a hash table containing a pointer to every single string in the heap. The VM uses this to de-duplicate strings.

During the mark phase, we deliberately didnottreat the VM's string table as a source of roots. If we had, nostringwouldeverbe collected. The string table would grow and grow and never yield a single byte of memory back to the operating system. That would be bad.

At the same time, if wedolet the GC free strings, then the VM's string table will be left with dangling pointers to freed memory. That would be even worse.

The string table is special and we need special support for it. In particular, it needs a special kind of reference. The table should be able to refer to a string, but that link should not be considered a root when determining reachability. That implies that the referenced object can be freed. When that happens, the dangling reference must be fixed too, sort of like a magic self-clearing pointer. This particular set of semantics comes up frequently enough that it has a name: aweak reference.

We have already implicitly implemented half of the string table’s unique behavior by virtue of the fact that wedon'ttraverse it during marking. That means it doesn’t force strings to be reachable. The remaining piece is clearing out any dangling pointers for strings that are freed.

To remove references to unreachable strings, we need to know which stringsareunreachable. We don’t know that until after the mark phase has completed. But we can't wait until after the sweep phase is done because by then the objects-and their mark bits-are no longer around to check. So the right time is exactly between the marking and sweeping phases:

traceReferences();

memory.c
incollectGarbage()

tableRemoveWhite()  &VMstrings);
sweep();

memory.c, incollectGarbage()

The logic for removing the about-to-be-deleted strings exists in a new function in the “table” module:

ObjString*tableFindString(Table*table,(const)char*chars,intlength,                           uint 32 _ thash);

table.h
intableFindString()


voidtableRemoveWhite(Table*table);
voidmarkTable(Table*table);

table.h, intableFindString()

The implementation is here:

table.c
add aftertableFindString()

voidtableRemoveWhite(Table) *table){  for()inti=0;itable->capacity;(i)){    Entry*entry=& &table->entries[i];    if(entry->key!=NULL&&!entry->key->obj.isMarked){      tableDelete(table,(entry)->key);    }  }}

table.c, add aftertableFindString()

We walk every entry in the table. The string intern table only uses the key of each entry-it's basically a hashsetnot a hashmap. If the key string object’s mark bit is not set, then it is a white object that is moments from being swept away. We delete it from the hash table first and thus ensure we won’t see any dangling pointers. ******

26. 5When to Collect

We have a fully functioning mark-sweep garbage collector now. When the stress testing flag is enabled, it gets called all the time, and with the logging enabled too we can watch it do its thing and see that it is indeed reclaiming memory. But, when the stress testing flag is off, it never runs at all. It’s time to decide when the collector should be invoked during normal program execution.

As far as I can tell, this question is poorly answered by the literature. When garbage collectors were first invented, computers had a tiny, fixed amount of memory. Many of the early GC papers assume that you set aside a few thousand words of memory-in other words, most of it-

and invoke the collector whenever you run out. Simple.

Modern machines have gigs of physical RAM, hidden behind the operating system’s even larger virtual memory abstraction, which is shared among a slew of other programs all fighting for their chunk of memory. The operating system will let your program request as much as it wants and then page in and out from the disc when physical memory gets full. You never really “run out” of memory, you just get slower and slower.

26. 5. 1Latency and throughput

It no longer makes sense to wait until you “have to”, to run the GC, so we need a more subtle timing strategy. To reason about this more precisely, it’s time to introduce two fundamental numbers used when measuring a memory manager’s performance:throughput (andlatency

Evvery managed language has pays a performance price compared to explicit, user-authored deallocation. The time spent actually freeing memory is the same, but the GC spends cycles figuring outwhichmemory to free . That is timenotspent running the user’s code and doing useful work. In our implementation, that’s the entirety the mark phase falls under this. The goal of a sophisticated garbage collector is to minimize that overhead.

There are two key metrics we can use to understand that cost better:

  • Throughputis the total fraction of time spent running user code versus     doing garbage collection work. Say you run a clox program for ten seconds     and it spends a second of that insidecollectGarbage (). That means the     throughput is 90%-it spent 90% of the time running the program and 10%     on GC overhead.

    Throughput is the most fundamental measure because it tracks the total cost of collection overhead. All else being equal, you want to maximize throughput. Up until this chapter, clox had no GC at all and thus(%) throughput. That’s pretty hard to beat. Of course, it came at the slight expense of potentially running out of memory and crashing if the user’s program ran long enough. You can look at the goal of a GC as fixing that “glitch” while sacrificing as little throughput as Possible.

  • Latencyis the longestcontinuouschunk of time where the user's     program is completely paused while garbage collection happens. It’s a     measure of how “chunky” the collector is. Latency is an entirely different     metric than throughput. ******

    Consider two runs of a clox program that both take ten seconds. In the first run, the GC kicks in once and spends a solid second incollectGarbage ()in one massive collection. In the second run, the GC gets invoked five times, each for a fifth of a second. Thetotalamount of time spent collecting is still a second, so the throughput is 90% in both cases. But in the second run, the latency is only 1 / 5th of a second, five times less than in the First.

A bar representing execution time with slices for running user code and running the GC. The largest GC slice is latency. The size of all of the user code slices is throughput.

If you like analogies, imagine your program is a bakery selling fresh-baked bread to customers. Throughput is the total number of warm, crusty baguettes you can serve to customers in a single day. Latency is how long the unluckiest customer has to wait in line before they get served.

Runningthe garbage collector is like shutting down the bakery temporarily to go through all of the dishes, sort out the dirty from the clean, and then wash the used ones. In our analogy, we don’t have dedicated dishwashers, so while this is going on, no baking is happening. The baker is washing up. ******

Selling fewer loaves of bread a day is bad, and making any particular customer sit and wait while you clean all the dishes is too. The goal is to maximize throughput and minimize latency, but there is no free lunch, even inside a bakery. Garbage collectors make different trade-offs between how much throughput they sacrifice and latency they tolerate.

Being able to make these trade-offs is useful because different user programs have different needs. An overnight batch job that is generating a report from a terabyte of data just needs to get as much work done as fast as possible. Throughput is queen. Meanwhile, an app running on a user’s smartphone needs to always respond immediately to user input so that dragging on the screen feelsbutterysmooth. The app can’t freeze for a few seconds while the GC mucks around in the heap.

As a garbage collector author, you control some of the trade-off between throughput and latency by your choice of collection algorithm. But even within a single algorithm, we have a lot of control overhow frequentlythe collector runs.

Our collector is a“Stop-the- world ”GC which means the user’s program is paused until the entire garbage collection process has completed. If we wait a long time before we run the collector, then a large number of dead objects will accumulate. That leads to a very long pause while the collector runs and thus high latency. So, clearly, we want to run the collector really frequently. ******

But every time the collector runs, it spends some time visiting live objects. That doesn't reallydoanything useful (aside from ensuring that they don't incorrectly get deleted). Time visiting live objects is time not freeing memory and also time not running user code. If you run the GCreallyfrequently, then the user’s program doesn’t have enough time to even generate new garbage for the VM to collect. The VM will spend all of its time obsessively revisiting the same set of live objects over and over, and throughput suffers. So, clearly, we want to run the collector reallyin- frequently.

In fact, we want something in the middle, and the frequency of when the collector runs is one of our main knobs for tuning the trade-off between latency and throughput.

26. 5. 2Self-adjusting heap

We want our GC to run frequently enough to minimize latency but infrequently enough to maintain decent throughput. But how do we find the balance between these when we have no idea how much memory the user’s program needs and how often it allocates? We could pawn the problem onto the user and force them to pick by exposing GC tuning parameters. Many VMs do this. But if we, the GC authors, don’t know how to tune it well, odds are good most users won’t either. They deserve a reasonable default behavior.

I’ll be honest with you, this is not my area of ​​expertise. I’ve talked to a number of professional GC hackers-this is something you can build an entire career on-and read a lot of the literature, and all of the answers I got were… vague. The strategy I ended up picking is common, pretty simple, and (I hope!) good enough for most uses.

The idea is that the collector frequency automatically adjusts based on the live size of the heap. We track the total number of bytes of managed memory that the VM has allocated. When it goes above some threshold, we trigger a GC. After that, we note how many bytes of memory remain-how many werenotfreed. Then we adjust the threshold to some value larger than that.

The result is that as the amount of live memory increases, we collect less frequently in order to avoid sacrificing throughput by re-traversing the growing pile of live objects. As the amount of live memory goes down, we collect more frequently so that we don’t lose too much latency by waiting too long.

The implementation requies two new bookkeeping fields in the VM:

ObjUpvalue*openUpvalues ​​;

vm.h
in structVM


size_tbytesAllocated;  size_tnextGC;

Obj) *objects;

vm.h, in structVM

The first is a running total of the number of bytes of managed memory the VM has allocated. The second is the threshold that triggers the next collection. We initialize them when the VM starts up:

vm.objects=NULL;

vm.c
ininitVM()

VM.bytesAllocated=) 0;  VM.nextGC=1024*
;

VMgrayCount=0;)

vm.c, ininitVM()

The starting threshold here is (arbitrary) . It’s similar to the initial capacity we picked for our various dynamic arrays. The goal is to not trigger the first few GCstooquickly but also to not wait too long. If we had some real-world Lox programs, we could profile those to tune this. But since all we have is toy programs, I just picked a number.

Every time we allocate or free some memory, we adjust the counter by that delta:

void*reallocate(void*previous,(size_t)oldSize,size_tnewSize){

memory.c
inreallocate()

VM.bytesAllocated=
newSize-oldSize;
if) (newSize>oldSize){

memory.c, inreallocate()

When the total crosses the limit, we run the collector:

if(newSize>oldSize){# ifdef DEBUG_STRESS_GC    CollectGarbage();# endif

memory.c
inreallocate()


if(VM.bytesAllocated>VM.nextGC){      collectGarbage();    }
}

memory.c, inreallocate()

Now, finally, our garbage collector actually does something when the user runs a program without our hidden diagnostic flag enabled. The sweep phase frees objects by callingreallocate (), which lowers the value ofbytesAllocated, so after the collection completes we know how many live bytes remain. We adjust the threshold of the next GC based on that:

sweep();

memory.c
incollectGarbage()


VM.nextGC=VM.bytesAllocated*GC_HEAP_GROW_FACTOR;

# ifdef DEBUG_LOG_GC

memory.c, incollectGarbage()

The threshold is a multiple of the heap size. This way, as the amount of memory the program uses grows, the threshold moves farther out to limit the total time spent re-traversing the larger live set. Like other numbers in this chapter, the scaling factor is basically arbitrary:

# endif

memory.c


# define GC_HEAP_GROW_FACTOR 2

voidreallocate(void*)previous,size_toldSize,size_tnewSize){

memory.c

You’d want to tune this in your implementation once you had some real programs to benchmark it on. Right now, we can at least log some of the statistics that we have. We capture the heap size before the collection:

printf("- gc begin n");

memory.c
incollectGarbage()

size_tbefore=VMbytesAllocated;
# endif

memory.c, incollectGarbage()

And then print the results at the end:

printf("- gc end n");

memory.c
incollectGarbage()

printf()  "collected% ld bytes (from% ld to% ld) next at% ld n",         before-vm.bytesAllocated,before,VM.bytesAllocated
,         VM.nextGC);
# endif

memory.c, incollectGarbage()

This way we can see how much the garbage collector accomplished while it ran.

26. 6Garbage Collection Bugs

In theory, we are all done now. We have a GC. It kicks in periodically, collects what it can, and leaves the rest. If this were a typical textbook, we would wipe the dust from our hands and bask in the soft glow of the flawless marble edifice we have created.

But I aim to teach you not just the theory of programming languages ​​but the sometimes painful reality. I am going to roll over a rotten log and show you the nasty bugs that live under it, and garbage collector bugs really are some of the grossest invertebrates out there. ******

The collector’s job is to free dead objects and preserve live ones. Mistakes are easy to make in both directions. If the VM fails to free objects that aren’t needed, it can slowly leak memory over time. If it frees an object that is in use, the user’s program can access invalid memory. These failures often don’t immediately cause a crash, which makes it harder for us to trace backwards in time to find the bug.

This is made harder by the fact that we don’t know when the collector will run. Any call that eventually allocates some memory is a place in the VM where a collection could happen. It’s like musical chairs. At any point, the GC might stop the music. Every single heap-allocated object that we want to keep needs to find a chair quickly-get marked as a root or stored as a reference in some other object-before the sweep phase comes to kick it out of the game.

How is it possible for the VM to use an object later that the GC itself doesn’t see? How can the VM find it? The most common answer is through a pointer stored in some local variable on the C stack. The GC walks theVM’svalue and CallFrame stacks, but the C stack is (hidden) to it.

In previous chapters, we wrote seemingly pointless code that pushed an object onto the VM’s value stack, did a little work, and then popped it right back off. Most times, I said this was for the GC’s benefit. Now you see why. The code between pushing and popping potentially allocates memory and thus can trigger a GC. We had to make sure the object was on the value stack so that the collector’s mark phase would find it and keep it alive.

I wrote the entire clox implementation before splitting it into chapters and writing the prose, so I had plenty of time to find all of these corners and flush out most of these bugs. The stress testing code we put in at the beginning of this chapter and a pretty good test suite were very helpful.

But I only fixedmostof them. I left a couple in because I want to give you a hint of what it’s like to encounter these bugs in the wild. If you enable the stress test flag and run some toy Lox programs, you can probably stumble onto a few. Give it a try andsee if you can fix any yourself.******

You are very likely to hit the first bug. The constant table each chunk owns is a dynamic array. When the compiler adds a new constant to the current function’s table, that array may need to grow. The constant itself may also be some heap-allocated object like a string or a nested function.

The new object being added to the constant table is passed toaddConstant (). At that moment, the object can only be found in the parameter to that function on the C stack. That function appends the object to the constant table. If the table doesn't have enough capacity and needs to grow, it callsreallocate (. That in turn triggers a GC, which fails to mark the new constant object and thus sweeps it right before we have a chance to add it to the table. Crash.

The fix, as you’ve seen in other places, is to push it onto the stack temporarily:

intaddConstant(Chunk*chunk,Value(value)){

chunk.c
inaddConstant()

push()value);
writeValueArray(&chunk->constants,) value);

chunk.c, inaddConstant()

Once the constant table contains the object, we pop it off the stack:

writeValueArray(&chunk->constants,value) ;

chunk.c
inaddConstant()

pop();
returnchunk->constants.count-(1);

chunk.c, inaddConstant()

When the GC is marking roots, it walks the chain of compilers and marks each of their functions, so the new constant is reachable now. We do need an include to call into the VM from the “chunk” module:

# include"memory.h"

chunk.c

# include"vm.h"

void(initChunk) *********() ******** (Chunk)*chunk){

chunk.c

Here’s another similar one. All strings are interned in clox so whenever we create a new string we also add it to the intern table. You can see where this is going. Since the string is brand new, it isn’t reachable anywhere. And resizing the string pool can trigger a collection. Again, we go ahead and stash the string on the stack first:

string->hash=hash;

object.c
inallocateString()

push()OBJ_VAL(string));
tableSet(&VM.strings,string,NIL_VAL);

object.c, inallocateString()

And then pop it back off once it’s safely nestled in the table:

tableSet(&VM.strings,string,NIL_VAL);

object.c
inallocateString()

pop();

return) string;

object.c, inallocateString()

This ensures the string is safe while the table is being resized. Once it survives that,allocateString ()will return it to some caller which can then take responsibility for ensuring the string is still reachable before the next heap allocation occurs.

One last example: Over in the interpreter, theOP_ADDinstruction can be used to concatenate two strings. As it does with numbers, it pops the two operands from the stack, computes the result, and pushes that new value back onto the stack. For numbers that’s perfectly safe.

But concatenating two strings requires allocating a new character array on the heap, which can in turn trigger a GC. Since we’ve already popped the operand strings by that point, they can potentially be missed by the mark phase and get swept away. Instead of popping them off the stack eagerly, wepeekthem:

staticvoidconcatenate(){

vm.c
inconcatenate()
replace 2 lines

ObjString*b=(AS_STRING) *********()  (peek)(0)));  ObjString*(a)=(AS_STRING)(peek(1));

int(length=(a)->lengthb->length);

vm.c, inconcatenate(), replace 2 lines

That way, they are still hanging out on the stack when we create the result string. Once that’s done, we can safely pop them off and replace them with the result:

ObjString*result=takeString(chars,(length));

vm.c
inconcatenate()

pop();  pop();
push(OBJ_VAL(result));

vm.c, inconcatenate()

Those were all pretty easy, especially because Ishowedyou were the fix was. In practice,findingthem is the hard part. All you see is an object thatshouldbe there but isn’t. It’s not like other bugs where you’re looking for the code thatcausessome problem. You’re looking for theabsenceof code which fails topreventa problem, and that's a much harder search.

But, for now at least, you can rest easy. As far as I know, we’ve found all of the collection bugs in clox and now we have a working, robust, self-tuning mark-sweep garbage collector.

Challenges

    The Obj header struct at the top of each object now has three fields:     type,isMarked, and (next) . How much memory do those take up (on your     machine)? Can you come up with something more compact? Is there a runtime     cost to doing so?

  1. When the sweep phase traverses a live object, it clears theisMarked    field to prepare it for the next collection cycle. Can you come up with a     more efficient approach?

  2. Mark-sweep is only one of a variety of garbage collection algorithms out     there. Explore those by replacing or augmenting the current collector with     another one. Good candidates to consider are reference counting, Cheney’s     algorithm, or the Lisp 2 mark-compact algorithm.

Design Note: Generational Collectors

A collector loses throughput if it spends a long time re-visiting objects that are still alive. But it can increase latency if it avoids collecting and accumulates a large pile of garbage to wade through. If only there were some way to tell which objects were likely to be long-lived and which weren’t. Then the GC could avoid revisiting the long-lived ones as often and clean up the ephemeral ones more frequently.

Spoiler alert: there kind of is. Many years ago, GC researchers gathered metrics on the lifetime of objects in real-world running programs. They tracked every object when it was allocated and eventually when it was no longer needed and then graphed out how long objects tended to live.

They discovered something they called thegenerational hypothesis, or the much less tactful terminfant mortality. Their observation was that most objects are very short-lived but once they survive beyond a certain age, they tend to stick around quite a long time. The longer an objecthaslived, the longer it likely willcontinueto live. This observation is powerful because it gave them a handle on how to partition objects into groups that benefit from frequent collections and those that don’t.

They designed a technique calledgenerational garbage collection. It works like this: Every time a new object is allocated, it goes into a special relatively small region of the heap called thenursery. Since objects tend to die young, the garbage collector is invokedFrequentlyover the objects just in this region.

Each time the GC runs over the nursery is called ageneration. Any objects that are no longer needed get freed. Those that survive are now considered one generation older, and the GC tracks this for each object. If an object survives a certain number of generations-often just a single collection-

it getstenured. At this point, it is copied out of the nursery into a much larger heap region for long-lived objects. The garbage collector runs over that region too, but much less frequently since odds are good that most of those objects will still be alive. ******

Generational collectors are a beautiful marriage of empirical data-the observation that object lifetimes arenotevenly distributed-and clever algorithm design that takes advantage of that fact. They’re also conceptually quite simple. You can think of one as just two separately tuned GCs and a pretty simple policy for moving objects from one to the other.

Brave Browser
Read More
Payeer

What do you think?

Leave a Reply

Your email address will not be published. Required fields are marked *

GIPHY App Key not set. Please check settings

Calculus Explained with pics and gifs, Hacker News

Calculus Explained with pics and gifs, Hacker News

Live video from a fishing boat in New Zealand 24/7, Hacker News