10 KiB
Translation Verification of the OCaml pattern matching compiler
TODO
Scaletta [1/2]
- Abstract
-
Background
[20%]
- Ocaml
-
Lambda code
[0%]
- Untyped lambda form
- OCaml specific instructions
-
Pattern matching
[50%]
- Introduzione
- Compilation to lambda form
- Translation Verification
- Symbolic execution
-
Translation verification of the Pattern Matching Compiler
-
Source translation
- Formal Grammar
- Compilation of source patterns
-
Target translation
- Formal Grammar
- Symbolic execution of the lambda target
- Equivalence between source and target
- Practical results
-
1. Background
1.1 OCaml
Objective Caml (OCaml) is a dialect of the ML (Meta-Language) family of programming languages. OCaml shares many features with other dialects of ML, such as SML and Caml Light, The main features of ML languages are the use of the Hindley-Milner type system that provides many advantages with respect to static type systems of traditional imperative and object oriented language such as C, C++ and Java, such as:
- Parametric polymorphism: in certain scenarios a function can accept more than one
type for the input parameters. For example a function that computes the lenght of a list doesn't need to inspect the type of the elements of the list and for this reason a List.length function can accept list of integers, list of strings and in general list of any type. Such languages offer polymorphic functions through subtyping at runtime only, while other languages such as C++ offer polymorphism through compile time templates and function overloading. With the Hindley-Milner type system each well typed function can have more than one type but always has a unique best type, called the principal type. For example the principal type of the List.length function is "For any a, function from list of a to int" and a is called the type parameter.
- Strong typing: Languages such as C and C++ allow the programmer to operate on data
without considering its type, mainly through pointers. Other languages such as C# and Go allow type erasure so at runtime the type of the data can't be queried. In the case of programming languages using an Hindley-Milner type system the programmer is not allowed to operate on data by ignoring or promoting its type.
- Type Inference: the principal type of a well formed term can be inferred without any
annotation or declaration.
- Algebraic data types: types that are modelled by the use of two
algebraic operations, sum and product. A sum type is a type that can hold of many different types of objects, but only one at a time. For example the sum type defined as A + B can hold at any moment a value of type A or a value of type B. Sum types are also called tagged union or variants. A product type is a type constructed as a direct product of multiple types and contains at any moment one instance for every type of its operands. Product types are also called tuples or records. Algebraic data types can be recursive in their definition and can be combined. Moreover ML languages are functional, meaning that functions are treated as first class citizens and variables are immutable, although mutable statements and imperative constructs are permitted. In addition to that OCaml features an object system, that provides inheritance, subtyping and dynamic binding, and modules, that provide a way to encapsulate definitions. Modules are checked statically and can be reificated through functors.
TODO
1.2 Pattern matching [37%]
- capisci come mettere gli esempi uno accanto all'altro
Pattern matching is a widely adopted mechanism to interact with ADT. C family languages provide branching on predicates through the use of if statements and switch statements. Pattern matching is a mechanism for destructuring and analyzing data structures for the presence of values simbolically represented as tokens. One common example of pattern matching is the use of regular expressions on strings. OCaml provides pattern matching on ADT, primitive data types.
- Esempio enum, C e Ocaml
type color = | Red | Blue | Green
begin match color with
| Red -> print "red"
| Blue -> print "red"
| Green -> print "red"
OCaml provides tokens to express data destructoring
- Esempio destructor list
begin match list with
| [ ] -> print "empty list"
| element1 :: [ ] -> print "one element"
| element1 :: element2 :: [ ] -> print "two elements"
| head :: tail-> print "head followed by many elements"
- Esempio destructor tuples
begin match tuple with
| (Some _, Some _) -> print "Pair of optional types"
| (Some _, None) -> print "Pair of optional types, last null"
| (None, Some _) -> print "Pair of optional types, first null"
| (None, None) -> print "Pair of optional types, both null"
Pattern clauses can make the use of guards to test predicates and variables can be binded in scope.
- Esempio binding e guards
begin match token_list with
| "switch"::var::"{"::rest ->
| "case"::":"::var::rest when is_int var ->
| "case"::":"::var::rest when is_string var ->
| "}"::[ ] -> stop ()
| "}"::rest -> error "syntax error: " rest
- Un altro esempio con destructors e tutto i lresto
In general pattern matching on primitive and algebraic data types takes the following form.
- Esempio informale
It can be described more formally through a BNF grammar.
- BNF
- Come funziona il pattern matching?
TODO 1.2.1 Pattern matching compilation to lambda code
- Da tabella a matrice
Formally, pattern are defined as follows:
pattern ::= | Patterns |
---|---|
_ | wildcard |
x | variable |
c(p₁,p₂,…,pₙ | constructor pattern |
(p₁| p₂) | or-pattern |
Values are defined as follows:
values ::= | Values |
---|---|
c(v₁, v₂, …, vₙ) | constructor value |
The entire pattern matching code can be represented as a clause matrix that associates rows of patterns (pi,1, pi,2, …, pi,n) to lambda code action lⁱ
\begin{equation*} (P → L) = \begin{pmatrix} p_{1,1} & p_{1,2} & \cdots & p_{1,n} → l₁ \\ p_{2,1} & p_{2,2} & \cdots & p_{2,n} → l₂ \\ \vdots & \vdots & \ddots \vdots → \vdots \\ p_{m,1} & p_{m,2} & \cdots & p_{m,n} → lₘ \end{pmatrix} \end{equation*}Most native data types in OCaml, such as integers, tuples, lists, records, can be seen as instances of the following definition
type t = Nil | One of int | Cons of int * t
that is a type t with three constructors that define its complete signature. Every constructor has an arity. Nil, a constructor of arity 0, is called a constant constructor.
The pattern p matches a value v, written as p ≼ v, when one of the following rules apply
_ | ≼ | v | |
x | ≼ | v | |
(p₁ |\ p₂) | ≼ | v | iff p₁ ≼ v or p₂ ≼ v |
c(p₁, p₂, …, pₐ) | ≼ | c(v₁, v₂, …, vₐ) | iff (p₁, p₂, …, pₐ) ≼ (v₁, v₂, …, vₐ) |
(p₁, p₂, …, pₐ) | ≼ | (v₁, v₂, …, vₐ) | iff pᵢ ≼ vᵢ ∀i ∈ [1..a] |
We can also say that v is an instance of p.
When we consider the pattern matrix P we say that the value vector \vv{v} = (v₁, v₂, …, vᵢ) matches the line number i in P if and only if the following two conditions are satisfied:
- \[ p_{i,1} & p_{i,2} & \cdots & p_{i,n} \] ≼ (v₁, v₂, …, vᵢ)
- \[ ∀j < i p_{j,1} & p_{j,2} & \cdots & p_{j,n} \] ⋠ (v₁, v₂, …, vᵢ)
We can define the following three relations with respect to patterns:
- Patter p is less precise than pattern q, writtens p ≼ q when all instances of q are instances of p
- Pattern p and q are equivalent, written p ≡ q, when their instances are the same
- Patterns p and q are compatible when they share a common instance
1.2.1.1 Initial state of the compilation
Given a source of the following form:
match x with
| p₁ -> e₁
| p₂ -> e₂
...
| pₘ -> eₘ
the initial input of the algorithm consists of a vector of variables \vv{x} = (x₁, x₂, …, xₙ) of size n and a clause matrix P → L of width n and height m.
\begin{equation*} (P → L) = \begin{pmatrix} p_{1,1} & p_{1,2} & \cdots & p_{1,n} → l₁ \\ p_{2,1} & p_{2,2} & \cdots & p_{2,n} → l₂ \\ \vdots & \vdots & \ddots \vdots → \vdots \\ p_{m,1} & p_{m,2} & \cdots & p_{m,n} → lₘ \end{pmatrix} \end{equation*}