Is there any way to optimize the following line of C code (to avoid branching)?
if ((i < -threshold) || (i > threshold))
{
counter++;
}
All variables are 16-bit signed integers. An optimized version should be highly portable.
|
Is there any way to optimize the following line of C code (to avoid branching)?
All variables are 16-bit signed integers. An optimized version should be highly portable. |
||||
|
How about:
Assuming the original code was valid, then this should work too, in a portable way. The standard says that relational operators ( UPDATE To answer Sheen's comment below, the following code:
results in the following disassembler on x86 using GCC, with no optimisations:
|
|||||||||||||
|
|
There is a standard idiom for range-checking with a single comparison instruction. It goes like:
As a common example (this version if
If your original type is larger than In order for this method to work, naturally you must have As for how this "trick" works, it is purely determining, after reduction modulo In your case, I think the following should work just fine:
If Speaking of optimizations, a good compiler should optimize your original range test to use unsigned arithmetic where it knows the constraints are met. I suspect many do so with |
|||
|
|
|
Oh, too bad the question has already been answered. To paraphrase Oli's answer, the code
yields the following x86 assembler using GCC without optimizations
which is four instructions less than using Whether this is better or not is, of course, depending on the architecture. (The use of stdint.h is for illustrative purposes, for strict C89 replace with whatever is relevant for the target system.) |
|||||
|
|
This is based on bit twiddling hacks, (highly recommended)
This works for 32 bit integers, adapting to 16 bits should be easy. It compiles using g++. The speed depends on the used processor. Branching might be faster after all. |
|||||||||||||
|
|
Oli Charlesworth, I think, has the right idea. However, I suspect that it can be further optimized (at the expense of readability). The threshold can be normalized to zero to remove a comparison. That is, ...
|
|||||||||
|
|
You can use the following trick which reduces the branches to a single branch:
or, for the pedantic:
|
|||||||||||
|
|
This code have no branch an highly portable (however, implementation of abs may have one).
That's simplest standard compliant expression. If your compiler does not using optimized macro for abs() you may use your own macro/ inline function. That are examples, that use nature of twos complement format used on most machines:
Also you may replace comparison operator with expression like this:
Resulting code:
All those macros rely on fact, that shift right to number of bits minus one of positive value or zero evaluates to zero, and of negative evaluates to minus one. But thats implementation defined. |
|||
|
|
|
Compare the absolute of both
|
|||||||||||
|
|
Depending on the distribution of values of 'i', your CPU may well cache the branch prediction for you better than any code change you might make. See http://igoro.com/archive/fast-and-slow-if-statements-branch-prediction-in-modern-processors/ for an interesting writeup. Reddit discussion here: http://www.reddit.com/r/programming/comments/c7ues/fast_and_slow_ifstatements_branch_prediction_in/ |
|||
|
|
|
What is wrong with the original code? Does it really need hand-optimising? Any decent compiler should be able to optimise that very well. Any hand-optimising would probably only lead to obfuscation. |
|||
|
|
if((unsigned int)i > threshold)– zdav Oct 27 '10 at 14:59