Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
There will be others with more details, but I think it has to do with garbage collection and laziness. A bit for "is evaluated", a bit for copied by GC. Not 100% sure though. – luqui Oct 16 '11 at 19:28
1  
If you need to have 32 bits guaranteed, there's the Int32 type in Data.Int. – hammar Oct 16 '11 at 19:36
There is no upper bound because it depends on the platform: on 64x machine Prelude.ma­xBound :: Int should be around 2^63 – Ed'ka Oct 17 '11 at 2:53

3 Answers

up vote 12 down vote accepted

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.

share|improve this answer

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 Int has at least 32 bits on GHC. (That's not entirely true. IIRC one can set some flags to have 30 or 31 bit Ints)

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.