Is there a programmatic way to detect whether or not you are on a big-endian or little-endian architecture? I need to be able to write code that will execute on an Intel or PPC system and use exactly the same code (i.e. no conditional compilation).
|
7
|
|||||||
|
|
|
I don't like the method based on type punning - it will often be warned against by compiler. That's exactly what unions are for !
The principle is equivalent to the type case as suggested by others, but this is clearer - and according to C99, is guaranteed to be correct. gcc prefers this compared to the direct pointer cast. This is also much better than fixing the endianness at compile time - for OS which support multi-architecture (fat binary on Mac os x for example), this will work for both ppc/i386, whereas it is very easy to mess things up otherwise. |
||||||||||
|
|
|
You can do it by setting an int and masking off bits, but probably the easiest way is just to use the built in network byte conversion ops (since network byte order is always big endian).
Bit fiddling could be faster, but this way is simple, straightforward and pretty impossible to mess up. |
||||||||||
|
|
|
Please see this article:
|
||||||||||||
|
|
|
Declare an int variable:
Now use char* pointers to various parts of it and check what is in those parts.
Depending on which one points to 0xFF byte now you can detect endianness. This requires sizeof( int ) > sizeof( char ), but it's definitely true for the discussed platforms. |
|||
|
|
|
|
Unless you're using a framework that has been ported to PPC and Intel processors, you will have to do conditional compiles, since PPC and Intel platforms have completely different hardware architectures, pipelines, busses, etc. This renders the assembly code completely different between the two. As for finding endianness, do the following:
You will either get tempChar to be 0x12 or 0x34, from which you will know the endianness. |
||||||||
|
|
|
This is normally done at compile time (specially for performance reason) by using the header files available from the compiler or create your own. On linux you have the header file "/usr/include/endian.h" |
||
|
|
|
|
I would do something like this:
Along these lines, you would get a time efficient function that only does the calculation once. |
|||
|
|
|
|
See Endianness - C-Level Code illustration.
|
||
|
|
|
|
|
||
|
|
|
|
How about this?
|
||
|
|
|
|
What operations are you planning on doing where endianness makes a difference? All standard arrithmetic, array manipulation etc. operations will be portable across the different architectures, as the differences will be taken care of for you by the different platform's compilers. |
||
|
|
|
|
For further details, you may want to check out this codeproject article Basic concepts on Endianness:
|
||
|
|
|
|
You can also do this via the preprocessor using something like boost header file which can be found boost endian |
||
|
|
|
|
Here's another C version. It defines a macro called
If integers are single-byte values, endianness makes no sense and a compile-time error will be generated. |
||
|
|
|
|
I surprised no-one has mentioned the macros which the pre-processor defines by default. While these will vary depending on your platform; they are much cleaner than having to write your own endian-check. For example; if we look at the built-in macros which GCC defines (on an X86-64 machine):
On a PPC machine I get:
(The |
||
|
|
|
|
Dave, the reason is that it is not standard (ISO 14882), don't expect it to be supported by every compiler. For example, it does not exist on the mingw version of gcc, nor on the Microsoft C++ compiler. |
||
|
|
