I want a simple C function which will return true if the n-th bit in a byte is set to 1'.else it will return false.This is a critical function in terms of execution time.So I am thinking of the most optimal way to do that.
|
|
For eight bit bytes:
This assumes 8-bit bytes (not a given in C) and the zeroth bit being the highest order one. If those assumption are incorrect, it comes down to expanding and/or re-ordering the No error checking is done since you cited speed as the most important consideration. Do not pass in an invalid At insane optimisation level
which is pretty small and efficient. And if you make it static and suggest inlining, or force it inline as a macro definition, you can even bypass the cost of a function call. Just make sure you benchmark any solution you're given, including this one (a). The number one mantra in optimisation is "Measure, don't guess!" If you want to know how the bitwise operators work, see here. The simplified AND-only version is below. The AND operation
For a given
You can see that all the zero bits in the mask result in the equivalent result bits being zero. The single one bit in the mask will basically let the equivalent bit in the value flow through to the result. The result is then zero if the bit we're checking was zero, or non-zero if it was one. That's where the expression in the
(a) I know how damn good I am, but you don't :-) |
|||||||||||||||||||
|
|
|||||||
|
|
|||
|
|