If I have a pointer to the start of a memory region, and I need to read the value packed in bits 30, 31, and 32 of that region, how can I read that value?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It depends on how big a byte is in your machine. The answer will vary depending on if you're zero- or one-indexing for those numbers. The following function returns 0 if the bit is 0 and non-zero if it is 1.
If your compiler can't optimize well enough to turn the division and mod operations into bit operations, you could do it explicitly, but I prefer this code for clarity. (Edited to fix a bug and change to CHAR_BIT, which is a great idea.) |
|||||||||
|
|
I'd probably generalize this answer to something like this:
Bit easier to use:
|
||||
|
|
|
On a 32-bit system, you can simply shift pointer right 29. If you need the bit values in place, and by 0xE0000000. |
|||
|
|
