GCC inline assembler, mixing register sizes (x86) - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T08:54:45Zhttp://stackoverflow.com/feeds/question/118730http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/118730/gcc-inline-assembler-mixing-register-sizes-x866GCC inline assembler, mixing register sizes (x86)Nils Pipenbrinck2008-09-23T01:59:00Z2008-11-16T01:47:24Z
<p>Does anyone know how I can get rid of the following assembler warning?</p>
<p>Code is x86, 32 bit:</p>
<pre><code>int test (int x)
{
int y;
// do a bit-rotate by 8 on the lower word. leave upper word intact.
asm ("rorw $8, %0\n\t": "=q"(y) :"0"(x));
return y;
}
</code></pre>
<p>If I compile it I get the following (very valid) warning:</p>
<pre><code>Warning: using `%ax' instead of `%eax' due to `w' suffix
</code></pre>
<p>What I'm looking for is a way to tell the compiler/assembler that I want to access the lower 16 bit sub-register of %0. Accessing the byte sub-registers (in this case AL and AH) would be nice to know as well. </p>
<p>I've already choosen the "q" modifier, so the compiler is forced to use EAX, EBX, ECX or EDX. I've made sure the compiler has to picks a register that has sub-registers.</p>
<p>I know that I can force the asm-code to use a specific register (and it's sub-registers), but I want to leave the register-allocation job up to the compiler.</p>
http://stackoverflow.com/questions/118730/gcc-inline-assembler-mixing-register-sizes-x86/118737#11873712Answer by Chris Jester-Young for GCC inline assembler, mixing register sizes (x86)Chris Jester-Young2008-09-23T02:01:58Z2008-09-24T03:57:10Z<p>You can use <code>%w0</code> if I remember right. I just tested it, too. :-)</p>
<pre><code>int
test(int x)
{
int y;
asm ("rorw $8, %w0" : "=q" (y) : "0" (x));
return y;
}
</code></pre>
<p>Edit: In response to the OP, yes, you can do the following too:</p>
<pre><code>int
test(int x)
{
int y;
asm ("xchg %b0, %h0" : "=Q" (y) : "0" (x));
return y;
}
</code></pre>
<p>At present, the only place (that I know of) it's documented in is <code>gcc/config/i386/i386.md</code>, not in any of the standard documentation.</p>
http://stackoverflow.com/questions/118730/gcc-inline-assembler-mixing-register-sizes-x86/119365#1193650Answer by Dan for GCC inline assembler, mixing register sizes (x86)Dan2008-09-23T06:20:31Z2008-09-23T06:20:31Z<p>So apparently there are tricks to do this... but it may not be so efficient. 32-bit x86 processors are generally <b>slow</b> at manipulating 16-bit data in general purpose registers. You ought to benchmark it if performance is important.</p>
<p>Unless this is (a) performance critical and (b) proves to be much faster, I would save myself some maintenance hassle and just do it in C:</p>
<pre><code>uint32_t y, hi=(x&~0xffff), lo=(x&0xffff);
y = hi + (((lo >> 8) + (lo << 8))&0xffff);
</code></pre>
<p>With GCC 4.2 and -O2 this gets optimized down to six instructions...</p>
http://stackoverflow.com/questions/118730/gcc-inline-assembler-mixing-register-sizes-x86/120536#1205361Answer by Nils Pipenbrinck for GCC inline assembler, mixing register sizes (x86)Nils Pipenbrinck2008-09-23T12:01:03Z2008-09-23T12:01:03Z<p>@<a href="#119365" rel="nofollow">Dan</a>,</p>
<p>I need that lower byte swapping primitive for a larger tweak. </p>
<p>I know that 16 bit operations in 32 bit code have been slow and frowned upon, but the code will be surrounded with other 32 bit operations. I hope that the slowness of the 16 bit code will just get lost in the out of order scheduling.</p>
<p>What I want to archive in the end is a mechansim to do all 24 possible byte permutation of a dword in-place. For this you need only three instructions at most: low-byte swap (e.g. xchg al, ah), bswap and 32 bit rotates.</p>
<p>The in-place way does not need any constants (faster code fetch / decode time) and only uses a single register. For x86/32 that may save me up to 6 costly memory-accesses (push/pop) ontop of the ca. 10 instructions I save for byte shuffling. </p>
<p>First tests have shown that such a code can run up to three times faster on my core2, but I have to make more measurements on other machines before I can use it.</p>
<p>My secret plan is to integrate this tweak into GCC one day, but that may not ever happen because GCC is such a <em>huge</em> codebase.</p>
http://stackoverflow.com/questions/118730/gcc-inline-assembler-mixing-register-sizes-x86/122203#1222030Answer by Dan for GCC inline assembler, mixing register sizes (x86)Dan2008-09-23T16:41:26Z2008-09-23T16:41:26Z<p>@<a href="#120536" rel="nofollow">Nils</a>,</p>
<p>Gotcha. Well if it's a primitive routine that you're going to be reusing over and over, I have no argument with it... the register naming trick that Chris pointed out is a nice one that I'm going to have to remember.</p>
<p>It would be nice if it made it into the standard GCC docs too!</p>
http://stackoverflow.com/questions/118730/gcc-inline-assembler-mixing-register-sizes-x86/122375#1223750Answer by Dan for GCC inline assembler, mixing register sizes (x86)Dan2008-09-23T17:12:58Z2008-09-23T17:12:58Z<p>While I'm thinking about it ... you should replace the "q" constraint with a capital "Q" constraint in Chris's second solution:</p>
<pre><code>int
test(int x)
{
int y;
asm ("xchg %b0, %h0" : "=Q" (y) : "0" (x));
return y;
}
</code></pre>
<p>"q" and "Q" are slightly different in 64-bit mode, where you can get the lowest byte for all of the integer registers (ax, bx, cx, dx, si, di, sp, bp, r8-r15). But you can only get the second-lowest byte (e.g. ah) for the four original 386 registers (ax, bx, cx, dx).</p>