On this page:
3.5.1 Milestone Summary
3.5.1.1 Learning Objectives
3.5.1.2 Checklist
3.5.2 Reading
3.5.3 Assignment
3.5.4 Validators and interpreters
3.5.5 Optional Exercises
8.10

3.5 Iteration 4: Adding Tail Calls

3.5.1 Milestone Summary

The goals of this milestone are to (1) introduce the procedure call abstraction (2) introduce calling conventions, an abstraction for compiling procedure calls In the process, we’ll learn a different approach to compiler design. Rather than building up layers of abstractions bottom-up, we consider how to compile a designed feature top-down. We’ll introduce an abstraction and consider how to design translations to lower the new an abstraction to existing features.

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

3.5.1.1 Learning Objectives
3.5.1.2 Checklist

Provided passes

Completely new passes

Major modifications

Minor modifications

No modifications

Removed passes
  • assign-fvars

  • assign-homes

3.5.2 Reading

The reading for this week is Procedural Abstraction: Call. 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.5.3 Assignment

Implement or extend the following compiler passes

Here are some useful notes:

3.5.4 Validators and interpreters

In these exercises you extend the well-formedness checkers and the interpreters for the source 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.

Exercise 1: Extend the function interp-values-lang, an interpreter for Values-lang v5.

Exercise 2: Design and implement check-values-lang to validate the safety of source programs. Remember that you will have to reject some safe programs.

3.5.5 Optional Exercises

Exercise 3 (optional): Extend assign-fvars to take conflicts from the calling convention into account and thereby preserve the unoptimized assign-homes pass. If you previously implemented the suggested interface for the graph coloring, then you can simply call your coloring function with a different set of assignable locations, i.e. frame variables only. Note: This functionality will become necessary when you implement Procedural Abstraction: Return.