Unboxed types, like Int#, and strict functions, like f (!x) = ..., are something different, but I see conceptual similarity - they disallow thunks/laziness in some way. If Haskell was a strict language like Ocaml, every function would be strict and every type unboxed. What is the relationship between unboxed types and enforcing strictness?
|
|
|||||||||
|
|
Unboxed vs Boxed Data To support parametric polymorphism and laziness, by default Haskell data types are represented uniformly as a pointer to a closure on the heap, with a structure like this:
These are "boxed" values. An unboxed object is represented by the value itself directly, without any indirection or closure. Lazy values require a boxed representation. Strict values do not: they can represented either as fully evaluated closures on the heap, or as primitive unboxed structures. Note that pointer tagging is an optimization that we can use on boxed objects, to encode the constructor in the pointer to the closure. The Relationship to Strictness Normally, unboxed values are generated in an ad hoc fashion by functional language compilers. In Haskell, however, unboxed values are special. They:
Because they are unlifted they are necessarily strict. The representation of laziness is not possible. So particular unboxed types, like Strictness Analysis Separately, GHC does strictness analysis of regular Haskell types. If a value's use is found to be strict – i.e. it can never be 'undefined' – the optimizer might replace all uses of the regular type (e.g. We can of course have strict types without unboxed types, for example, an element-strict polymorphic list:
is strict in its elements, but does not represent them as unboxed values. This also points out the mistake you made about strict languages, like OCaml. They still need to support polymorphism, so either they provide a uniform representation, or they specialize data types and functions to every type. GHC by default uses uniform representation, as does OCaml, though GHC can also specialize types and functions now (like C++ templates). |
|||||||
|
|
Unboxed types are necessarily strict, but not all strict values are necessarily unboxed.
has two strict fields
has two strict fields, but the first one is unboxed. Ultimately, the reason unboxed types are (necessarily) strict is there is no place to store the thunk as they are just flat, dumb data at that point. |
||||
|
|
|
Arguments of any types can be made "strict", but the only unboxed types that have corresponding boxed types are If you know low-level languages like C, it's easier to explain. Unboxed types are like However, given an |
||||
|
|
