Switch statements are typically faster than equivalent if-else-if statements (as e.g. descibed in this article) due to compiler optimizations.
How does this optimization actually work? Does anyone have a good explanation?
|
3
|
Switch statements are typically faster than equivalent if-else-if statements (as e.g. descibed in this article) due to compiler optimizations. How does this optimization actually work? Does anyone have a good explanation?
|
||
|
|
|
|
The compiler can build jump tables where applicable. For example, when you use the reflector to look at the code produced, you will see that for huge switches on strings, the compiler will actually generate code that uses a hash table to dispatch these. The hash table uses the strings as keys and delegates to the This has asymptotic better runtime than lots of chained |
||||||
|
|
|
Konrad is correct. In the case of switching on contiguous ranges of integers (eg, where you have case 0, case 1, case 2 .. case n), the compiler can do something even better because it doesn't even need to build a hash table; it simply stores an an array of function pointers, and thus can load its jump target in constant time. |
||
|
|
|
|
This is a slight simplification as typically any modern compiler that encounters a Anyhoo, an extension to Konrad's answer is that the compiler may generate a jump table, but that's not necessarily guaranteed (nor desirable). For a variety of reasons jump tables do bad things to the branch predictors on modern processors, and the tables themselves do bad things to cache behaviour, eg.
If a compiler actually generated a jump table for this it would likely be slower that the alternative |
||
|
|
|
|
The no-match stats may not be good. If you actually download the source, the no match values are known to be 21, in both the if and switch case. A compiler should be able to abstract away, knowing which statement should be run at all times, and a CPU should be able to branch predict properly. The more interesting case is when not every case breaks, in my opinion, but that may not have been the scope of the experiment. |
||
|
|
|
|
|
||
|
|
|
As Konrad said the compiler can build a Jump table. In C++ a reason it can is because of the limitation of switches.
|
||
|
|