Why is GHC's Int type not guaranteed to use exactly 32 bits of precision? This document claim it has at least 30-bit signed precision. Is it somehow related to fitting Maybe Int or similar into 32-bits?
|
It is to allow implementations of Haskell that use tagging. When using tagging you need a few bits as tags (at least one, two is better). I'm not sure there currently are any such implementations, but I seem to remember Yale Haskell used it. Tagging can somewhat avoid the disadvantages of boxing, since you no longer have to box everything; instead the tag bit will tell you if it's evaluated etc. |
|||
|
|
|
I think this is because of early ways to implement GC and all that stuff. If you have 32 bits available and you only need 30, you could use those two spare bits to implement interesting things, for instance using a zero in the least significant bit to denote a value and a one for a pointer. Today the implementations don't use those bits so an |
|||
|
|
|
The Haskell language definition states that the Int type has to be at least 28 bits wide. There are other compilers/interpreters that use this property to boost the execution time of the resulting program. The runtime systems of functional programming languages usually use a graph-reduction method to evaluate/run the program. The graph/program consists of many many little garbage-collectable objects with pointers to other objects, to code, and to data. Instead of only referencing an Int, it could speed up to directly store that Int instead of the pointer to it. But within that pointer some unused bits are usually abused to flag properties for garbage collection and/or lazy evaluation; it would be too space and time(!) consuming to load and store these two or three bits in additional 32bit of every object. In other (functional) languages, these bits are usually (ab-)used to store dynamic types. |
|||
|
|
Int32type inData.Int. – hammar Oct 16 '11 at 19:36Prelude.maxBound :: Intshould be around 2^63 – Ed'ka Oct 17 '11 at 2:53