Skip to content
Snippets Groups Projects
Forked from Iris / POPL20 Iris Tutorial
94 commits behind the upstream repository.
user avatar
Robbert Krebbers authored
372a9a0b
History

The Iris tutorial @ POPL'20

This tutorial comes in two versions:

  • The folder exercises: skeletons of the exercises with solutions left out.
  • The folder solutions: the exercises together with their solutions.

Dependencies

For the tutorial material you need to have the following dependencies installed:

  • Coq 8.8.2 / 8.9.1 / 8.10.1
  • A development version of Iris

Note: the tutorial material will not work with earlier versions of Iris, it is important to install the exact versions as given above.

Installing Iris via opam

The easiest, and recommend, way of installing Iris and its dependencies is via the OCaml package manager opam (2.0.0 or newer). You first have to add the Coq opam repository and the Iris development repository (if you have not already done so earlier):

opam repo add coq-released https://coq.inria.fr/opam/released
opam repo add iris-dev https://gitlab.mpi-sws.org/iris/opam.git

Then you can do make build-dep to install exactly the right version of Iris.

Compiling the exercises

Run make to compile the exercises.

Overview

Introduction to Iris and the HeapLang language:

  • language.v: An introduction to Iris's HeapLang language, program specifications using weakest preconditions, and proofs of these specifications using Iris's tactics for separation logic.
  • polymorphism.v: The encoding of polymorphic functions and existential packages in HeapLang.

Syntactic typing:

  • types.v: The definition of syntactic types and the type-level substitution function.
  • typed.v: The syntactic typing judgment.

Semantic typing:

  • sem_types.v: The model of semantic types in Iris.
  • sem_typed.v: The definition of the semantic typing judgment in Iris.
  • sem_type_formers.v: The definition of the semantic counterparts of the type formers (like products, sums, functions, references, etc.).
  • sem_operators.v: The judgment for semantic operator typing and proofs of the corresponding semantic rules.
  • compatibility.v: The semantic typing rules, i.e., the compatibility lemmas.
  • interp.v: The interpretation of syntactic types in terms of semantic types.
  • fundamental.v: The fundamental theorem, which states that any syntactically typed program is semantically typed..
  • safety.v: Proofs of semantic and syntactic type safety.
  • unsafe.v: Proofs of "unsafe" programs, i.e. programs that are not syntactically typed, but can be proved to be semantically safe.
  • parametricity.v: The use of the semantic typing for proving parametricity results.

Ghost theory for semantic safety of "unsafe" programs:

Other:

  • demo.v: A simplified version of the development to the simplified case, as shown during the lecture at the POPL'20 tutorial.

Documentation

The files proof_mode.md and heap_lang.md in the Iris repository contain a list of the Iris Proof Mode tactics as well as the specialized tactics for reasoning about HeapLang programs.

If you would like to know more about Iris, we recommend to take a look at: