On this page:
3.4.1 Milestone Summary
3.4.1.1 Learning Objectives
3.4.1.2 Checklist
3.4.2 Reading
3.4.3 Assignment
3.4.4 Validators and interpreters
8.10

3.4 Iteration 3: Adding Control Flow

3.4.1 Milestone Summary

The goals of this milestone are to (1) practice exposing low-level features from the target language to the compiler, (2) introduce designing abstractions to tame low-level operations, (3) demonstrate the problems that control flow causes with program analysis, (4) introduce linking, and (5) practice thinking about programming at different levels of abstraction. We’ll expose labels and jmp instructions from x64, provide abstractions for using them in the source language, compile the latter abstraction to the former implementation, and practice reasoning about our new source language.

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

3.4.1.1 Learning Objectives
3.4.1.2 Checklist

Provided passes

Completely new passes

Major modifications

Minor modifications

No modifications

Removed passes
  • flatten-begins

3.4.2 Reading

The reading for this week is Structured Control Flow. 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.4.3 Assignment

Implement or extend the following compiler passes

Here are some useful notes:

3.4.4 Validators and interpreters

In these exercises you extend the well-formedness checkers and the interpreters for the source and target language. Generic definitions are given for these by default which you have to replace with your own implementations. You should however prioritize the exercises above, which do not have default implementation and are therefore more important for obtaining a fully functioning compiler pipeline.