Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When does the relaxed value restriction kick in in OCaml?

Tags:

ocaml

Can someone give a concise description of when the relaxed value restriction kicks in? I've had trouble finding a concise and clear description of the rules. There's Garrigue's paper:

http://caml.inria.fr/pub/papers/garrigue-value_restriction-fiwflp04.pdf

but it's a little dense. Anyone know of a pithier source?

An Addendum

Some good explanations were added below, but I was unable to find an explanation there for the following behavior:

# let _x = 3 in (fun () -> ref None);;
- : unit -> 'a option ref = <fun>
# let _x = ref 3 in (fun () -> ref None);;
- : unit -> '_a option ref = <fun>

Can anyone clarify the above? Why does the stray definition of a ref within the RHS of the enclosing let affect the heuristic.

like image 303
yzzlr Avatar asked Mar 22 '13 02:03

yzzlr


2 Answers

The question why the two examples given in the addendum are typed differently has puzzled me for a couple of days. Here is what I found by digging into the OCaml compiler's code (disclaimer: I'm neither an expert on OCaml nor on the ML type system).

Recap

# let _x = 3 in (fun () -> ref None);;        (*  (1)  *)
- : unit -> 'a option ref = <fun>

is given a polymorphic type (think ∀ α. unit → α option ref) while

# let _x = ref 3 in (fun () -> ref None);;    (*  (2)  *)
- : unit -> '_a option ref = <fun>

is given a monomorphic type (think unit → α option ref, that is, the type variable α is not universally quantified).

Intuition

For the purposes of type checking, the OCaml compiler sees no difference between example (2) and

# let r = ref None in (fun () -> r);;         (*  (3)  *)
- : unit -> '_a option ref = <fun>

since it doesn't look into the body of the let to see if the bound variable is actually used (as one might expect). But (3) clearly must be given a monomorphic type, otherwise a polymorphically typed reference cell could escape, potentially leading to unsound behaviour like memory corruption.

Expansiveness

To understand why (1) and (2) are typed the way they are, let's have a look at how the OCaml compiler actually checks whether a let expression is a value (i.e. "nonexpansive") or not (see is_nonexpansive):

let rec is_nonexpansive exp =
  match exp.exp_desc with
    (* ... *)
  | Texp_let(rec_flag, pat_exp_list, body) ->
      List.for_all (fun vb -> is_nonexpansive vb.vb_expr) pat_exp_list &&
      is_nonexpansive body
  | (* ... *)

So a let-expression is a value if both its body and all the bound variables are values.

In both examples given in the addendum, the body is fun () -> ref None, which is a function and hence a value. The difference between the two pieces of code is that 3 is a value while ref 3 is not. Therefore OCaml considers the first let a value but not the second.

Typing

Again looking at the code of the OCaml compiler, we can see that whether an expression is considered expansive determines how the type of the let-expressions is generalised (see type_expression):

(* Typing of toplevel expressions *)

let type_expression env sexp =
  (* ... *)
  let exp = type_exp env sexp in
  (* ... *)
  if is_nonexpansive exp then generalize exp.exp_type
  else generalize_expansive env exp.exp_type;
  (* ... *)

Since let _x = 3 in (fun () -> ref None) is nonexpansive, it is typed using generalize which gives it a polymorphic type. let _x = ref 3 in (fun () -> ref None), on the other hand, is typed via generalize_expansive, giving it a monomorphic type.

That's as far as I got. If you want to dig even deeper, reading Oleg Kiselyov's Efficient and Insightful Generalization alongside generalize and generalize_expansive may be a good start.

Many thanks to Leo White from OCaml Labs Cambridge for encouraging me to start digging!

like image 90
curiousleo Avatar answered Mar 05 '23 01:03

curiousleo


I am not a type theorist, but here is my interpretation of Garrigue's explanation. You have a value V. Start with the type that would be assigned to V (in OCaml) under the usual value restriction. There will be some number (maybe 0) monomorphic type variables in the type. For each such variable that appears only in covariant position in the type (on the right sides of function arrows), you can replace it with a fully polymorphic type variable.

The argument goes as follows. Since your monomorphic variable is a variable, you can imagine replacing it with any single type. So you choose an uninhabited type U. Now since it is in covariant position only, U can in turn be replaced by any supertype. But every type is a supertype of an uninhabited type, hence it's safe to replace with a fully polymorphic variable.

So, the relaxed value restriction kicks in when you have (what would be) monomorphic variables that appear only in covariant positions.

(I hope I have this right. Certainly @gasche would do better, as octref suggests.)

like image 20
Jeffrey Scofield Avatar answered Mar 05 '23 01:03

Jeffrey Scofield