What is trap representation in C (some examples might help)? Does this apply to C++?
float f=3.5; int *pi = (int*)&f;- Edit: I know 'pi' violates aliasing rule and it is UB according to C standard. Atleast on GCC it produces no errors, but warnings. In this implementation (i.e., GCC), assuming
sizeof(int) == sizeof(float)dofand*pihave the same binary representation/pattern? What about MSVC?
|
| ||||
|
feedback
|
| |||||||||||
feedback
|
|
Undefined behaviour to alias a float with a pointer-to-int. | |||||||
feedback
|
|
In general, any non-trap IEEE-754 floating point value can be represented as an integer on some platforms without any issue. However, there are floating point values that can result in unexpected behavior if you assume that all floating point values have a unique integer representation and you happen to force the FPU to load that value. (Example taken from http://www.dmh2000.com/cpp/dswap.shtml) For instance, when working with FP data you need to marshal between CPUs with different endianness, you might think of doing the following:
Unfortunately, if the compiler loads the input into an FPU register and it's a trap representation, the FPU can write it back out with an equivalent trap representation that happens to be a different bit representation. In other words, there are some FP values that do not have a corresponding bit representation if you don't convert correctly (by correct I mean through a | |||
|
feedback
|