vote up 1 vote down star

I want to save memory by converting an existing 32 bit counter to a 16 bit counter. This counter is atomically incremented/decremented. If I do this:

  1. What instructions do I use for atomic_inc(uint16_t x) on x86/x86_64?
  2. Is this reliable in multi-processor x86/x86_64 machines?
  3. Is there a performance penalty to pay on any of these architectures for doing this?
  4. If yes for (3), what's the expected performance penalty?

Thanks for your comments!

flag
3  
Unless you've got a lot of counters (and that's a lot as in "megabytes") that seems to be an awful lot of effort to save 2 bytes. What is the actual problem that you're trying to solve here? – Timo Geusch Oct 9 at 6:04
Yeah, I have a lot of these counters amounting in megabytes. Each such counter represents pending operations on a corresponding block of memory. When the counter goes down to zero, I am supposed to trigger another operation. – Sudhanshu Oct 9 at 6:23

3 Answers

vote up 3 vote down check

Here's one that uses GCC assembly extensions, as an alternative to Steve's Delphi answer:

uint16_t atomic_inc(uint16_t volatile* ptr)
{
    uint16_t value(1);
    __asm__("lock xadd %w0, %w1" : "+r" (value) : "m" (*ptr));
    return ++value;
}

Change the 1 with -1, and the ++ with --, for decrement.

link|flag
Thanks, but I am really talking about AMD64/Pentiums here. :) – Sudhanshu Oct 9 at 6:35
That's cool. I'm still giving you a C alternative in case you don't want to code with Delphi. :-) – Chris Jester-Young Oct 9 at 6:36
(Well, change the initializers from uint_t value(1) to uint_t value = 1 for C (my C++ habits are getting to me), but yeah. :-P) – Chris Jester-Young Oct 9 at 6:38
vote up 0 vote down

To answer the other three questions:

  1. Didn't find a way to make a numbered list starting with 2
  2. Yes, this is reliable in a multiprocessor environment
  3. Yes, there is a performance penalty
  4. The "lock" prefix locks down the busses, not only for the processor, but for any external hardware, which may want to access the bus via DMA (mass storage, graphics...). So it is slow, typically ~100 clock cycles, but it may be more costly. But if you have "megabytes" of counters, chances are, you will be facing a cache miss, and in this case you will have to wait about ~100 clocks anyway (the memory access time), in case of a page miss, several hundred, so the overhead from lock might not matter.
link|flag
Thanks for your answer. It comes closest to what I was looking for after Chris's reply. – Sudhanshu Oct 12 at 14:05
vote up 3 vote down

Here is a Delphi function that works:

function LockedInc( var Target :WORD ) :WORD;
asm
        mov     ecx, eax
        mov     ax, 1
   Lock xadd    [ecx], ax
        Inc     eax
end;

I guess you could convert it to whichever language you require.

link|flag
To clarify for non Delphi/BASM users, I would add that in this (32 bit) routine, a pointer to Target will be passed in in EAX, and that the return value of the function will be in AX. – PhiS Oct 9 at 7:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.