On this page:
3.3.1 Assignment Summary
3.3.1.1 Checklist
3.3.2 Reading
3.3.3 Assignment
3.3.4 Validators and interpreters
8.10

3.3 Iteration 2: Register Allocation

3.3.1 Assignment Summary

The goal of this assignment is to introduce (1) "optimizing" compilation (2) register allocation, a critically important "optimization". In this assignment, you will replace the assign-homes pass with assign-homes-opt, a version that tries hard to put variables into registers instead of in the frame via graph-colouring register allocation.

You can use the interrogator to get limited access to the reference solution: https://soft.vub.ac.be/compilers/interrogator?an=a3.

3.3.1.1 Checklist

Provided passes

Completely new passes

Minor modifications

    Remove passes

      3.3.2 Reading

      The reading for this week is Register Allocation. As usual, this milestone description links to the documentation for each exercise in the chapter for convenience, but you are responsible for the reading the entire chapter.

      3.3.3 Assignment

      Implement the following compiler passes

      Here are some useful notes:

      3.3.4 Validators and interpreters

      No changes required.