Overhead of a switch statement in C - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T16:22:26Zhttp://stackoverflow.com/feeds/question/927403http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c5Overhead of a switch statement in Cgav2009-05-29T18:18:06Z2009-05-29T21:11:50Z
<p>Hi all!</p>
<p>I'm a fairly competent Java programmer who's very new to C. I am trying to optimize a routine that has four modes of operation.</p>
<p>I loop over all the pixels in an image and compute a new pixel value depending on the 'mode' passed.</p>
<p>My question regards the overhead of a switch statement within two nested for loops. I'd be interested in any links to documentation regarding the relative efficiency of basic C statements, math and logical operations.</p>
<p>The code would go as follows;</p>
<pre><code>for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
switch (mode) /* select the type of calculation */
{
case 0:
weight = dCentre / maxDistanceEdge;
case 1:
weight = (float)x/width;
break;
case 2:
weight = (float)y/height;
break;
case 3:
weight = dBottomLeft / maxDistanceCorner;
break;
case 4:
weight = dTopRight / maxDistanceCorner;
break;
default:
weight = 1;
break;
}
// Calculate the new pixel value given the weight
...
}
}
</code></pre>
<p>Would you expect to see much overhead if this was over a 5000 x 5000 pixel image? I've tried to do some testing but my results are all over the place as the system (Mobile Device) has all sorts of stuff running in the background that may skew results.</p>
<p>The other option is to have a separate method for each mode, each with its own four loops. This would obviously introduce redundant code but efficiency is the name of the game here.</p>
<p>Thanks in advance!</p>
<p>Gav</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927421#9274214Answer by Neil Butterworth for Overhead of a switch statement in CNeil Butterworth2009-05-29T18:20:34Z2009-05-29T18:20:34Z<p>Compared with the maths you are doing in the loop, the overhead of the switch will probably be minimal. having said that, the only way to be sure is to create different versions for the two different approaches, and time them.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927423#9274235Answer by Charlie Martin for Overhead of a switch statement in CCharlie Martin2009-05-29T18:20:50Z2009-05-29T18:20:50Z<p>Switch statements are about as efficient as they can possibly be. They're compiled to a jump table. In fact, that's why switch is as limited as it is: you can only write a switch for which you <em>can</em> compile a jump tables based on a fixed value.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927426#9274261Answer by Adam Frisby for Overhead of a switch statement in CAdam Frisby2009-05-29T18:21:14Z2009-05-29T18:21:14Z<p>Switches shouldnt produce any significant overhead, they get compiled into a sort of array of pointers at the low end, then it's a case of effectively:</p>
<p>jmp {baseaddress}+switchcasenum</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927427#9274277Answer by Michael Kohne for Overhead of a switch statement in CMichael Kohne2009-05-29T18:21:17Z2009-05-29T18:21:17Z<p>If efficiency is more important than code size, then yes you should create redundant routines. The case statement is one of the lower overhead things you can do in C, but it's not zero - it's going to have to branch based on the mode, and so it's going to take time. If you really want max performance, get the case out of the loop, even at the cost of duplicating the loop.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927430#9274301Answer by bdonlan for Overhead of a switch statement in Cbdonlan2009-05-29T18:21:47Z2009-05-29T18:21:47Z<p>This would probably depend on how good your CPU's branch predictor is, and how your compiler generates the code for the switch. For such a small number of cases, it might generate a decision tree, in which case normal CPU branch prediction should be able to remove most of the overhead. Things might be a bit worse if it generates a switch table...</p>
<p>That said, the best way to find out is to profile it and see.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927432#9274320Answer by dmckee for Overhead of a switch statement in Cdmckee2009-05-29T18:21:58Z2009-05-29T18:21:58Z<p>Depends on the chip and the compiler and the details of the code, and...but this will often be implemented as a jump table, which should be pretty fast.</p>
<p>BTW-- Understanding this kind of thing is a pretty good argument for spending a couple of weeks learning some assembly at some point in your career...</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927436#9274360Answer by Matt Kane for Overhead of a switch statement in CMatt Kane2009-05-29T18:22:21Z2009-05-29T18:22:21Z<p>Using a switch is probably better both for speed and programmer time. You're making less redundant code and it probably won't require a new stack frame.</p>
<p>Switches are so efficient that they can used for really weird and confusing <a href="http://en.wikipedia.org/wiki/Duff%27s%5Fdevice" rel="nofollow">black magic</a>.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927466#92746613Answer by Jim Buck for Overhead of a switch statement in CJim Buck2009-05-29T18:30:29Z2009-05-29T19:13:00Z<p>Switch statements compile to a jump table for consecutive values and to a bunch of if-else statements for sparse values. In any case, you don't want a switch statement in your inner loop for image processing if you care about performance. You want to as below instead.</p>
<p>Also, note that I moved the weight calculation out of the inner loop (and swapped the loops for case 2 in order to achieve this). This type of thinking, moving stuff out of the inner loop, will get you the performance you want out of C.</p>
<pre><code>switch (mode) /* select the type of calculation */
{
case 0:
weight = dCentre / maxDistanceEdge;
for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
// Calculate the new pixel value given the weight
...
}
}
break;
case 1:
for (x = 0; x < width; x++) {
weight = (float)x/width;
for (y = 0; y < height; y++) {
// Calculate the new pixel value given the weight
...
}
}
break;
case 2:
// note - the loops have been swapped to get the weight calc out of the inner loop
for (y = 0; y < height; y++) {
weight = (float)y/height;
for (x = 0; x < width; x++) {
// Calculate the new pixel value given the weight
...
}
}
break;
case 3:
weight = dBottomLeft / maxDistanceCorner;
for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
// Calculate the new pixel value given the weight
...
}
}
break;
case 4:
weight = dTopRight / maxDistanceCorner;
for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
// Calculate the new pixel value given the weight
...
}
}
break;
default:
weight = 1;
for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
// Calculate the new pixel value given the weight
...
}
}
break;
// etc..
}
</code></pre>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927707#9277070Answer by Brian for Overhead of a switch statement in CBrian2009-05-29T19:24:59Z2009-05-29T19:24:59Z<p>In addition to Jim's advice, try swapping the order of the loops. Whether loop-swapping is ideal for case 1 would require testing, but I suspect it is. You almost always want your x coordinate inside your inner loop in order to improve paging performance, as this causes your function to have a better tendency to stay in the same general memory area each iteration. And a mobile device with limitted resources might have low enough ram that this difference will be emphasized.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927731#9277311Answer by Jem for Overhead of a switch statement in CJem2009-05-29T19:31:02Z2009-05-29T19:31:02Z<p>Switch/case is extremely fast compared to the equivalent with if/else: it is typically implemented as a jump table. However it still has a cost.</p>
<p>While you are optimizing things:</p>
<p>1) Try to loop over lines, not over columns (switch x and y "for" loops), one solution may be incredibly faster than the other, due to cache memory management.</p>
<p>2) Replacing all divisions by multiplications of the (pre-calculated) inverse will give you significant gain, and probably an acceptable precision loss.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927887#9278870Answer by none for Overhead of a switch statement in Cnone2009-05-29T20:10:02Z2009-05-29T20:10:02Z<blockquote>
<p>but efficiency is the name of the game here.</p>
</blockquote>
<p>iterating over an image buffer in order to compute new pixel values sounds like a typical embarrassingly-parallel problem, in this sense you might want to consider pushing some of the work into worker threads, this should speed up your operation more notably than micro-optimizations such as switch/case concerns.</p>
<p>Also, instead of doing the branching instructions every time, you could invoke a function pointer from an array of function pointers, where the index serves as your mode identifier.</p>
<p>So that you end up with calls such as:</p>
<pre><code>computeWeight[mode](pixel);
</code></pre>
<p>With 5000x5000 pixels, the function call overhead could also be reduced by calling the function for a range of pixels, rather than individual pixels.</p>
<p>You could also use loop unrolling and parameter passing by reference/pointer, in order to optimize this further.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/927933#9279332Answer by qrdl for Overhead of a switch statement in Cqrdl2009-05-29T20:17:32Z2009-05-29T20:59:31Z<p>For efficiency sake you better move <code>switch</code> outside the loop.</p>
<p>I'd use function pointers like this:</p>
<pre><code>double fun0(void) { return dCentre/maxDistanceEdge; }
double fun1(void) { return (float)x/width; }
/* and so on ... */
double (*fun)(void);
switch (mode) /* select the type of calculation */
{
case 0: fun = fun0;
break;
case 1: fun = fun1;
break;
case 2: fun = fun2;
break;
case 3: fun = fun3;
break;
case 4: fun = fun3;
break;
default : fun = fun_default;
break;
}
for (x = 0; x < width; x++) {
for (y = 0; y < height; y++) {
weight = fun();
// Calculate the new pixel value given the weight
...
}
}
</code></pre>
<p>It adds function call overhead but it shouldn't be too big as you pass no params to the function. I think it is good trade-off between performance and readability.</p>
<p><strong>EDIT:</strong> If you use GCC, to get rid of function call you can use <code>goto</code> and <a href="http://gcc.gnu.org/onlinedocs/gcc/Labels-as-Values.html" rel="nofollow">labels as values:</a> find the right label within the switch and then just jump to it every time. I think it should save few more cycles.</p>
http://stackoverflow.com/questions/927403/overhead-of-a-switch-statement-in-c/928178#9281780Answer by Magnus Skog for Overhead of a switch statement in CMagnus Skog2009-05-29T21:11:50Z2009-05-29T21:11:50Z<p>Many good points are already given. Only thing I could think of to add to this, is to move the most frequent cases up in the switch and the least frequent down.</p>
<p>So if case 4 happens more often than case 1, it should be above it:</p>
<pre><code>switch (mode) {
case 4:
// ..
break;
case 1:
// ..
break;
}
</code></pre>
<p>Too bad you weren't using c++, because then the switch statement could be replaced with polymorphism.</p>
<p>Cheers !</p>