I'm trying to write GCC inline asm for CMPXCHG8B for ia32. No, I cannot use __sync_bool_compare_and_swap
. It has to work with and without -fPIC.
So far the best I've (EDIT: does not work after all, see my own answer below for details) is
register int32 ebx_val asm("ebx")= set & 0xFFFFFFFF;
asm ("lock; cmpxchg8b %0;"
"setz %1;"
: "+m" (*a), "=q" (ret), "+A" (*cmp)
: "r" (ebx_val), "c" ((int32)(set >> 32))
: "flags")
However I'm not sure if this is in fact correct.
I cannot do "b" ((int32)(set & 0xFFFFFFFF))
for ebx_val due to PIC, but apparently register asm("ebx")
variable is accepted by the compiler.
BONUS: the ret variable is used for branching, so the code ends up looking like this:
cmpxchg8b [edi];
setz cl;
cmp cl, 0;
je foo;
Any idea how to describe output operands so that it becomes:
cmpxchg8b [edi]
jz foo
?
Thank you.
How about the following, which seems to work for me in a small test:
int sbcas(uint64_t* ptr, uint64_t oldval, uint64_t newval)
{
int changed = 0;
__asm__ (
"push %%ebx\n\t" // -fPIC uses ebx, so save it
"mov %5, %%ebx\n\t" // load ebx with needed value
"lock\n\t"
"cmpxchg8b %0\n\t" // perform CAS operation
"setz %%al\n\t" // eax potentially modified anyway
"movzx %%al, %1\n\t" // store result of comparison in 'changed'
"pop %%ebx\n\t" // restore ebx
: "+m" (*ptr), "=r" (changed)
: "d" ((uint32_t)(oldval >> 32)), "a" ((uint32_t)(oldval & 0xffffffff)), "c" ((uint32_t)(newval >> 32)), "r" ((uint32_t)(newval & 0xffffffff))
: "flags", "memory"
);
return changed;
}
If this also gets miscompiled could you please include a small snippet that triggers this behavior?
Regarding the bonus question I don't think it is possible to branch after the assembler block using the condition code from the cmpxchg8b
instruction (unless you use the asm goto
or similar functionality). From GNU C Language Extensions:
It is a natural idea to look for a way to give access to the condition code left by the assembler instruction. However, when we attempted to implement this, we found no way to make it work reliably. The problem is that output operands might need reloading, which would result in additional following "store" instructions. On most machines, these instructions would alter the condition code before there was time to test it. This problem doesn't arise for ordinary "test" and "compare" instructions because they don't have any output operands.
EDIT: I Can't find any source that specifies one way or the other whether it is OK to modify the stack while also using the %N
input values (This ancient link says "You can even push your registers onto the stack, use them, and put them back." but the example doesn't have input).
But it should be possible to do without by fixing the values to other registers:
int sbcas(uint64_t* ptr, uint64_t oldval, uint64_t newval)
{
int changed = 0;
__asm__ (
"push %%ebx\n\t" // -fPIC uses ebx
"mov %%edi, %%ebx\n\t" // load ebx with needed value
"lock\n\t"
"cmpxchg8b (%%esi)\n\t"
"setz %%al\n\t" // eax potentially modified anyway
"movzx %%al, %1\n\t"
"pop %%ebx\n\t"
: "+S" (ptr), "=a" (changed)
: "0" (ptr), "d" ((uint32_t)(oldval >> 32)), "a" ((uint32_t)(oldval & 0xffffffff)), "c" ((uint32_t)(newval >> 32)), "D" ((uint32_t)(newval & 0xffffffff))
: "flags", "memory"
);
return changed;
}
This is what I have:
bool
spin_lock(int64_t* lock, int64_t thread_id, int tries)
{
register int32_t pic_hack asm("ebx") = thread_id & 0xffffffff;
retry:
if (tries-- > 0) {
asm goto ("lock cmpxchg8b %0; jnz %l[retry]"
:
: "m" (*lock), "A" ((int64_t) 0),
"c" ((int32_t) (thread_id >> 32)), "r" (pic_hack)
:
: retry);
return true;
}
return false;
}
It uses the asm goto
feature, new with gcc 4.5, that allows jumps from inline assembly into C labels. (Oh, I see your comment about having to support old versions of gcc. Oh well. I tried. :-P)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With