Do modern compilers optimize the x * 2 operation to x << 1? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T20:15:25Zhttp://stackoverflow.com/feeds/question/235072http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-118Do modern compilers optimize the x * 2 operation to x << 1?Maxim2008-10-24T20:02:18Z2008-11-04T06:34:16Z
<p>Does the C++ compiler optimize this operation?</p>
<p>I would love to believe that yes.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235077#23507710Answer by David Arno for Do modern compilers optimize the x * 2 operation to x << 1?David Arno2008-10-24T20:03:45Z2008-10-24T20:03:45Z<p>Not if x is a float it won't.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235082#2350820Answer by Andy Lester for Do modern compilers optimize the x * 2 operation to x << 1?Andy Lester2008-10-24T20:05:29Z2008-10-24T20:05:29Z<p>Yes, they will.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235083#2350835Answer by Adam Rosenfield for Do modern compilers optimize the x * 2 operation to x << 1?Adam Rosenfield2008-10-24T20:05:39Z2008-10-24T20:05:39Z<p>Yes. They also optimize other similar operations, such as multiplying by non-powers of two that can be rewritten as the sums of some shifts. They will also optimize divisions by powers of 2 into right-shifts, but beware that when working with signed integers, the two operations are different! The compiler has to emit some extra bit twiddling instructions to make sure the results are the same for positive and negative numbers, but it's still faster than doing a division. It also similarly optimizes moduli by powers of 2.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235103#23510321Answer by Rob Walker for Do modern compilers optimize the x * 2 operation to x << 1?Rob Walker2008-10-24T20:10:53Z2008-10-24T20:10:53Z<p>Actually VS2008 optimizes this to x+x:</p>
<pre><code>01391000 push ecx
int x = 0;
scanf("%d", &x);
01391001 lea eax,[esp]
01391004 push eax
01391005 push offset string "%d" (13920F4h)
0139100A mov dword ptr [esp+8],0
01391012 call dword ptr [__imp__scanf (13920A4h)]
int y = x * 2;
01391018 mov ecx,dword ptr [esp+8]
0139101C lea edx,[ecx+ecx]
</code></pre>
<p>In an x64 build it is even more explicit and uses:</p>
<pre><code> int y = x * 2;
000000013FB9101E mov edx,dword ptr [x]
printf("%d", y);
000000013FB91022 lea rcx,[string "%d" (13FB921B0h)]
000000013FB91029 add edx,edx
</code></pre>
<p>This is will the optimization settings on 'Maximize speed' (/O2)</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235110#23511011Answer by C. Dragon 76 for Do modern compilers optimize the x * 2 operation to x << 1?C. Dragon 762008-10-24T20:14:54Z2008-10-24T23:04:51Z<p>VS 2008 optimized mine to x << 1.</p>
<pre><code> x = x * 2;
004013E7 mov eax,dword ptr [x]
004013EA shl eax,1
004013EC mov dword ptr [x],eax
</code></pre>
<p>EDIT: This was using VS default "Debug" configuration with optimization disabled (/Od). Using any of the optimization switches (/O1, /O2 (VS "Retail"), or /Ox) results in the the add self code Rob posted. Also, just for good measure, I verified <code>x = x << 1</code> is indeed treated the same way as <code>x = x * 2</code> by the cl compiler in both /Od and /Ox. So, in summary, cl.exe version 15.00.30729.01 for x86 treats <code>* 2</code> and <code><< 1</code> identically and I expect nearly all other recent compilers do the same.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235162#235162-8Answer by T.E.D. for Do modern compilers optimize the x * 2 operation to x << 1?T.E.D.2008-10-24T20:32:20Z2008-10-24T20:32:20Z<p>It depends on what compiler you have. Visual C++ for example is notoriously poor in optimizing. If you edit your post to say what compiler you are using, it would be easier to answer. </p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235178#2351784Answer by plinth for Do modern compilers optimize the x * 2 operation to x << 1?plinth2008-10-24T20:39:48Z2008-10-24T20:39:48Z<p>The answer is "if it is faster" (or smaller). This depends on the target architecture heavily as well as the register usage model for a given compiler. In general, the answer is "yes, always" as this is a very simple peephole optimization to implement and is usually a decent win.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235203#2352030Answer by dwj for Do modern compilers optimize the x * 2 operation to x << 1?dwj2008-10-24T20:44:51Z2008-10-24T20:44:51Z<p>Unless something is specified in a languages standard you'll never get a guaranteed answer to such a question. When in doubt have your compiler spit out assemble code and check. That's going to be the only way to really know.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235291#23529117Answer by paercebal for Do modern compilers optimize the x * 2 operation to x << 1?paercebal2008-10-24T21:16:55Z2008-10-25T10:13:58Z<p>This article from Raymond Chen could be interesting:</p>
<p><strong>When is x/2 different from x>>1?</strong> :
<a href="http://blogs.msdn.com/oldnewthing/archive/2005/05/27/422551.aspx" rel="nofollow">http://blogs.msdn.com/oldnewthing/archive/2005/05/27/422551.aspx</a></p>
<p>Quoting Raymond:</p>
<blockquote>
<blockquote>
<p>Of course, the compiler is free to recognize this and rewrite your multiplication or shift operation. In fact, it is very likely to do this, because x+x is more easily pairable than a multiplication or shift. Your shift or multiply-by-two is probably going to be rewritten as something closer to an add eax, eax instruction.</p>
<p>[...]</p>
<p>Even if you assume that the shift fills with the sign bit, The result of the shift and the divide are different if x is negative.</p>
<p>(-1) / 2 ≡ 0<br>
(-1) >> 1 ≡ -1<br></p>
<p>[...]</p>
<p><strong>The moral of the story is to write what you mean. If you want to divide by two, then write "/2", not ">>1".</strong></p>
</blockquote>
</blockquote>
<p>We can only assume it is wise to tell the compiler what you want, not what you want him to do: <strong>The compiler is better than an human is at optimizing</strong> small scale code (thanks for Daemin to point this subtle point): If you really want optimization, use a profiler, and study your algorithms' efficiency.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235316#2353161Answer by Ferruccio for Do modern compilers optimize the x * 2 operation to x << 1?Ferruccio2008-10-24T21:22:51Z2008-10-24T23:53:15Z<p>I'm sure they all do these kind of optimizations, but I wonder if they are still relevant. Older processors did multiplication by shifting and adding, which could take a number of cycles to complete. Modern processors, on the other hand, have a set of barrel-shifters which can do all the necessary shifts and additions simultaneously in one clock cycle or less. Has anyone actually benchmarked whether these optimizations really help?</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/235699#2356990Answer by MBCook for Do modern compilers optimize the x * 2 operation to x << 1?MBCook2008-10-25T00:43:42Z2008-10-25T00:43:42Z<p>@Ferruccio Barletta</p>
<p>That's a good question. I went Googling to try to find the answer.</p>
<p>I couldn't find answers for Intel processors directly, but <a href="https://www.openrce.org/blog/view/1128/Opcode_execution_cost" rel="nofollow">this</a> page has someone who tried to time things. It shows shifts to be more than twice as fast as ads and multiplies. Bit shifts are so simple (where a multiply could be a shift and an addition) that this makes sense.</p>
<p>So then I Googled AMD, and found an old optimization guide for the Athlon from 2002 that lists that lists the fastest ways to multiply numbers by contants between 2 and 32. Interestingly, it depends on the number. Some are ads, some shifts. It's on <a href="http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/22007.pdf" rel="nofollow">page 122</a>.</p>
<p>A guide for the <a href="http://www.amd.com/us-en/assets/content_type/white_papers_and_tech_docs/25112.PDF" rel="nofollow">Athlon 64</a> shows the same thing (page 164 or so). It says multiplies are 3 (in 32-bit) or 4 (in 64-bit) cycle operations, where shifts are 1 and adds are 2.</p>
<p>It seems it is still useful as an optimization.</p>
<p>Ignoring cycle counts though, this kind of method would prevent you from tying up the multiplication execution units (possibly), so if you were doing lots of multiplications in a tight loop where some use constants and some don't the extra scheduling room might be useful.</p>
<p>But that's speculation.</p>
http://stackoverflow.com/questions/235072/do-modern-compilers-optimize-the-x-2-operation-to-x-1/261078#2610782Answer by Walter Bright for Do modern compilers optimize the x * 2 operation to x << 1?Walter Bright2008-11-04T06:34:16Z2008-11-04T06:34:16Z<p>That's only the start of what optimizers can do. To see what your compiler does, look for the switch that causes it to emit assembler source. For the Digital Mars compilers, the output assembler can be examined with the OBJ2ASM tool. If you want to learn how your compiler works, looking at the assembler output can be very illuminating.</p>