Stephen A. Edwards Columbia University Crown
  COMS W4115
Programming Languages and Translators
Fall 2011

Lectures

Class meets 4:10 - 5:25 PM Mondays and Wednesdays in 501 Northwest Corner Building.

Staff

Name Email Office Hours
Prof. Stephen A. Edwards sedwards@cs.columbia.edu M 3-4, Th 2-3, 462 CSB
Xiaowei Zhang xz2242@columbia.edu M 12-1, W 12-1, TA Room, 1st floor Mudd
Feng Zhou fz2168@columbia.edu Wednesday 2-4, TA Room, 1st floor Mudd
Yi Zhang yz2360@columbia.edu Friday 2-4, TA Room, 1st floor Mudd

Overview

The goal of PLT is to teach you both about the structure of computer programming languages and the basics of implementing compilers for such languages.

The course will focus mostly on traditional imperative and object-oriented languages, but will also cover functional and logic programming, concurrency issues, and some aspects of scripting languages. Homework and tests will cover language issues. You will design and implement a language of your own design in a semester-long group project.

While few of you will ever implement a full commercial compiler professionally, the concepts, techniques, and tools you will learn have broad application.

Prerequisites

COMS W3157 Advanced Programming: You will be dividing into teams to build a compiler, so you need to have some idea how to keep this under control. Quick test: you need to know about Makefiles and source code control systems.

COMS W3261 Computability and Models of Computation: You will need an understanding of formal languages and grammar to build the parser and lexical analyzer. Quick test: you must know about regular expressions, context-free grammars, and NFAs.

Schedule

Date Lecture Notes Reading Due
September 7 Intro. to Languages pdf Ch. 1, 2
September 12 The C Language Reference Manual pdf
September 14 Introduction to O'Caml pdf
September 19 "
September 21 "
September 26 Language Processors pdf Ch. 2
September 28 Syntax and Parsing pdf Ch 3, 4 Proposal
October 3 "
October 5 "
October 10 Getting it right pdf
October 12
October 17 HW1 pdf
October 19 Ocamlyacc and ASTs pdf Ch. 4, 5
October 24 Names, Scope, and Bindings pdf Ch. 6
October 26 The MicroC Compiler pdf App. A HW2 pdf
October 31 Midterm review pdf LRM
November 2 Midterm
November 7 Election Day Holiday
November 9 Types pdf Ch. 6
November 14 "
November 16 Control-flow pdf Ch. 6
November 21 "
November 23 Code Generation pdf Ch. 6, 7, 8
November 24-25 Thanksgiving Holiday
November 28 Logic Programming pdf
November 30 The Lambda Calculus pdf HW3 pdf
December 5 Parallel Programming in OpenMP and Java pdf
December 7 Review for final pdf
December 12 Final Exam
December 22 Project reports due

Required Text

Alfred V. Aho, Monica Lam, Ravi Sethi, and Jeffrey D. Ullman.
Compilers: Principles, Techniques, and Tools.
Addison-Wesley, 2006. Second Edition.

The first edition was long the standard text on compilers; the second edition of the ``dragon book'' has now been updated and continues to be one of the more readable books on the topic. Columbia's own Prof. Al Aho is one of the authors.

Cover of the Dragon Book 2nd edition

Related Texts

Michael L. Scott.
Programming Language Pragmatics
Morgan Kaufmann, 2006. Second Edition.

A broad-minded book about languages in general, but has less on practical details of compiler construction.

Cover of Programming Language Pragmatics 2nd edition

Andrew W. Appel.
Modern Compiler Implementation in ML.
Cambridge University Press, 1998.

The opposite of Scott: focuses on compiler construction, not language design issues.
It uses the functional language ML, which is closely related to O'Caml, but just different enough to be annoying.

Cover of Appel

Lawrence C. Paulson
ML for the Working Programmer.
Cambridge University Press, 1996. Second edition.

A book about functional programming. It's written for the ML language, not O'Caml, but the two are closely related.

Cover of Paulson

Steven S. Muchnick
Advanced Compiler Design and Implementation.
Morgan Kaufmann, 1997.

A very extensive book on many aspects of compiler design. Starts about halfway through Appel and goes much farther. Recommended for serious compiler hackers only.

Cover of Muchnick

Objective Caml Resources

