Lecture 19

  1. Memory Allocation

1.0 - Memory Allocation

1.1 - Dynamic Memory Allocation

1.2 - Stack and Heap Example

1.3 - Memory Deallocation

1.3.1 - Explicit Memory Deallocation

With explicit memory de-allocation, the

We may encounter some issues with explicit memory deallocation

Dangling References

Memory Leak

p := malloc(size);
...
p := null;

Memory Fragmentation

Locality of Reference

Fragmentation leads to objects being scattered across the address space of the process, with free space in between

1.4 - Resolving Issues using a Garbage Collector

1.4.1 - Mark and Sweep

  1. We can go from p → X so we can mark “X” as accessible.
  2. Additionally, we can go from X → Y, so we can mark “Y” as accessible too.
  3. We can go from q → X which is already marked as accessible.
  4. We can also go from r → Y which is already marked as accessible.

1.4.2 - Stop and Copy (or two-space) Garbage Collection


  1. We being by going through the stack - What can we access from the pointer p on the stack?

    - We find the pointer `p` pointing to the variable $X$ stored on the heap. - Since $X$ is accessible, we copy it over to the new heap. - We update the reference of the pointer `p` to the position that it is stored on the new heap. - We also update the space in which $X$ was stored in the old heap, with a pointer to where $X$ is stored on the new heap
  2. We find what other variables stored on the old heap are accessible by the current variable that we’re inspecting - What can we access from the variable XX on the heap?

    • We see that XX holds a pointer to YY, so we must also copy that over to the new heap.
    • In updating this pointer, we need to:
      • Update the pointer in XX to point to the new location of YY on the new heap
      • Update the variable storage for YY in the old heap to be a pointer to the new YY
  3. We continue going through the stack - What can we access from the pointer q on the stack?

    • We observe that we have already marked XX on the old heap (where q is pointing to) as being copied over.
    • We don’t follow the process for XXany further (i.e. checking what else is accessible) as we have already done this (as is indicated by XX being marked as done).
    • We just update the pointer on the stack.
  4. We continue to go through the stack - What can we access from the pointer r on the stack?

    • As before, we observe that YY has already been marked on the old heap (where r is pointing to) as being copied over, so we don’t follow the copying-over process
    • We just update the pointer on the stack.
  5. We use the “new heap” as the current heap, and the “old heap” as the secondary heap, that we move to when garbage collection is next performed.

1.4.3 - Generational Schemes

Optimised two-space scheme

1.4.4 - Issues with Garbage Collection

1.4.5 - On-the-Fly Garbage Collection

1.4.6 - Concurrent Garbage Collection