vote up 7 vote down star
1

Does Endianness matter at all with the bitwise operations. Either logical or shifting?

I'm working on homework with regard to bitwise operators and I can not make heads or tails on it and I think I'm getting quite hung up on the endianess. That is, I'm using a little endian machine (like most are) but does this need to be considered or is it a wasted fact?

In case it matters, I'm using C.

Thank you,
Frank

flag

4 Answers

vote up 8 vote down check

Endianness only matters for layout of data in memory. As soon as data is loaded by the processor to be operated on, endianness is completely irrelevent. Shifts, bitwise operations, and so on perform as you would expect (data logically laid out as low-order bit to high) regardless of endianness.

link|flag
vote up 1 vote down

As others have mentioned, shifts are defined by the C language specification and are independent of endianness, but the implementation of a right shift may vary depending on iff the architecture uses one's complement or two's complement arithmetic.

link|flag
vote up 7 vote down

The bitwise operators abstract away the endianness. For example, the >> operator always shifts the bits towards the least significant digit. However, this doesn't mean you are safe to completely ignore endianness when using them, for example when dealing with individual bytes in a larger structure you cannot always assume that they will fall in the same place.

short temp = 0x1234;
temp >> 8;

// on little endian, c will be 12, on big endian, it will be 0
char c=((char*)temp)[0];

To clarify, I am not in basic disagreement with the other answers here. The point I am trying to make is to emphasise that although the bitwise operators are essentially endian neutral, you cannot ignore the effect of endianess in your code, especially when combined with other operators.

link|flag
You are basically disagreeing with everyone but yet your answer was voted the best. How can identify the behaviors? – Frank Jun 25 at 0:33
I have added some further clarification – 1800 INFORMATION Jun 25 at 0:57
vote up 1 vote down

You haven't specified a language but usually, programming languages such as C abstract endianness away in bitwise operations. So no, it doesn't matter in bitwise operations.

link|flag
Given that the question has no revisions, I'm surprised you say he hasn't mentioned language, when he does, and it's also tagged as C. – Simeon Pilgrim Jun 25 at 2:27
@Simeon: It didn't have at the time I wrote this answer. Edits by a single author in a small time frame will be merged into one. That's why you're seeing it as a single revision. – Mehrdad Afshari Jun 25 at 2:52

Your Answer

Get an OpenID
or

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