summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/bits
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-08-03 14:21:54 +0300
committermidipix <writeonce@midipix.org>2015-09-26 11:16:39 -0400
commitca62e58b621c8423338a9fe404100726c4f134e6 (patch)
tree156e15c258c5146dc04a502ab658039f29b8d1da /include/ntapi/bits
parentdfd2ede4f6225c3bc1f7cee5c0dc40bfccef408c (diff)
downloadntapi-ca62e58b621c8423338a9fe404100726c4f134e6.tar.bz2
ntapi-ca62e58b621c8423338a9fe404100726c4f134e6.tar.xz
+ fix the atomic store functions to include a full memory barrier.
+ rewrite at_store_64 for i386 as a wrapper around a 64-bit cas operation.
Diffstat (limited to 'include/ntapi/bits')
-rw-r--r--include/ntapi/bits/i386/nt_atomic_i386_asm__gcc.h31
-rw-r--r--include/ntapi/bits/x86_64/nt_atomic_x86_64_asm__gcc.h9
2 files changed, 28 insertions, 12 deletions
diff --git a/include/ntapi/bits/i386/nt_atomic_i386_asm__gcc.h b/include/ntapi/bits/i386/nt_atomic_i386_asm__gcc.h
index 04c0a8f..23260e9 100644
--- a/include/ntapi/bits/i386/nt_atomic_i386_asm__gcc.h
+++ b/include/ntapi/bits/i386/nt_atomic_i386_asm__gcc.h
@@ -424,7 +424,9 @@ static __inline__ void at_store(
intptr_t val)
{
__asm__(
- "mov %1, %0"
+ "mov %1, %0;"
+ "lock;"
+ "orl $0,%0;"
: "=m" (*dst)
: "r" (val)
: "memory");
@@ -436,7 +438,9 @@ static __inline__ void at_store_32(
int32_t val)
{
__asm__(
- "mov %1, %0"
+ "mov %1, %0;"
+ "lock;"
+ "orl $0,%0;"
: "=m" (*dst)
: "r" (val)
: "memory");
@@ -445,15 +449,24 @@ static __inline__ void at_store_32(
static __inline__ void at_store_64(
volatile int64_t * dst,
- int64_t val)
+ int64_t xchg)
{
- __asm__(
- "mov %1, %0"
- : "=m" (*dst)
- : "r" (val)
- : "memory");
-}
+ int64_t cmp;
+ int64_t prev;
+ do {
+ prev = *dst;
+ cmp = prev;
+
+ __atomic_compare_exchange_n(
+ dst,
+ &cmp,
+ xchg,
+ 0,
+ __ATOMIC_SEQ_CST,
+ __ATOMIC_SEQ_CST);
+ } while (cmp != prev);
+}
static __inline__ int at_bsf(
unsigned int * index,
diff --git a/include/ntapi/bits/x86_64/nt_atomic_x86_64_asm__gcc.h b/include/ntapi/bits/x86_64/nt_atomic_x86_64_asm__gcc.h
index 84b9575..d4d4eb0 100644
--- a/include/ntapi/bits/x86_64/nt_atomic_x86_64_asm__gcc.h
+++ b/include/ntapi/bits/x86_64/nt_atomic_x86_64_asm__gcc.h
@@ -458,7 +458,8 @@ static __inline__ void at_store(
intptr_t val)
{
__asm__(
- "mov %1, %0"
+ "mov %1, %0;"
+ "mfence;"
: "=m" (*dst)
: "r" (val)
: "memory");
@@ -470,7 +471,8 @@ static __inline__ void at_store_32(
int32_t val)
{
__asm__(
- "mov %1, %0"
+ "mov %1, %0;"
+ "mfence;"
: "=m" (*dst)
: "r" (val)
: "memory");
@@ -482,7 +484,8 @@ static __inline__ void at_store_64(
int64_t val)
{
__asm__(
- "mov %1, %0"
+ "mov %1, %0;"
+ "mfence;"
: "=m" (*dst)
: "r" (val)
: "memory");