vote up 0 vote down star

Is it better to have if / else if, if every block in the if statement returns, or is it better to have a chain of ifs? To be specific, which if fastest:

A:

if (condition1) {
  code1;
  return a;
}
if (condition2) {
  code2;
  return b;
}
//etc...

B:

if (condition1) {
  code1;
  return a;
}
else if (condition2) {
  code2;
  return b;
}
//etc...
flag

66% accept rate
I'd assume the former is faster, but it might be better to go with the 2nd because it's clearer that the 2nd if block won't get executed unless the first condition fails. – Mark Jul 24 at 2:44
5  
No, C does not dictate what happens at the CPU level. It's plausible there's a CPU architecture without JMP statements which uses a flag to still execute statements but throw away the results. That would mean the speed is identical. My point: you can't assume what the C code will become under the covers. – paxdiablo Jul 24 at 2:48
2  
"architecture ... which uses a flag to still execute statements but throw away the results". For instance ARM has conditional instructions, which execute if the condition flag is set and act as nops if it is not. They're emitted by compilers in cases where a jump would be slower than however many ops it would be jumping over. – Steve Jessop Jul 24 at 2:54
Executing statements in "else if (statement)" and throwing away results will mean very badly broken compiler. – Eugene Jul 24 at 2:54
I'm assuming that "results" in this case is intended to mean "including any side-effects". That is, results of the assembly instructions rather than results in the C sense of whatever the expression evaluates to. Obviously if "code1" and "code2" aren't entirely inline then this option isn't available to the compiler. – Steve Jessop Jul 24 at 2:59
show 2 more comments

7 Answers

vote up 40 vote down check

It makes no difference, and this is a needless attempt at micro-optimization.

link|flag
+1 Any decent compiler will notice that the else is not needed. – Preet Sangha Jul 24 at 2:43
5  
It's not even a micro-optimization. It's a 0-optimization. – Steve Jessop Jul 24 at 2:49
You're right. Edited to clarify. :) – Mike Daniels Jul 24 at 2:57
4  
You can't always assume sane compilers. Often when people ask about speed, they are using an embedded system with a lousy compiler. It's happened to me more than once. The world is bigger than the x86 and ARM families. Of course, an embedded programmer could just compile both and look at the opcodes generated and do the timings. – Nosredna Jul 24 at 3:30
2  
@Nosredna: True, but if we were to assume the compiler is insane, we couldn't say anything without seeing the output of the exact compiler the OP is using. Failing to specify the exact architecture/compiler you are using in the OP means you're OK with an answer that covers theoretical/logical/normal/sane case. – Mehrdad Afshari Jul 24 at 11:06
show 6 more comments
vote up 0 vote down

This should perform the same in the optimized builds. If not, then something else is likely preventing the compiler from doing the "right thing".

Robbotic is incorrect. In both instances, if the first clause is true, then the subsiquent statements will not be executed (evaluated).

Note, be sure to measure - you may be optimizing the wrong thing.

link|flag
vote up 12 vote down

The C standard does not dictate what machine language gets created based on the C code. You can sometimes make assumptions if you understand the underlying architecture but even that is unwise.

The days are long past where CPUs are simple beasts now that they have pipelining, multiple levels of caches and all sorts of other wondrous things to push their speed to the limit.

You should not be worrying about this level of optimization until you have a specific problem (some would say "at all").

Write your code to be readable. That should be rule number 1, 2 and 3. Which do you think is the greatest problem in software development, code running at 99.5% of it's maximum speed or developers spending days trying to figure out and/or fix what a colleague (or even themselves) did six months ago?

My advice is to worry about performance only when you find it's a problem, then benchmark on the target platforms to see where the greatest improvement can be gained. A 1% improvement in a if statement is likely to be dwarfed by choosing a better algorithm elsewhere in your code (other things, such as number of times the code is called, being equal of course). Optimization should always be targeted to get the best bang-per-buck.

link|flag
++ Occasionally if I'm doing graphics or something, and some routine is an actual hotspot and would benefit from cycle-squeezing, I might care. The other 99.99% of the time, performance problems are caused by excess calls to functions that do a lot more than the coder thinks they will. – Mike Dunlavey Jul 24 at 14:20
vote up 1 vote down

With those returns, the else is superflous. The compiler is likely smart enough to figure this out.

I suspect the compiler will generate the same code for both. Disassemble it and see.

In any case, examining the output of the compiler and empirical performance testing is the only way to be sure.

link|flag
vote up 1 vote down

They should be equivalent on most architectures. The instructions generated are probably still the same bne, cmps and rets.

What might help is if you use a switch/case instead of if statement.

link|flag
heh, brilliant! didn't even consider that.. – Claudiu Jul 24 at 2:47
vote up 3 vote down

I don't really think it is a big difference if any:

For the A case:

if (condition){
    //conditionOp
    //cmp ... , ...
    //jxx :toEndIf
    code;
    return bar;
    //mov eax, bar
    //jmp :toEnd
}
if(condition){
    //conditionOp
    //cmp ... , ...
    //jxx :toEndIf
    code;
    return bar;
    //mov eax, bar
    //jmp :toEnd
}

For the B case:

if(condition){
    //conditionOp
    //cmp ... , ...
    //jxx :toElse + 1
    code;
    return bar;
    //mov eax , bar
    //jmp :toEnd
} else 
    //jmp :endElse 
if (condition2){
    //conditionOp
    //cmp ... , ...
    //jxx :endElse
    code;
    return bar;
    //mov eax, bar
    //jmp :toEnd
}

Thus, using the B case, one extra instruction is added. Though, optimizing for size may get rid of that.

link|flag
1  
+1 for going the extra yards but you may want to state it's for a specific CPU/compiler/optimization-level/phase-of-moon. – paxdiablo Jul 24 at 3:27
For example, GCC does not emit code like this for x86, even without any optimisation. – Steve Jessop Jul 24 at 11:39
vote up 1 vote down

Write a simple test program to measure this and find out - but yes this is needless optimization.

link|flag

Your Answer

Get an OpenID
or

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