vote up 2 vote down star

I have been reading over some code lately and came across some lines such as:

somevar &= 0xFFFFFFFF;

What is the point of anding something that has all bits turned on; doesn't it just equal somevar in the end?

flag

What type is somevar? – Jonas Elfström Jun 29 at 22:44
it's unsigned long – unknown (google) Jun 29 at 22:45
1  
not all code makes sense - maybe somebody typed a couple of extra 'F' characters by mistake. – Neil Butterworth Jun 29 at 22:46
I would expect that a 32 bit compiler would optimize this away. – shoosh Jun 29 at 22:48
unsigned long? Odd... I was expecting that to be 64 bits. – Jason S Jun 29 at 22:50
show 2 more comments

6 Answers

vote up 14 vote down check

"somevar" could be a 64-bit variable, this code would therefore extract the bottom 32 bits.

edit: if it's a 32-bit variable, I can think of other reasons but they are much more obscure:

  • the constant 0xFFFFFFFF was automatically generated code
  • someone is trying to trick the compiler into preventing something from being optimized
  • someone intentionally wants a no-op line to be able to set a breakpoint there during debugging.
link|flag
vote up 3 vote down

I suppose it depends on the length of somevar. This would, of course, not be a no-op if somevar were a 64-bit int. Or, is somevar is some type with an overloaded operator&=.

link|flag
It wouldn't be a nop anyway (baring compiler optimisation) and while side effects are bad, they are used by some people. – Matthew Scharley Jun 29 at 22:46
vote up 5 vote down

Indeed, this wouldn't make sense if somevar is of type int (32-bit integer). If it is of type long (64-bit integer), however, then this would mask the upper (most significant) half of the value.

Note that a long value is not guaranteed to be 64 bits, but typically is on a 32-bit computer.

link|flag
1  
+1 for mentioning the var type – Dervin Thunk Jun 29 at 22:48
2  
You can't assume int is 32 bits nor long is 64 bits. (Perhaps you understand this and just lazy wording makes your answer imply these are correct?) – Roger Pate Jun 29 at 22:51
@R. Pate: Yeah, this is true. I say this because of the current predominance of 32-bit systems however, in which this is the case, and moreover, since the code was most likely written for a 32-bit system. – Noldorin Jun 29 at 22:58
It's a property of the compiler/implementation, not the computer running the program. Some compilers even let you change the size of data types within the range allowed. – Roger Pate Jun 29 at 23:09
1  
Correct, long is the same size as int in those implementations. This does, as you'd expect, occasionally cause C++ programmers to rend their garments and scream "Why is there no 64bit integer in the standard?". In practice, you can always write "nearly portable" code that uses stdint.h, on the assumption that if it isn't already available, it's trivial to implement for any given platform. – Steve Jessop Jul 2 at 23:10
show 4 more comments
vote up 1 vote down

sometimes the size of long is 32 bits, sometimes it's 64 bits, sometimes it's something else. Maybe the code is trying to compensate for that--and either just use the value (if it's 32 bits) or mask out the rest of the value and only use the lower 32 bits of it. Of course, this wouldn't really make sense, because if that were desired, it would have been easier to just use an int.

link|flag
vote up 2 vote down

hi there,

yes definitely to truncate 32 bits on a 64 bit environment.

link|flag
vote up 2 vote down

If the code fragment was C++, then the &= operator might have been overridden so as to have an effect not particularly related to bitwise AND. Granted, that would be a nasty, evil, dirty thing to do...

link|flag

Your Answer

Get an OpenID
or

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