CS4410/6410: Compilers

Fall 2021

Contact information

Office email Office hours
Olin Shivers WVH 318 shivers@ccs TBD & by appt

Lectures

Monday 11:45–1:25 Ryder 458
Thursday 11:45–1:25 Ryder 458

Other

Course schedule (lectures, projects, exams) (This is the central file for course-related information.)

Piazza: https://piazza.com/class/kt7form1aoq390

Handin server: https://handins.ccs.neu.edu/courses/161

Slides for intro-to-SML lecture.

Assignments

  1. Lexer (due Mon 9/19 10:00 pm)
  2. Parser (due Thu 10/6 10:00 pm)
  3. Static semantics (due Mon 10/17 10:00 pm)
  4. Frame analysis (due Thu 10/27 10:00 pm)
  5. Translation to IR (due Thu 11/10 10:00 pm)
  6. Instruction selection (due Thu 11/17 10:00 pm)
  7. Live-variable Data-flow analyser (due Thu 11/24 10:00 pm)
  8. Register allocation (due Mon 12/5 10:00 pm)
  9. Integration (due Mon 12/12 10:00 pm)

Resources

Books

MIPS and SPIM

SPIM is a simulator written by James Larus for the MIPS-II ISA, a real-world processor architecture that is a very clean RISC design.

ML

Improved Canonicaliser

Appel provides a module of code for the Tiger-compiler project called the "canonicaliser," which lowers a program in the IR language to a form closer to machine code. This code is hard to read, as the invariants of the lowered/canonicalised form are not expressed in the type of the result form. Well, and the code isn't commented, either.

I rewrote this code using a target data type that makes the new form explicit in the type structure. It is much clearer (as well as voluminously commented). It also has a better commutativity analysis.

The code comes in two forms. The first version is exactly as described above. Then I took that, and converted the improved code to use the original IR data type for the target, producing a version that is a drop-in replacement for Appel's code.

So, read the first version but use the second.