Which compiles to faster code: "n * 3" or "n+(n*2)"? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T12:08:02Zhttp://stackoverflow.com/feeds/question/53757http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn24Which compiles to faster code: "n * 3" or "n+(n*2)"?David L Morris2008-09-10T10:44:33Z2008-11-20T01:15:05Z
<p>Which compiles to faster code: "ans = n * 3" or "ans = n+(n*2)"?</p>
<p>Assuming that n is either an int or a long, and it is is running on a modern Win32 Intel box.</p>
<p>Would this be different if there was some dereferencing involved, that is, which of these would be faster?</p>
<pre>
long a;
long *pn;
long ans;
...
*pn = some_number;
ans = *pn * 3;
</pre>
<p>Or</p>
<pre>
ans = *pn+(*pn*2);
</pre>
<p>Or, is it something one need not worry about as optimizing compilers are likely to account for this in any case?</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53759#5375943Answer by aku for Which compiles to faster code: "n * 3" or "n+(n*2)"?aku2008-09-10T10:48:08Z2008-09-10T10:48:08Z<p>IMO such micro-optimization is not necessary unless you work with some exotic compiler. I would put readability on the first place.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53761#537610Answer by Vinko Vrsalovic for Which compiles to faster code: "n * 3" or "n+(n*2)"?Vinko Vrsalovic2008-09-10T10:48:40Z2008-09-10T10:48:40Z<p>It does depend on the compiler you are actually using, but very probably they translate to the same code. </p>
<p>You can check it by yourself by creating a small test program and checking its disassembly.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53762#537620Answer by Paul Tomblin for Which compiles to faster code: "n * 3" or "n+(n*2)"?Paul Tomblin2008-09-10T10:49:33Z2008-09-10T10:49:33Z<p>Most compilers are smart enough to decompose an integer multiplication into a series of bit shifts and adds. I don't know about Windows compilers, but at least with gcc you can get it to spit out the assembler, and if you look at that you can probably see identical assembler for both ways of writing it.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53763#537630Answer by Konrad Rudolph for Which compiles to faster code: "n * 3" or "n+(n*2)"?Konrad Rudolph2008-09-10T10:50:38Z2008-09-10T10:50:38Z<p>Compilers are good at optimising code such as yours. Any modern compiler would produce the same code for both cases and additionally replace <code>* 2</code> by a left shift.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53765#537653Answer by Will Dean for Which compiles to faster code: "n * 3" or "n+(n*2)"?Will Dean2008-09-10T10:51:54Z2008-09-10T10:51:54Z<p>This would depend on the compiler, its configuration and the surrounding code.</p>
<p>You should not try and guess whether things are 'faster' without taking measurements. </p>
<p><em>In general</em> you should not worry about this kind of nanoscale optimisation stuff nowadays - it's almost always a complete irrelevance, and if you were genuinely working in a domain where it mattered, you would already be using a profiler and looking at the assembly language output of the compiler.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53781#5378110Answer by Antti Sykäri for Which compiles to faster code: "n * 3" or "n+(n*2)"?Antti Sykäri2008-09-10T11:06:09Z2008-09-10T11:06:09Z<p>As it's easy to measure it yourself, why don't do that? (Using <code>gcc</code> and <code>time</code> from cygwin)</p>
<pre><code>/* test1.c */
int main()
{
int result = 0;
int times = 1000000000;
while (--times)
result = result * 3;
return result;
}
machine:~$ gcc -O2 test1.c -o test1
machine:~$ time ./test1.exe
real 0m0.673s
user 0m0.608s
sys 0m0.000s
</code></pre>
<p>Do the test for a couple of times and repeat for the other case.</p>
<p>If you want to peek at the assembly code, <code>gcc -S -O2 test1.c</code></p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53797#5379710Answer by Ferruccio for Which compiles to faster code: "n * 3" or "n+(n*2)"?Ferruccio2008-09-10T11:30:46Z2008-09-10T11:30:46Z<p>It doesn't matter. Modern processors can execute an integer MUL instruction in one clock cycle or less, unlike older processers which needed to perform a series of shifts and adds internally in order to perform the MUL, thereby using multiple cycles. I would bet that</p>
<pre><code>MUL EAX,3
</code></pre>
<p>executes faster than</p>
<pre><code>MOV EBX,EAX
SHL EAX,1
ADD EAX,EBX
</code></pre>
<p>The last processor where this sort of optimization might have been useful was probably the 486. (yes, this is biased to intel processors, but is probably representative of other architectures as well).</p>
<p>In any event, any reasonable compiler should be able to generate the smallest/fastest code. So always go with readability first.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/53815#538154Answer by Skizz for Which compiles to faster code: "n * 3" or "n+(n*2)"?Skizz2008-09-10T11:45:10Z2008-09-10T11:45:10Z<p>It's not difficult to find out what the compiler is doing with your code (I'm using DevStudio 2005 here). Write a simple program with the following code:</p>
<pre><code>int i = 45, j, k;
j = i * 3;
k = i + (i * 2);
</code></pre>
<p>Place a breakpoint on the middle line and run the code using the debugger. When the breakpoint is triggered, right click on the source file and select "Go To Disassembly". You will now have a window with the code the CPU is executing. You will notice in this case that the last two lines produce exactly the same instructions, namely, "lea eax,[ebx+ebx*2]" (not bit shifting and adding in this particular case). On a modern IA32 CPU, it's probably more efficent to do a straight MUL rather than bit shifting due to pipelineing nature of the CPU which incurs a penalty when using a modified value too soon.</p>
<p>This demonstrates what aku is talking about, namely, compilers are clever enough to pick the best instructions for your code.</p>
<p>Skizz</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/63220#632200Answer by Mark D for Which compiles to faster code: "n * 3" or "n+(n*2)"?Mark D2008-09-15T14:09:43Z2008-09-15T14:09:43Z<p>Trust your compiler to optimize little pieces of code like that. Readability is much more important at the code level. True optimization should come at a higher level.</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/304032#3040321Answer by Angel for Which compiles to faster code: "n * 3" or "n+(n*2)"?Angel2008-11-20T01:00:08Z2008-11-20T01:00:08Z<p>It doesn't care. I think that there are more important things to optimize. How much time have you invested thinking and writing that question instead of coding and testing by yourself? </p>
<p>:-)</p>
http://stackoverflow.com/questions/53757/which-compiles-to-faster-code-n-3-or-nn2/304053#3040530Answer by Artelius for Which compiles to faster code: "n * 3" or "n+(n*2)"?Artelius2008-11-20T01:15:05Z2008-11-20T01:15:05Z<p>As long as you're using a decent optimising compiler, just <em>write code that's easy for the compiler to understand</em>. This makes it easier for the compiler to perform clever optimisations.</p>
<p>You asking this question indicates that an optimising compiler knows more about optimisation than you do. So trust the compiler. Use <code>n * 3</code>.</p>
<p>Have a look at <a href="http://stackoverflow.com/questions/288942/how-to-convert-last-3-digits-of-number-into-0#289034">this answer</a> as well.</p>