Coexisting with the garbage collector

The Alore runtime includes a garbage collector that frees unused memory automatically by periodically scanning the heap to find unreferenced memory blocks. It can also perform copying garbage collection which involves moving blocks to different memory locations behind the scenes.

A garbage collection cycle may be triggered by any memory allocation operation. Due to the presence of the garbage collector, some operations that normally would never require memory allocation, for example setting an array item or a member variable, may actually cause memory allocation. This is due to the write barrier employed by the garbage collector that requires most heap modification operations to be checked and potentially recorded.

Modules implemented using the Alore C API must cooperate with the garbage collector, or otherwise heap corruption may occur. In particular, the following issues must be addressed:

Code using the Alore C API typically does not need to worry about freeing memory when it is no longer being used. However, it is possible to also use normal C memory management functions such as malloc and free, but they do not use the garbage collected heap and thus are not automatically freed by the garbage collector. Although using C memory management functions is generally discouraged, wrapping existing C code typically requires dealing with data allocated in the C heap.

The rest of this section deals with these issues in more detail.

Operations that trigger garbage collection

We previously mentioned that any operations that may cause memory to be allocated may trigger a garbage collection operations that, in turn, may free any unreferenced objects and move others around the heap. Here we define in detail which operations may and which may not allocate memory.

These conditions may trigger a garbage collection cycle:

Garbage collection may not be performed at any other point in program execution, for example at these points:

  1. Ordinary C code statements such as assignment expressions, if statements and return statements when they do not involve calls to Alore C API functions.
  2. Calls to ordinary C functions such as strlen or malloc.
  3. Calls to Alore C API functions that do not take an AThread * argument, such as AIsInt.
  4. Certain calls to Alore C API functions whose description mentions that no memory is allocated if certain conditions hold.
  5. When evaluating the arguments to an Alore C API function, if the arguments themselves do not involve any operations that may trigger garbage collection.
  6. Assigning the value returned by a Alore C API function.

Keeping values visible to the garbage collector

The main rule to follow in order to properly cooperate with the garbage collector is this: All references to Alore objects must be visible to the garbage collector during any operation that may trigger garbage collection.

These values are visible to the garbage collector:

Since the Alore garbage collector is precise, it cannot see references stored in arbitrary locations in the C stack, C global variables or C heap. So these references are not visible to the garbage collector, for example:

Is it often necessary to have hidden references, i.e. references that are not visible to the garbage collector, but this should be temporary and you must remember that all hidden references become invalid after any operation that may cause a garbage collection.

Consider this code, for example:

frame[3] = AMakePair(t, frame[4], frame[5]);

The values of expressions frame[4] and frame[5] are hidden, since they are temporarily values, but this is valid since they are not used after the call to AMakePair, which makes them invalid. Also, the return value may be stored in a temporary location before assigning to frame[3], but in this case, no garbage collection may be triggered since the call to AMakePair has already finished.

The code below is invalid, however, since the order of evaluation of function arguments in unspecified in C, and thus the value of expression frame[4] may be made invalid by the call to AMakeInt:

frame[3] = AMakePair(t, AMakeInt(t, 1), frame[4]);  -- Error!

Here is another invalid example. The value of expression frame[1] or frame[0] may become invalid by one of the ALen calls:

frame[2] = ALen(t, frame[0]) + ALen(t, frame[1]);  -- Error!

If you are unsure about the expression evaluation order rules of C, it may be safest to only perform at most a single C API function call in a single C expression, making the order of operations explicit.

Dealing with malloc and similar functions

Often C modules will access data structures or resources that must be manually allocated using C functions. A typical example is memory blocks allocated using malloc that must be freed with free. The Alore garbage collector cannot automatically free these kinds of resources, but there are facilities available for instructing it how to clean up C resources.

If a resource is needed only briefly during a single function call, it might be easiest to simply free the resource before leaving the function. This might be complicated by the presence of exceptions, as detailed in section Direct exceptions and freeing resources.

If a resource needs to remain allocated across several function calls, it is often easiest to define a class that wraps the resource and manages the freeing of the resource. This was detailed in section Storing binary data in instances.

Finally, you could define a C-level global variable that contains a reference to the data structure. Separate functions for allocating, accessing and freeing the resource can be provided. This might be the easiest approach to implement, but users will have to manually free the allocated resources.

Performing long-running operations

Garbage collection in Alore happens synchronously in the presence of threads: each thread must notify the thread executing the garbage collection cycle that they are ready for garbage collection. This is ordinarily performed transparently by the Alore runtime.

However, long-running operations that do not call any API functions that allocate memory may prevent other threads from performing garbage collection, causing them to stall. In these cases, the functions AAllowBlocking and AEndBlocking must be called to enable garbage collection.

In particular, if you call a C function not part of Alore C API that may take more than, say, 10 milliseconds to execute, you should surround the call with calls to the previously mentioned functions. If you perform calculations that do not involve a single long-running function call but that perform lengthy calculations in a loop without allocating any memory, for example, you should call AAllowBlocking immediately followed by a call to AEndBlocking at least once every 10 milliseconds or so. A simple example:

int i;
for (i = 0; i < 1000000000; i++) {
    /* do something */
    if (i % 1000000 == 0) {
        /* Call these functions periodically. */
        AAllowBlocking();
        AEndBlocking();
    }      
}