vote up 2 vote down star
1

I would like to perform and atomic read of 64b aligned 64b data on x86 platform (Pentium or above guaranteed).

Is there a way to do this? (And no, I do not want to use a critical section or a mutex for this, I want this to be lock-free).

flag

please confirm - do you mean 64 bits, or bytes? – Alnitak Apr 24 at 21:15
1  
I'm assuming it's 64 bits. Bytes wouldn't really make sense. – Zifre Apr 24 at 21:18
The question would be better if it mentioned Windows in the text instead of just having the win32 tag. I see tags as aiding in searches, not information in themselves. – Zan Lynx Apr 24 at 23:50

3 Answers

vote up 2 vote down check

Use the Interlocked operations, here's some sample code:

LONGLONG AtomicRead(LONGLONG* p)
{
    return InterlockedCompareExchange64(p, 0, 0);
}

This does the compare exchange against zero and sets p to zero if it's already equal to zero -ie, it's a noop. InterlockedCompareExchange returns the original 64 bit value pointed to by p.

link|flag
InterlockedAdd() adding 0 is better - CAS has more work to do and uses up more cycles. – Blank Xavier Apr 24 at 21:52
1  
According to MSDN InterlockedAdd is only supported on Itanium. Even on x86, lock add is only a 32-bit read. – Michael Apr 24 at 22:02
I mean, InterlockedAdd64. – Michael Apr 24 at 22:11
vote up 0 vote down

Use the Interlocked*() functions.

There's no read per se - but you can issue an Add() where you add 0.

link|flag
1  
Why do you assume he is using Windows? – Zifre Apr 24 at 21:27
There is no Interlocked Add,Or/Xor on x86, only _InterlockedCompareExchange64 - see answer by Zifre – Suma Apr 24 at 21:41
1  
The question is currently flagged as "win32," so I think it's safe to assume the Windows functions are acceptable. – Max Lybbert Apr 24 at 21:53
Hope the author added that - it wasn't there originally; and someone has removed the lock-free tag I added. – Blank Xavier Apr 24 at 21:56
1  
InterlockedAdd64 doesn't work on 32 bit platforms - you'll need to emulate it with InterlockedCompareExchange64. – Michael Apr 24 at 22:02
vote up 6 vote down

This page describes how to do it. Basically you just have to use lock cmpxchg8b.

link|flag
1  
@Blank Xavier, why do you think he wants OS provided wrappers? And how do you know what OS he is using? – Zifre Apr 24 at 21:26
1  
I you're using MSVC++ check the _InterlockedCompareExchange compiler intrinsics. These are at least portable across windows platforms. – jn Apr 24 at 21:34
1  
I don't think inline asm is really a problem. The only bad thing about asm is that it is not portable, but this is specifically about x86, so it doesn't matter. The functions given in the page I linked to would certainly be callable from C++. – Zifre Apr 24 at 21:34
1  
Using OS functions, you get platform independence, but not OS independence. The OP specified x86 in the question, so I'm assuming OS independence would be more important that platform independence. – Zifre Apr 24 at 23:39
1  
x86 was mentioned since atomic 64 bit reads on x64 are a given.. – Michael Apr 25 at 1:23
show 4 more comments

Your Answer

Get an OpenID
or

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