Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6909ab26
Commit
6909ab26
authored
Aug 01, 2006
by
gkodinov/kgeorge@macbook.gmz
Browse files
Options
Browse Files
Download
Plain Diff
serg's MacOSX-intel portability diff
parents
dda7a95c
5e2777b4
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
15 deletions
+38
-15
include/atomic/nolock.h
include/atomic/nolock.h
+4
-2
include/atomic/x86-gcc.h
include/atomic/x86-gcc.h
+12
-6
include/atomic/x86-msvc.h
include/atomic/x86-msvc.h
+1
-1
include/my_atomic.h
include/my_atomic.h
+20
-6
mysys/my_atomic.c
mysys/my_atomic.c
+1
-0
No files found.
include/atomic/nolock.h
View file @
6909ab26
...
@@ -15,11 +15,13 @@
...
@@ -15,11 +15,13 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#if defined(__i386__) || defined(_M_IX86)
#if defined(__i386__) || defined(_M_IX86)
#ifdef MY_ATOMIC_MODE_DUMMY
#ifdef MY_ATOMIC_MODE_DUMMY
# define LOCK ""
# define LOCK ""
#else
#else
# define LOCK "lock
"
# define LOCK "lock"
#endif
#endif
#ifdef __GNUC__
#ifdef __GNUC__
#include "x86-gcc.h"
#include "x86-gcc.h"
#elif defined(_MSC_VER)
#elif defined(_MSC_VER)
...
@@ -27,7 +29,7 @@
...
@@ -27,7 +29,7 @@
#endif
#endif
#endif
#endif
#ifdef make_atomic_
add
_body
#ifdef make_atomic_
cas
_body
typedef
struct
{
}
my_atomic_rwlock_t
;
typedef
struct
{
}
my_atomic_rwlock_t
;
#define my_atomic_rwlock_destroy(name)
#define my_atomic_rwlock_destroy(name)
...
...
include/atomic/x86-gcc.h
View file @
6909ab26
...
@@ -20,19 +20,25 @@
...
@@ -20,19 +20,25 @@
architectures support double-word (128-bit) cas.
architectures support double-word (128-bit) cas.
*/
*/
#define MY_ATOMIC_MODE "gcc-x86" ## LOCK
#ifdef MY_ATOMIC_NO_XADD
#define MY_ATOMIC_MODE "gcc-x86" LOCK "-no-xadd"
#else
#define MY_ATOMIC_MODE "gcc-x86" LOCK
#endif
/* fix -ansi errors while maintaining readability */
/* fix -ansi errors while maintaining readability */
#ifndef asm
#ifndef asm
#define asm __asm__
#define asm __asm__
#endif
#endif
#ifndef MY_ATOMIC_NO_XADD
#define make_atomic_add_body(S) \
#define make_atomic_add_body(S) \
asm volatile (LOCK "xadd %0, %1;" : "+r" (v) , "+m" (*a))
asm volatile (LOCK "; xadd %0, %1;" : "+r" (v) , "+m" (*a))
#endif
#define make_atomic_swap_body(S) \
#define make_atomic_swap_body(S) \
asm volatile ("xchg %0, %1;" : "+r" (v) , "+m" (*a))
asm volatile ("
;
xchg %0, %1;" : "+r" (v) , "+m" (*a))
#define make_atomic_cas_body(S) \
#define make_atomic_cas_body(S) \
asm volatile (LOCK "
cmpxchg %3, %0; setz %2;"
\
asm volatile (LOCK "
; cmpxchg %3, %0; setz %2;"
\
: "+m" (*a), "+a" (*cmp), "=q" (ret): "r" (set))
: "+m" (*a), "+a" (*cmp), "=q" (ret): "r" (set))
#ifdef MY_ATOMIC_MODE_DUMMY
#ifdef MY_ATOMIC_MODE_DUMMY
...
@@ -45,9 +51,9 @@
...
@@ -45,9 +51,9 @@
*/
*/
#define make_atomic_load_body(S) \
#define make_atomic_load_body(S) \
ret=0; \
ret=0; \
asm volatile (LOCK "cmpxchg %2, %0" \
asm volatile (LOCK "
;
cmpxchg %2, %0" \
: "+m" (*a), "+a" (ret): "r" (ret))
: "+m" (*a), "+a" (ret): "r" (ret))
#define make_atomic_store_body(S) \
#define make_atomic_store_body(S) \
asm volatile ("xchg %0, %1;" : "+m" (*a) : "r" (v))
asm volatile ("
;
xchg %0, %1;" : "+m" (*a) : "r" (v))
#endif
#endif
include/atomic/x86-msvc.h
View file @
6909ab26
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
#ifndef _atomic_h_cleanup_
#ifndef _atomic_h_cleanup_
#define _atomic_h_cleanup_ "atomic/x86-msvc.h"
#define _atomic_h_cleanup_ "atomic/x86-msvc.h"
#define MY_ATOMIC_MODE "msvc-x86"
##
LOCK
#define MY_ATOMIC_MODE "msvc-x86" LOCK
#define make_atomic_add_body(S) \
#define make_atomic_add_body(S) \
_asm { \
_asm { \
...
...
include/my_atomic.h
View file @
6909ab26
...
@@ -22,10 +22,17 @@
...
@@ -22,10 +22,17 @@
#include "atomic/nolock.h"
#include "atomic/nolock.h"
#endif
#endif
#ifndef m
y_atomic_rwlock_init
#ifndef m
ake_atomic_cas_body
#include "atomic/rwlock.h"
#include "atomic/rwlock.h"
#endif
#endif
#ifndef make_atomic_add_body
#define make_atomic_add_body(S) \
int ## S tmp=*a; \
while (!my_atomic_cas ## S(a, &tmp, tmp+v)); \
v=tmp;
#endif
#ifdef HAVE_INLINE
#ifdef HAVE_INLINE
#define make_atomic_add(S) \
#define make_atomic_add(S) \
...
@@ -87,15 +94,15 @@ extern void my_atomic_store ## S(int ## S volatile *a, int ## S v);
...
@@ -87,15 +94,15 @@ extern void my_atomic_store ## S(int ## S volatile *a, int ## S v);
#endif
#endif
make_atomic_add
(
8
)
make_atomic_add
(
16
)
make_atomic_add
(
32
)
make_atomic_cas
(
8
)
make_atomic_cas
(
8
)
make_atomic_cas
(
16
)
make_atomic_cas
(
16
)
make_atomic_cas
(
32
)
make_atomic_cas
(
32
)
make_atomic_cas
(
ptr
)
make_atomic_cas
(
ptr
)
make_atomic_add
(
8
)
make_atomic_add
(
16
)
make_atomic_add
(
32
)
make_atomic_load
(
8
)
make_atomic_load
(
8
)
make_atomic_load
(
16
)
make_atomic_load
(
16
)
make_atomic_load
(
32
)
make_atomic_load
(
32
)
...
@@ -116,13 +123,20 @@ make_atomic_swap(ptr)
...
@@ -116,13 +123,20 @@ make_atomic_swap(ptr)
#undef make_atomic_load
#undef make_atomic_load
#undef make_atomic_store
#undef make_atomic_store
#undef make_atomic_swap
#undef make_atomic_swap
#undef intaptr
#undef make_atomic_add_body
#undef make_atomic_cas_body
#undef make_atomic_load_body
#undef make_atomic_store_body
#undef make_atomic_swap_body
#undef intptr
#ifdef _atomic_h_cleanup_
#ifdef _atomic_h_cleanup_
#include _atomic_h_cleanup_
#include _atomic_h_cleanup_
#undef _atomic_h_cleanup_
#undef _atomic_h_cleanup_
#endif
#endif
typedef
int32
intptr
;
/* TODO configure check */
#define MY_ATOMIC_OK 0
#define MY_ATOMIC_OK 0
#define MY_ATOMIC_NOT_1CPU 1
#define MY_ATOMIC_NOT_1CPU 1
extern
int
my_atomic_initialize
();
extern
int
my_atomic_initialize
();
...
...
mysys/my_atomic.c
View file @
6909ab26
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
*/
*/
int
my_atomic_initialize
()
int
my_atomic_initialize
()
{
{
DBUG_ASSERT
(
sizeof
(
intptr
)
==
sizeof
(
void
*
));
/* currently the only thing worth checking is SMP/UP issue */
/* currently the only thing worth checking is SMP/UP issue */
#ifdef MY_ATOMIC_MODE_DUMMY
#ifdef MY_ATOMIC_MODE_DUMMY
return
my_getncpus
()
==
1
?
MY_ATOMIC_OK
:
MY_ATOMIC_NOT_1CPU
;
return
my_getncpus
()
==
1
?
MY_ATOMIC_OK
:
MY_ATOMIC_NOT_1CPU
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment