vote up 6 vote down star
3

Hi, just curious to know which CPU architectures support compare and swap atomic primitives?

flag

7 Answers

vote up 2 vote down

Sparc v9 has a cas instruction. The SPARC v9 architecture manual discusses the use of the CAS instruction in Annex J, look specifically at examples J.11 and J.12.

I believe the name of the instruction is actually "casa", because it can access either the current address space or an alternate. "cas" is an assembler macro which accesses the current ASI.

There is also an article on developers.sun.com discussing the various atomic instructions which Sparc processors have implemented over the years, including cas.

link|flag
What is it? Can you give a link? – ceretullis Sep 30 '08 at 4:51
I edited the answer to provide more details and links. – DGentry Sep 30 '08 at 5:23
Note though that x86 has double word CAS and the other non-SPARC CPUs have ll/cs - both of which solve ABA with a counter. Single word CAS does not permit solving ABA with a counter and as such SPARC is badly disadvantaged compared to other architectures. – Blank Xavier Nov 4 at 12:30
vote up 2 vote down

The x86 and Itanium have CMPXCHG (compare and exchange)

link|flag
Note to old hardware hackers, this instruction wasn't added until the i486. – Brian Knoblauch Sep 30 '08 at 11:58
vote up 4 vote down

Intel x86 has this support. IBM in it's Solaris to Linux Porting Guide gives this example:

bool_t My_CompareAndSwap(IN int *ptr, IN int old, IN int new)
{
        unsigned char ret;

        /* Note that sete sets a 'byte' not the word */
        __asm__ __volatile__ (
                "  lock\n"
                "  cmpxchgl %2,%1\n"
                "  sete %0\n"
                : "=q" (ret), "=m" (*ptr)
                : "r" (new), "m" (*ptr), "a" (old)
                : "memory");

        return ret;
}
link|flag
This code is wrong. For example, it doesn't clobber cc. – Blank Xavier Nov 4 at 12:29
vote up 4 vote down

Powerpc has more powerful primitives available: "lwarx" and "stwcx"

lwarx loads a value from memory but remembers the location. Any other thread or cpu that touches that location will cause the "stwcx", a conditional store instruction, to fail.

So the lwarx /stwcx combo allows you to implement atomic increment / decrement, compare and swap, and more powerful atomic operations like "atomic increment circular buffer index"

--jeffk++

link|flag
vote up 3 vote down

Starting with the ARMv6 architecture ARM has the LDREX/STREX instructions that can be used to implement an atomic compare-exchange operation.

link|flag
Is ARM's LDREX/STREX similar to PPC's LWARX/STWCX? – ceretullis Sep 30 '08 at 5:56
I believe so - the ARM Tech Ref manual's explanation of LDREX/STREX is rather complex (and for the PowerPC I'm going by Jeff Koftinoff's explanation) so there may well be some difference in the details. – Michael Burr Sep 30 '08 at 6:31
vote up 2 vote down

Just to complete the list, MIPS has Load Linked (ll) and Store Conditional (sc) instructions which load a value from memory and later conditionally store if no other CPU has accessed the location. Its true that you can use these instructions to perform swap, increment, and other operations. However the disadvantage is that with a large number of CPUs exercising locks very heavily you get into livelock: the conditional store will frequently fail and necessitate another loop to try again, which will fail, etc.

The software mutex_lock implementation can become very complicated trying to implement an exponential backoff if these situations are considered important enough to worry about. In one system I worked on with 128 cores, they were.

link|flag
I agree, lock contention is something that has to be watched very carefully when using non-locking data-structures (which typically use CAS). Thanks for the note. – ceretullis Oct 1 '08 at 17:15
vote up 0 vote down

A different and easier way to answer this question may be to list multiprocessor platforms that do NOT support a compare and swap (or a load-link/store-conditional that can be used to write one).

The only one I know of is PARISC, which only has an atomic clear word instruction. This can be used to construct a mutex (provided one aligns the word on a 16 byte boundary). There is no CAS on this archetecture (unlike x86, ia64, ppc, sparc, mips, s390, ...)

link|flag

Your Answer

Get an OpenID
or

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