Familiar: ChocoPy programs can be executed directly in a Python (3.6+) interpreter. ChocoPy programs can also be edited using standard Python syntax highlighting.
Safe: ChocoPy uses Python 3.6 typeannotations to enforce static type checking. The type system supports nominal subtyping.
Concise: A full compiler for ChocoPy be implemented in about 12 weeks by undergraduate students of computer science. This can be a hugely rewarding exercise for students.
Expressive: One can write non-trivial ChocoPy programs using lists, classes, and nested functions. Such language features also lead to interesting implications for compiler design.
Bonus: Due to static type safety and ahead-of-time compilation, most student implementations outperform the reference Python implementation on non-trivial benchmarks.
Rohan Padhye, Koushik Sen, and Paul N. Hilfinger. 2019. ChocoPy: A Programming Language for Compilers Courses. In Proceedings
of the 2019 ACM SIGPLAN SPLASH-E Symposium (SPLASH-E ’19),
October 25, 2019, Athens, Greece. ACM, New York, NY, USA, 5 pages.
https://doi.org/10.1145/3358711.3361627
The framework uses JSON as an intermediate representation for piping results between compiler stages. The framework includes auto-grading support. All artifacts are platform independent and only require Java 8+ and Apache Maven.
A modified version of the Venus simulator for executing RISC-V programs. Venus can be deployed to the web (for online debugging) or compiled to the JVM (for testing and auto-grading).
A Java-based reference compiler that compiles ChocoPy programs to auto-documented RISC-V assembly. Students have access to a binary version of this compiler, for use in debugging their own assignments. The reference compiler also powers the online examples on this web page.
These resources can be made available to instructors upon request.
Who else is using ChocoPy?
From personal communication, we have been made aware of ChocoPy being used to teach compiler construction at TU Delft (with Spoofax), at UC San Diego (targeting WebAssembly), NYU as well as Cambridge and Edinburgh. The auto-grading infrastructure was extracted for use at UCLA. The language spec was used as a reference at IIT Bombay.
Language Features
Here are some code examples demonstrating various features of ChocoPy. Edit and compile the programs below to observe the generated RISC-V assembly, which can itself be executed online. A detailed description of the ChocoPy language is available in the official language reference manual.