vote up 15 vote down star
7

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).

flag
2  
For the sake of completeness, here is a link to someone else's question about trying to gauge endianness (at compile time): stackoverflow.com/questions/280162/… – Faisal Vali Jun 16 at 13:52
Why not determine endianness at compile-time? It can't possibly change at runtime. – ephemient Jun 20 at 20:31

16 Answers

vote up 23 vote down

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 !

int is_big_endian(void)
{
    union {
        uint32_t i;
        char c[4];
    } bint = {0x01020304};

    return bint.c[0] == 1; 
}

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.

link|flag
I don't recommend naming a variable "bint" :) – Matt Kane Jun 16 at 13:22
are you sure this is well defined? In C++ only one member of the union can be active at one time - i.e you can not assign using one member-name and read using another (although there is an exception for layout compatible structs) – Faisal Vali Jun 16 at 13:46
It is well defined in C99 AFAIK. On older platforms, it is implementation-dependent. But so is type punning through pointer cast, which is not defined in C99 either. – David Cournapeau Jun 16 at 14:33
@Matt: I looked into Google, and bint seems to have a meaning in English that I was not aware of :) – David Cournapeau Jun 16 at 14:34
@Faisal: In C++ only one member is guaranteed to work at a time, but in practice all compilers implement the extension that you can read from unions "as if" they had been assigned to with the value having the same storage representation that the value you actually assigned has. Assuming of course that the type you read does have a value with that storage representation. Certainly if all the questioner cares about is intel and PPC, and he's using normal compilers, then this is fine. – Steve Jessop Jun 16 at 14:35
show 3 more comments
vote up 21 vote down

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).

if ( htonl(47) == 47 ) {
  // Big endian
} else {
  // Little endian.
}

Bit fiddling could be faster, but this way is simple, straightforward and pretty impossible to mess up.

link|flag
The network conversion ops can also be used to convert everything to big endian, thus solving other problems Jay may be encountering. – Brian Jun 16 at 13:15
Care should be taken - htonl implementation can be slow - its speed needs to be measured so its misuse doesn't introduce a bottleneck. – sharptooth Jun 16 at 13:15
1  
@sharptooth - slow is a relative term, but yes, if speed is really an issue, use it once at the start of the program and set a global variable with the endianness. – Eric Petroelje Jun 16 at 13:23
htonl has another problem: on some platforms (windows ?), it does not reside in the C runtime library proper, but in additional, network related libraries (socket, etc...). This is quite an hindrance for just one function if you don't need the library otherwise. – David Cournapeau Jul 7 at 5:00
vote up 9 vote down

Please see this article:

Here is some code to determine what is the type of your machine

int num = 1;
if(*(char *)&num == 1)
{
    printf("\nLittle-Endian\n");
}
else
{
    printf("Big-Endian\n");
}
link|flag
its easier than htonl stuff..we dont need any library ..cool – Warrior Jun 16 at 13:38
1  
Bear in mind that it depends on int and char being different lengths, which is almost always the case but not guaranteed. – David Thornley Jun 16 at 13:45
@David - very true but I would be surprised to learn of any architecture that would have ints and chars be the same size. Still, it is an important point to never make assumptions about stuff like this. – Andrew Hare Jun 16 at 13:51
Does this method rely on the fact that the code is always compiled on the same architecture? – Janusz Jun 16 at 15:11
I've worked on embedded systems where short int and char were the same size... I can't remember if regular int was also that size (2 bytes) or not. – rmeador Jun 16 at 15:14
show 2 more comments
vote up 7 vote down

Declare an int variable:

int variable = 0xFF;

Now use char* pointers to various parts of it and check what is in those parts.

char* startPart = reinterpret_cast<char*>( &variable );
char* endPart = reinterpret_cast<char*>( &variable ) + sizeof( int ) - 1;

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.

link|flag
vote up 2 vote down

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:

short temp = 0x1234;
char* tempChar = (char*)&temp;

You will either get tempChar to be 0x12 or 0x34, from which you will know the endianness.

link|flag
1  
This relies on short being exactly 2 bytes which is not guaranteed. – sharptooth Jun 16 at 13:06
1  
It'd be a pretty safe bet though based on the two architectures given in the question though. – Daemin Jun 16 at 13:15
vote up 2 vote down

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"

link|flag
vote up 1 vote down

I would do something like this:

bool isBigEndian() {
    static unsigned long x(1);
    static bool result(reinterpret_cast<unsigned char*>(&x)[0] == 0);
    return result;
}

Along these lines, you would get a time efficient function that only does the calculation once.

link|flag
vote up 0 vote down

See Endianness - C-Level Code illustration.

// assuming target architecture is 32-bit = 4-Bytes
enum ENDIANESS{ LITTLEENDIAN , BIGENDIAN , UNHANDLE };


ENDIANESS CheckArchEndianalityV1( void )
{
    int Endian = 0x00000001; // assuming target architecture is 32-bit    

    // as Endian = 0x00000001 so MSB (Most Significant Byte) = 0x00 and LSB (Least     Significant Byte) = 0x01
    // casting down to a single byte value LSB discarding higher bytes    

    return (*(char *) &Endian == 0x01) ? LITTLEENDIAN : BIGENDIAN;
}
link|flag
vote up 0 vote down
int i=1;
char *c=(char*)&i;
bool littleendian=c;
link|flag
vote up 0 vote down

How about this?

#include <cstdio>

int main()
{
    unsigned int n = 1;
    char *p = 0;

    p = (char*)&n;
    if (*p == 1)
    	std::printf("Little Endian\n");
    else 
    	if (*(p + sizeof(int) - 1) == 1)
    		std::printf("Big Endian\n");
    	else
    		std::printf("What the crap?\n");
    return 0;
}
link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

For further details, you may want to check out this codeproject article Basic concepts on Endianness:

How to dynamically test for the Endian type at run time?

As explained in Computer Animation FAQ, you can use the following function to see if your code is running on a Little- or Big-Endian system: Collapse

#define BIG_ENDIAN      0
#define LITTLE_ENDIAN   1
int TestByteOrder()
{
   short int word = 0x0001;
   char *byte = (char *) &word;
   return(byte[0] ? LITTLE_ENDIAN : BIG_ENDIAN);
}

This code assigns the value 0001h to a 16-bit integer. A char pointer is then assigned to point at the first (least-significant) byte of the integer value. If the first byte of the integer is 0x01h, then the system is Little-Endian (the 0x01h is in the lowest, or least-significant, address). If it is 0x00h then the system is Big-Endian.

link|flag
vote up 0 vote down

You can also do this via the preprocessor using something like boost header file which can be found boost endian

link|flag
vote up 0 vote down

Here's another C version. It defines a macro called wicked_cast() for inline type punning via C99 union literals and the non-standard __typeof__ operator.

#include <limits.h>

#if UCHAR_MAX == UINT_MAX
#error endianness irrelevant as sizeof(int) == 1
#endif

#define wicked_cast(TYPE, VALUE) \
    (((union { __typeof__(VALUE) src; TYPE dest; }){ .src = VALUE }).dest)

_Bool is_little_endian(void)
{
    return wicked_cast(unsigned char, 1u);
}

If integers are single-byte values, endianness makes no sense and a compile-time error will be generated.

link|flag
vote up 0 vote down

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):

:| gcc -dM -E -x c - |grep -i endian
#define __LITTLE_ENDIAN__ 1

On a PPC machine I get:

:| gcc -dM -E -x c - |grep -i endian
#define __BIG_ENDIAN__ 1
#define _BIG_ENDIAN 1

(The :| gcc -dM -E -x c - magic prints out all built-in macros).

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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