vote up 3 vote down star

Herlihy and Shavit's book (The Art of Multiprocessor Programming) solution to memory reclamation uses Java's AtomicStampedReference<T>;.

To write one in C++ for the x86_64 I imagine requires at least a 12 byte swap operation - 8 for a 64bit pointer and 4 for the int.

Is there x86 hardware support for this and if not, any pointers on how to do wait-free memory reclamation without it?

flag
I gave up (boo me). I just stole 16 bits for the counter from the 64bit pointer - x86_64 only uses 48 bits for actual addressing! - and, used GCC's __sync_bool_compare_and_swap_8. Windows of course has InterlockedExchange64. What I would have been after was a 128-byte length version, but there's no 128-byte native type, so there are no built-in fns, I would have had to write my own in assembly. The vendors /could/ supply one though; just use a struct wrapping a union of arrays of different types (all 128 bytes though), and though the user would have to cast, it'd at least work. – JDonner Aug 6 at 23:10

4 Answers

vote up 1 vote down

Windows gives you a bunch of Interlocked functions that are atomic and can probably be used to do what you want. Similar functions exist for other platforms, and I believe Boost has an interlocked library as well.

Your question isn't super clear and I don't have a copy of Herlihy and Shavit laying around. Perhaps if you elaborated or gave psuedo code outlining what you want to do, we can give you a more specific answer.

link|flag
Yeah, I wanted to compare a 64bit ptr + 32bit int, with another, and swap, both together, atomically etc etc. Windows has at max InterlockedCompare64Exchange128, I was after a hypothetical InterlockedCompare128Exchange128 (or 96 really but...). The problem is that such a function has have to have a signature, and what is there that's 128 bytes? So neither Windows nor GCC have one. But luckily as I explain above, 64 bits is enough if you're willing to 'risk' a counter of just 65536 (16bits); just fold it into and out of the pointer appropriately, x86_64 seems to use only 48 bits of address spc. – JDonner Aug 6 at 23:21
You want __InterlockedCompareExchange128; msdn.microsoft.com/en-us/library/… Note the double leading underscores. – Blank Xavier Sep 9 at 13:28
vote up 0 vote down

Ok hopefully, I have the book,

For others that may provides answers, the point is to implement this class :

class AtomicReference<T>{
  public:
    void set(T *ref, int stamp){ ... }
    T *get(int *stamp){ ... }
  private:  
    T *_ref; 
    int _stamp;

};

in a lock-free way so that :

  • set() updates the reference and the stamp, atomicly.
  • get() returns the reference and set *stamp to the stamp corresponding to the reference.

JDonner please, correct me if I am wrong.

Now my answer : I don't think you can do it without a lock somewhere (a lock can be while(test_and_set() != ..)). Therefore there is no lockfree algorithm for this. This would mean that it is possible to build an N-bythe register a lock-free way for any N.

If you look at the book pragma 9.8.1, The AtomicMarkableReference wich is the same with a single bit insteam of an integer stamp. The author suggest to "steal" a bit from a pointer to extract the mark and the pointer from a single word (alsmost quoted) This obviously mean that they want to use a single atomic register to do it.

However, there may be a way to bluid a wait-free memory reclamation without it. I don't know.

link|flag
"Therefore there is no lockfree algorithm for this. " Well, an AtomicReference is used as part of algorithms, so if several threads are using it, as long as some thread makes progress (see page 99 of the same book) it's still lock-free. Not wait-free though as I originally said. – JDonner Aug 6 at 22:58
vote up 3 vote down

Yes, there is hardware support, though I don't know if it is exposed by C++ libraries. Anyway, if you don't mind doing some low-level unportable assembly language trickery - look up the CMPXCHG16B instruction in Intel manuals.

link|flag
1  
Compare and swap or any other Read-Modify-Write instruction are the primitive for any synchronization on modern processor. Using them instead of higher level synchronization object (mutexes or semaphores) does not mean your algorithm is lock-free. However, if you use gcc or icc I suggest you have a look on this instead of using asm instructions gcc.gnu.org/onlinedocs/gcc-4.1.2/… – Ben Jun 30 at 8:36
GCC has no built-in atomic for double-word CAS. You have to use asm. – Blank Xavier Sep 9 at 13:26
vote up 1 vote down

Yes, x64 supports this; you need to use CMPXCHG16B.

link|flag

Your Answer

Get an OpenID
or

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