webpage The Caml Language Homepage. Compiler downloads and documentation. Start here.
webpage The Objective Caml System. Documentation and User's Manual for the whole system, including documentation for ocamllex, ocamlyacc, ocamldep, ocamldebug, and all the standard libraries.
PDF file Jason Hickey, Introduction to Objective Caml. One of my favorite books on O'Caml.
webpage Emmanuel Chailloux, Pascal Manoury, and Bruno Pagano, Developing Applications with Objective Caml. An online book translated from the French (O'Reilly).
webpage Objective CAML Tutorial
.tar.gz file O'Caml source for the four-function calculator.
.tar.gz file O'Caml source and test cases for the microc language.

The Project

The focus of 4115 is the design and implementation of a little language. You will divide into teams and design the goals, syntax, and semantics of your language, and implement a compiler for your language.

Exception: CVN students will do the project individually.

Final Report Outline

This is a critical part of the project and will be a substantial fraction of the grade.

Include the following sections:

  1. Introduction
  2. Language Tutorial
  3. Language Manual
  4. Project Plan
  5. Architectural Design
  6. Test Plan
  7. Lessons Learned
  8. Appendix

Project Resources

pdf A two-page introduction to the CVS version control system. I strongly suggest you keep your project under some version control system.
pdf A sample final report by Chris Conway, Cheng-Hong Li, and Megan Pengelly. It includes the white paper, tutorial, language reference manual, project plan, architectural design, and testing plan. It does not include the lessons learned and code listings sections, although it should.

White Papers

pdf The Java white paper from Sun Microsystems
webpage C# Introduction and Overview

Language Reference Manuals

pdf Dennis M. Ritchie, C Reference Manual
pdf Kernighan & Ritchie, The C Programming Language
pdf The C Language Reference Manual (DEC)
pdf The C Language Reference Manual (SGI)
pdf The C Language Reference Manual (Microsoft)
pdf Stroustrup, The C++ Programming Language
pdf The Java Language Specification
pdf The C# Language Specification
home Aho, Kernighan, and Weinberger, The AWK Programming Language

This Term's Projects

LSystem: L-System Fractal Generator (XZ) star
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Michael Eng    Jervis Muindi    Timothy Sun    Ethan Hann   
COLOGO: COLOGO A Graph Language (XZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    Powerpoint fileSlides    Compressed Tar ArchiveProject Files   
Lixing Dong    Siyuan Lu    Chao Song    Zhou Ma    Dongyang Jiang   
MAPMe: Mapping Application Programming language Made for Everyone (XZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    XML-based Powerpoint fileSlides   
Changyu Liu    Jonecia Keels    Eric Ellis    Denelle Baptiste   
moveIt: animation language (XZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Zip ArchiveProject Files   
Thomas Rantasa    Chengchen Sun    Benjamin Kornacki   
PaCaml: Game language (FZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Chun-Kang Chen    Hui-Hsiang Kuo    Shuwei Cao    Wenxin Zhu   
DesCartes: DesCartes language (FZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Eric Chao    Susan Fung    James Huang    Xiaocheng Shi   
CLAM: The Concise Linear Algebra Manipulation Language (FZ) star
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Jeremy Andrus    Robert Martin    Kevin Sun    Yongxu Zhang   
NumLang: Matlab-like language (FZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Siddhi Mittal    Sahil Yakhmi    Damien Fenske-Corbiere    Daniel Aprahamian   
PDFml: A PDF Manipulation Language (SE)
PDF fileLRM   
Lingshi Huang    Miriam Melnick    Patrick McGuire   
AGRAJAG: A Graph Jargon (YZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Zachary Salzbank    Erica Sponsler    Nathaniel Weiss   
Setup: A Language for Operating on Sets (YZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Adam Weiss    Andrew Ingraham    Ian Erb    William Warner   
TML: Tree Manipulating Language (YZ)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Jiabin Hu    Akash Sharma    Shuai Sun    Yan Zou   
EHDL: Easy hardware description language (SE) star
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Paolo Mantovani    Mashooq Muhaimen    Neil Deshpande    Kaushik Kaul   
YAPPL: Yet another probabilistic programming language (SE) star
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
David Hu    Jonathan Huggins    Hans Hyttinen    Harley McGrew   
strlang: Simple String Language (SE) star
PDF fileProposal    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Dara Hazeghi   
Lattakia: Lattice Kiaugh (SE)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Hebatallah ElFardy    Wael Salloum    Katherine Scott    YIFAN LI   
RT: Return of the Table: A language for manipulating relational database tables (SE)
PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Jared Pochtar    Michael Vitrano   
LaMesa: A language for manipulating relational database tables (SE)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    Compressed Tar ArchiveProject Files   
Charles Williamson   
MR: MapReduce Programming Language (SE)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    PDF fileSlides    Compressed Tar ArchiveProject Files   
Siyang Dai    Zhi Zhang    Shuai Yuan    Zeyang Yu    Jinxiong Tan   
ship: A Little Logistics Language (SE)
PDF fileProposal    PDF fileLRM    PDF fileFinal Report    Zip ArchiveProject Files   
Alexander Kamil   

star My favorites

Grading

40 % Project
20 % Midterm
30 % Final
10 % Homework

Collaboration

You will collaborate with your own small group on the programming project, but you may not collaborate with others on homeworks. Groups may share ideas about the programming assignments, but not code. Any two groups found submitting similar code will receive zero credit for the whole assignment, and repeat offenses will be referred to the dean. See the Columbia CS department academic policies for more details.

Other

Valid HTML 4.01 Valid CSS

CVN faculty center