Schedule
Table of Contents
Week 1: Basics
TUE 01-21 Lecture 1
- Title: Course Introduction
- Topics:
- Discuss the course structure, expectations, etc.
- Briefly talk about Rust
- Install Rust and Cargo
- Set up our first Cargo project
- Reading:
- Syllabus
- The Rust Programming Language (RPL): Forward
- RPL: Introduction
- RPL 1: Getting Started
- Course Notes (CN) 1: What is this course?
- CN 2: Set up
- Discussion Questions:
- Why are you taking this course? What do you want to get out of it?
- Have you heard of Rust before this course?
- Do you like using a low-level programming language like C?
THU 01-23 Lecture 2
- Title: Basic Programming
- Topics:
- Reminder ourselves how to read BNF grammars
- Do some "normal" programming with Rust
- Look more carefully at the grammar of Rust
- Reading:
- RPL 2: Programming a Guessing Game
- RPL 3: Common Programming Concepts
- CN 3: The Basics
- PL@BU 2: Formal Grammar
- Discussion Questions:
- How well does Python or C++ programming transfer to basic Rust programming? Do you feel you could write any program on integers in Rust that you could already write in Python? Why or why not?
- One somewhat strange feature of Rust's parser is that it allows trailing commas. Why do you think this is?
- Are there features you wish Rust had? Are there features it has (that we've seen so far) that you don't like?
Week 2: Ownership
TUE 01-28 Lecture 3
- Title: The Stack and Heap
- Topics:
- Determine the role of the stack and the heap in a systems PL, and how these things affect how we use Rust
- Look at a couple ways of managing memory
- Reading:
- RPL 4.1: What is Ownership?
- CN 4.1: Stack and Heap
- Discussion Questions:
- Why do we have to know the size of data that will be put on the stack at compile time?
- What are the benefits of Rust's ownership model over automatic reference counting? What are the downsides?
- What about the tradeoffs between reference counting and garbage collection?
THU 01-30 Lecture 4
- Title: References and Borrowing
- Topics:
- Look more carefully at Rust's borrow system
- See some examples of things we can't do according to Rust's borrow checker
- Reading:
- RPL 4.2: References and Borrowing
- Discussion Questions:
- How do references relate to pointers?
- Is it worthwhile to enforce a single mutable reference if you aren't interested in concurrency?
- How might you think of visualizing ownership and borrowing? (There are a couple existing tools to do this, but I think there's still room for improvement.)
Week 3: Data
TUE 02-04 Lecture 5
- Title: Structures and Enumerations
- Topics:
- Cover structures (product types) and enumerations (union types) in Rust
- Look at how Rust's borrow system interacts with more complex data
- Reading:
- RPL 5: Using Structs to Structure Related Data
- PRL 6: Enums and Pattern Matching
- RPL 18: Patterns and Matching
- Discussion Questions (from Piazza):
- What is the difference between matching-expressions and nested if-expressions? What are the tradeoffs?
- How are enumerations and structures laid out in memory?
- Is it possible to define structures with immutable fields?
- When should a structure store it's own data or references to other data?
THU 02-06 Lecture 6
- Title: Collections and Slices
- Topics:
- Cover vectors and hash maps in Rust (they are very similar to data structures in other PLs, modulo the interaction with the borrow system)
- Reading:
- RPL 4.3: The Slice Type
- RPL 8: Common Collections
- Discussion Questions (from Piazza):
- How does string concatenation work? What does
push_str
do and who owns what data after it's called? - Why does Rust implement deref coercion?
- It is possible to replace a value in a vectors and take ownership of the original value?
- How does string concatenation work? What does
Week 4: Functions
TUE 02-11 Lecture 7
- Title: Generics and Traits
- Topics:
- Look at how to write polymorphic functions with generics
- Learn how to restrict generic using traits to write general code against an explicit interface
- Reading:
- RPL 10.1: Generic Data Types
- RPL 10.2: Traits: Defining Shared Behavior
- Discussion Question (from Piazza):
- Does using generics impact performance?
- What are the differences between the different trait parameter syntax?
- How are traits different from interfaces?
THU 02-13 Lecture 8
- Title: Closures and Iterators
- Topics:
- Anonymous functions in Rust which capture their environment
- Iterators as a "zero-overhead abstraction" for processing collections of data
- Reading:
- Discussion Questions (from Piazza)
- Are there safety/performance advantages to using iterators versus loops?
- Can we define polymoprhic closures? Why or why not?
- When do we need explicit type annotations on closures?
Week 5: Lifetimes
THU 02-20 Lecture 9
- Title: Lifetimes
- Topics:
- Define lifetimes and determine when we need explicit lifetime annotations
- Discuss the relationship between lifetimes and references
- Reading:
- RPL 10.3: Validating References with Lifetimes
- Rustonomicon:
- 3.2: Aliasing
- 3.3: Lifetimes
- 3.4: Limits of Lifetimes
- 3.5: Lifetime Elision
- Discussion Questions (from Piazza):
- Do lifetime annotations have any effects on efficienty/safety? Do they provide additional functionality?
- How do lifetimes affect the type theory of Rust?
Week 6: Smart Pointers
TUE 02-25 Lecture 10
- Title: Boxes and Recursive Data
- Topics:
- Boxes and Type Layouts
- Using the
Deref
trait to simplify working with boxed data
- Reading:
- RPL 15.1: Using
Box<T>
to Point to Data on the Heap - RPL 15.2: Treating Smart Pointers Like Regular References with the
Deref
Trait - Rustonomicon 2.1: repr(Rust)
- The Rust Reference 10.3: Type Layout
- RPL 15.1: Using
- Discussion Questions (from Piazza):
- When do we not use a Box?
- Why doesn't Rust automatically box data for recursive data types?
- Can we define circular data structures with boxes?
THU 02-27 Lecture 11
- Title: Reference Counting and Internal Mutability
- Topics:
- Reading:
- RPL 15.4:
Rc<T>
, the Reference Counted Smart Pointer - RPL 15.5:
RefCell<T>
and the Interior Mutability Pattern - RPL 15.6: Reference Cycles Can Leak Memory
- RPL 15.4:
- Discussion Questions (from Piazza):
- Is it possible to create a circular reference without
RefCell<T>
? - What exactly does "safe" and "unsafe" mean?
- Why do we have both
Arc<T>
andRc<T>
in Rust? Why not just implement reference counting atomically for all use cases?
- Is it possible to create a circular reference without
Week 7: Midterm
TUE 03-04 Lecture 12
- Title: Primer on Concurrency (+ Midterm Prep)
- Topics:
- Look very briefly at how Rust handles message-passing concurrency and shared-state concurrency
- Reading:
- RPL 16: Fearless Concurrency
THU 03-06 Midterm Exam
Week 8: Theory
TUE 03-18 Lecture 13
- Title: Primer on Proof/Type Theory
- Topics:
- Introduce the notion of a formal system and its use in defining proof/type systems
- Show how to prove meta-theoretic properties about proof/type systems
- Discuss the Curry-Howard isomorphism, a deep connection between proof theory and type theory (that allows us to think of them as essentially the same thing)
- Reading:
- An Introduction to Proof Theory (pg. 1-5, 10-18, 64-70)
- A taste of linear logic (§1-3)
- Optional: Proof Theory (SEP)
THU 03-20 Lecture 14
Week 9: Interpreters
TUE 03-25 Lecture 15
THU 03-27 Lecture 16
- Title: Featherweight Rust: An Introduction
- Topics:
- Introduce featherweight rust (FR), the system we will study for the remainder to the course
- Motivate the design of the system
- Discuss fuzz testing as an application of building interpreters
- Reading:
- A Lightweight Formalism for Reference Lifetimes and Borrowing in Rust (LFR) (pg. 1-14, 36-40)
Week 10: FR Semantics
TUE 04-01 Lecture 17
- Title: Featherweight Rust: Small-Step Semantics
- Topics:
- Introduce the small-step semantics of FR
- Focus on the mathematical structures we need to define this system
- Reading:
- LFR (pg. 14-19)
Week 11: FR Borrow Checking
TUE 04-08 Lecture 19
- Title: Featherweight Rust: Type and Borrow System
- Topics:
- Introduce the flow-sensitive type/borrow system of FR
- Focus on the mathematical structures we need to define this system
- Reading:
- LFR (pg. 19-27)
Week 12: FR Extensions
TUE 04-15 Lecture 21
- Title: Featherweight Rust: Extensions
- Topics:
- Look at some of the things we can add FR to make it more "realistic"
- Look briefly at other systems similar to FR
- Reading:
- LFR (pg. 40-52)
Week 13: FR Soundness I
TUE 04-22 Lecture 23
- Title: Featherweight Rust: Progress and Preservation
- Topics:
- Prove progress and preservation for FR
- Discuss how to "read between the lines" when reading academic white-paper proofs
- Reading:
- LFR (pg. 27-31, 62-67)
Week 14: FR Soundness II
TUE 04-29 Lecture 25
- Title: Featherweight Rust: Type and Borrow Safety
- Topics: Prove type and borrow safety for FR
- Reading:
- LFR (pg. 27-31, 62-67)