vote up 2 vote down star

In my C++ program, I need to pull a 64 bit float from an external byte sequence. Is there some way to ensure, at compile-time, that doubles are 64 bits? Is there some other type I should use to store the data instead?

Edit: If you're reading this and actually looking for a way to ensure storage in the IEEE 754 format, have a look at Adam Rosenfield's answer below.

flag

Exactly what are you doing? Are you looking for a completely portable way to take eight bytes and interpret them as an IEEE-standard 64-bit floating-point number? – David Thornley Apr 15 at 16:19
@David: Yes, that's exactly what I'm doing. I'd found something somewhere that said C++ floats and doubles were in the IEEE-754 format. I wasn't sure whether doubles always used the same precision and wanted to add a check for it. – Whatsit Apr 15 at 16:37
Now I'm not sure that my original information was correct. What's the convention here? Should I delete this question and add another asking about conversion from IEEE-754? – Whatsit Apr 15 at 16:40
IIUC: 1) IEEE 754 is not guaranteed by the standard (otherwise, I fail to see the point for std::numeric_limits::is_iec559) 2) is_iec559 == true does not guarantee a binary representation. – Éric Malenfant Apr 15 at 16:53
Eric: numeric_limits::is_iec559 exists because numeric_limits is designed to be extensible, and, for example, there might be a numeric_limits<BigFloat> specialization for a user-defined BigFloat type for which is_iec559==false. However, you're right that built-in floats might not be IEEE 754. – Iraimbilanja Apr 15 at 18:39

7 Answers

vote up 5 vote down check

An improvement on the other answers (which assume a char is 8-bits, the standard does not guarantee this..). Would be like this:

char a[sizeof(double) * CHAR_BIT == 64];

or

BOOST_STATIC_ASSERT(sizeof(double) * CHAR_BIT == 64);

You can find CHAR_BIT defined in <limits.h> or <climits>.

link|flag
This incorrectly assumes that a char is as big as a byte. – Iraimbilanja Apr 16 at 6:51
1  
um, no, it does not at all. sizeof returns in units of chars. CHAR_BIT is defined as the number of bits per char. multiply sizeof(x) by CHAR_BIT and you have exactly how many bits x is. – Evan Teran Apr 16 at 9:52
1  
Also, since CHAR_BIT is inhertied from c, the rules of c apply: to quote the C99 draft standard (section 6.2.6.1p3): "Values stored in objects of any other object type consist of n x CHAR_BIT bits, where n is the size of an object of that type, in bytes." – Evan Teran Apr 16 at 11:50
1  
Finally, from that SAME paragraph you quoted: "sizeof(char), sizeof(signed char) and sizeof(unsigned char) are 1;" if sizeof(char) == 1 and sizeof by definition returns in units of bytes. then that means that a char is the same size as a byte. However, a byte need not be 8-bits. – Evan Teran Apr 16 at 11:55
1  
I stand corrected. – Iraimbilanja Apr 16 at 20:30
show 3 more comments
vote up 1 vote down

Check std::numeric_limits< double >::is_iec559 if you need to know whether your C++ implementation supports standard doubles. This guarantees not only that the total number of bits is 64, but also the size and position of all fields inside the double.

link|flag
vote up 4 vote down

In C99, you can hust check if the preprocessor symbol __STDC_IEC_559__ is defined. If it is, then you are guaranteed that a double will be an 8-byte value represented with IEEE 754 (also known as IEC 60559) format. See the C99 standard, Annex F. I'm not sure if this symbol is available in C++, though.

#ifndef __STDC_IEC_559__
#error "Requires IEEE 754 floating point!"
#endif

Alternatively, you can check the predefined constants __DBL_DIG__ (should be 15), __DBL_MANT_DIG__ (should be 53), __DBL_MAX_10_EXP__ (should be 308), __DBL_MAX_EXP__ (should be 1024), __DBL_MIN_10_EXP (should be -307), and __DBL_MIN_EXP__ (should be -1021). These should be available in all flavors of C and C++.

link|flag
This is an even better solution than I'd hoped for. Accepted Evan's answer, though, since it answers the question as it exists. I just asked the wrong question. – Whatsit Apr 15 at 22:37
vote up 0 vote down

See this post for a similar problem and a non-boost compile time assertion called CCASSERT.

link|flag
vote up 6 vote down

I don't think you should focus on the "raw size" of your double (which is generally 80 bit, not 64 bit), but rather on its precision.

Thanks to numeric_limits::digits10 this is fairly easy.

link|flag
80 bit doubles are an Intel-ism, and true only if the FPU is actually in 80-bit mode (there's also 64-bit mode)... – DevSolar Apr 15 at 18:45
I know, but nevertheless... – Edouard A. Apr 16 at 12:20
And even 32-bit mode depending on how you initialize Direct3D. – Cecil Has a Name Sep 16 at 12:42
vote up 4 vote down

You can use the Boost static assertions to do this. Look at the Use at namespace scope example.

link|flag
vote up 4 vote down

The solution without boost is to define the array like so

char a[ 8 == sizeof(double) ];

If the double is not 64 bits then the code will looks like

char a[0];

which is an compile time error. Just put the appropriate comment near this instruction.

link|flag
a byte isn't guaranteed to be 8-bits – Evan Teran Apr 15 at 15:49
@Evan: Interesting point. Add "&& (unsigned char) 255 == 255 && (unsigned char) 256 == 0" to the condition to check that chars are 8 bits. – j_random_hacker Apr 15 at 16:12
1  
What about the case when the size of the double is 16 byte, but the byte consist of 4 bits? – Mykola Golubyev Apr 15 at 16:21
@j_random_hacker: better yet add "&& CHAR_BIT == 8" since CHAR_BIT is defined as the number of bits per char/unsigned char. – Evan Teran Apr 15 at 18:05
1  
or better yet "sizeof(double) * CHAR_BIT == 64" – Evan Teran Apr 15 at 18:08
show 3 more comments

Your Answer

Get an OpenID
or

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