The following three pieces of code achieves exactly the same effect. Yet, when compiled with -O3 on GCC 4.5.2 the times for a lot of iterations vary quite markedly.
1 - Normal branching, using multiple conditions, best time 1.0:
// a, b, c, d are set to random values 0-255 before each iteration.
if (a < 16 or b < 32 or c < 64 or d < 128) result += a+b+c+d;
2 - Branching, manually using bitwise or to check conditions, best time 0.92:
if (a < 16 | b < 32 | c < 64 | d < 128) result += a+b+c+d;
3 - Finally, getting the same result without a branch, best time 0.85:
result += (a+b+c+d) * (a < 16 | b < 32 | c < 64 | d < 128);
The above times are the best for each method when run as the the inner loop of a benchmark program I made. The random() is seeded the same way before each run.
Before I made this benchmark I assumed GCC would optimize away the differences. Especially the 2nd example makes me scratch my head. Can anyone explain why GCC doesn't turn code like this into equivalent faster code?
EDIT: Fixed some errors, and also made it clear that the random numbers are created regardless, and used, so as to not be optimized away. They always were in the original benchmark, I just botched the code I put on here.
Here is an example of an actual benchmark function:
boost::random::mt19937 rng;
boost::random::uniform_int_distribution<> ranchar(0, 255);
double quadruple_or(uint64_t runs) {
uint64_t result = 0;
rng.seed(0);
boost::chrono::high_resolution_clock::time_point start =
boost::chrono::high_resolution_clock::now();
for (; runs; runs--) {
int a = ranchar(rng);
int b = ranchar(rng);
int c = ranchar(rng);
int d = ranchar(rng);
if (a < 16 or b < 32 or c < 64 or d < 128) result += a;
if (d > 16 or c > 32 or b > 64 or a > 128) result += b;
if (a < 96 or b < 53 or c < 199 or d < 177) result += c;
if (d > 66 or c > 35 or b > 99 or a > 77) result += d;
}
// Force gcc to not optimize away result.
std::cout << "Result check " << result << std::endl;
boost::chrono::duration<double> sec =
boost::chrono::high_resolution_clock::now() - start;
return sec.count();
}
or? Your first example doesn't appear to be valid C. – JeremyP Oct 6 '11 at 15:54||. – Mark B Oct 6 '11 at 15:55The tokens and, and_eq, bitand, bitor, compl, not_eq, not, or, or_eq, xor, and xor_eq are keywords in this International Standard (2.11). They do not appear as macro names defined in <ciso646>. Also see 2.5/2/table 2 which shows the direct alternate token mappings. – Mark B Oct 6 '11 at 16:03