phobos/std/atomics.d
2008-08-03 19:26:00 +00:00

75 lines
1.3 KiB
D

// Written in the D programming language
// Put in the public domain by Bartosz Milewski
/**
Implements processor dependent parts of the atomics library.
Author: Bartosz Milewski
Macros:
WIKI = Phobos/Atomics
*/
version (D_InlineAsm_X86)
{
/**
Compare And Swap. The engine behind lock-free algorithms.
In one atomic operation, it tests the contents of $(D addr) and, if it's eqaul to $(D old), overwrites it with $(D new_val) and returns $(D true). Otherwise returns $(D false).
*/
bool CAS(uint * addr, uint old, uint new_val)
{
asm {
mov EDX, addr;
mov ECX, new_val;
mov EAX, old;
lock;
cmpxchg [EDX], ECX;
setz DL;
movzx EAX, DL;
}
}
/**
Stops the compiler from performing code motion across the barrier.
It's not a memory fence.
*/
void compiler_fence()
{
asm {
}
}
// The x86 implements processor-order memory model, so fences are not strictly necessary.
//
/** Memory read fence (includes compiler fence)
*/
void read_fence()
{
asm {
}
}
/** Memory write fence (includes compiler fence)
*/
void write_fence()
{
asm {
}
}
} // D_InlineAsm_X86
unittest
{
uint x = 1;
bool success = CAS(&x, 1, 2);
assert(success);
assert(x == 2);
success = CAS(&x, 1, 3);
assert(!success);
assert(x == 2);
}