mirror of
https://github.com/MariaDB/server.git
synced 2025-12-12 08:01:43 +03:00
into gbichot3.local:/home/mysql_src/mysql-maria BitKeeper/etc/ignore: auto-union BUILD/SETUP.sh: Auto merged client/mysqldump.c: Auto merged config/ac-macros/plugins.m4: Auto merged configure.in: Auto merged include/Makefile.am: Auto merged include/atomic/nolock.h: Auto merged include/atomic/rwlock.h: Auto merged include/atomic/x86-gcc.h: Auto merged include/atomic/x86-msvc.h: Auto merged include/ft_global.h: Auto merged include/keycache.h: Auto merged include/m_string.h: Auto merged include/my_atomic.h: Auto merged include/my_base.h: Auto merged include/my_dbug.h: Auto merged include/my_global.h: Auto merged include/my_handler.h: Auto merged include/my_sys.h: Auto merged include/myisam.h: Auto merged libmysql/CMakeLists.txt: Auto merged libmysqld/Makefile.am: Auto merged mysql-test/mysql-test-run.pl: Auto merged mysql-test/r/events_logs_tests.result: Auto merged mysql-test/t/events_logs_tests.test: Auto merged mysys/Makefile.am: Auto merged mysys/array.c: Auto merged mysys/mf_keycache.c: Auto merged mysys/mf_keycaches.c: Auto merged mysys/my_atomic.c: Auto merged mysys/my_bit.c: Auto merged mysys/my_bitmap.c: Auto merged mysys/my_create.c: Auto merged mysys/my_delete.c: Auto merged mysys/my_getsystime.c: Auto merged mysys/my_handler.c: Auto merged mysys/my_init.c: Auto merged mysys/my_open.c: Auto merged mysys/my_pread.c: Auto merged mysys/my_rename.c: Auto merged mysys/my_symlink.c: Auto merged mysys/my_sync.c: Auto merged plugin/daemon_example/daemon_example.cc: Auto merged sql/Makefile.am: Auto merged sql/filesort.cc: Auto merged sql/gen_lex_hash.cc: Auto merged sql/ha_ndbcluster.cc: Auto merged sql/handler.h: Auto merged sql/item_func.cc: Auto merged sql/item_func.h: Auto merged sql/log.cc: Auto merged sql/mysql_priv.h: Auto merged sql/set_var.h: Auto merged sql/sql_class.h: Auto merged sql/sql_parse.cc: Auto merged sql/sql_select.cc: Auto merged sql/sql_sort.h: Auto merged sql/sql_test.cc: Auto merged sql/uniques.cc: Auto merged sql/unireg.cc: Auto merged storage/Makefile.am: Auto merged storage/csv/ha_tina.cc: Auto merged storage/myisam/Makefile.am: Auto merged storage/myisam/ft_boolean_search.c: Auto merged storage/myisam/ft_nlq_search.c: Auto merged storage/myisam/ft_parser.c: Auto merged storage/myisam/ft_static.c: Auto merged storage/myisam/ft_stopwords.c: Auto merged storage/myisam/ft_update.c: Auto merged storage/myisam/fulltext.h: Auto merged storage/myisam/ha_myisam.h: Auto merged storage/myisam/mi_check.c: Auto merged storage/myisam/mi_create.c: Auto merged storage/myisam/mi_delete.c: Auto merged storage/myisam/mi_delete_all.c: Auto merged storage/myisam/mi_dynrec.c: Auto merged storage/myisam/mi_key.c: Auto merged storage/myisam/mi_log.c: Auto merged storage/myisam/mi_open.c: Auto merged storage/myisam/mi_packrec.c: Auto merged storage/myisam/mi_range.c: Auto merged storage/myisam/mi_rsamepos.c: Auto merged storage/myisam/mi_search.c: Auto merged storage/myisam/mi_test1.c: Auto merged storage/myisam/mi_test2.c: Auto merged storage/myisam/mi_unique.c: Auto merged storage/myisam/mi_update.c: Auto merged storage/myisam/mi_write.c: Auto merged storage/myisam/myisamchk.c: Auto merged storage/myisam/myisamlog.c: Auto merged storage/myisam/myisampack.c: Auto merged storage/myisam/rt_index.c: Auto merged storage/myisam/sort.c: Auto merged storage/myisammrg/ha_myisammrg.h: Auto merged unittest/mytap/tap.c: Auto merged mysql-test/r/view.result: manual merge mysql-test/t/view.test: manual merge Makefile.am: manual merge mysql-test/t/disabled.def: manual merge sql/mysqld.cc: manual merge sql/set_var.cc: manual merge sql/udf_example.c: manual merge storage/myisam/ha_myisam.cc: manual merge storage/myisam/myisamdef.h: manual merge storage/ndb/src/mgmapi/mgmapi.cpp: manual merge unittest/Makefile.am: manual merge unittest/mysys/Makefile.am: manual merge unittest/mysys/my_atomic-t.c: manual merge
97 lines
2.6 KiB
C
97 lines
2.6 KiB
C
/* Copyright (C) 2006 MySQL AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
/*
|
|
XXX 64-bit atomic operations can be implemented using
|
|
cmpxchg8b, if necessary
|
|
*/
|
|
|
|
// Would it be better to use intrinsics ?
|
|
// (InterlockedCompareExchange, InterlockedCompareExchange16
|
|
// InterlockedExchangeAdd, InterlockedExchange)
|
|
|
|
#ifndef _atomic_h_cleanup_
|
|
#define _atomic_h_cleanup_ "atomic/x86-msvc.h"
|
|
|
|
#define MY_ATOMIC_MODE "msvc-x86" LOCK_prefix
|
|
|
|
#define make_atomic_add_body(S) \
|
|
_asm { \
|
|
_asm mov reg_ ## S, v \
|
|
_asm LOCK_prefix xadd *a, reg_ ## S \
|
|
_asm movzx v, reg_ ## S \
|
|
}
|
|
#define make_atomic_cas_body(S) \
|
|
_asm { \
|
|
_asm mov areg_ ## S, *cmp \
|
|
_asm mov reg2_ ## S, set \
|
|
_asm LOCK_prefix cmpxchg *a, reg2_ ## S \
|
|
_asm mov *cmp, areg_ ## S \
|
|
_asm setz al \
|
|
_asm movzx ret, al \
|
|
}
|
|
#define make_atomic_fas_body(S) \
|
|
_asm { \
|
|
_asm mov reg_ ## S, v \
|
|
_asm xchg *a, reg_ ## S \
|
|
_asm mov v, reg_ ## S \
|
|
}
|
|
|
|
#ifdef MY_ATOMIC_MODE_DUMMY
|
|
#define make_atomic_load_body(S) ret=*a
|
|
#define make_atomic_store_body(S) *a=v
|
|
#else
|
|
/*
|
|
Actually 32-bit reads/writes are always atomic on x86
|
|
But we add LOCK_prefix here anyway to force memory barriers
|
|
*/
|
|
#define make_atomic_load_body(S) \
|
|
_asm { \
|
|
_asm mov areg_ ## S, 0 \
|
|
_asm mov reg2_ ## S, areg_ ## S \
|
|
_asm LOCK_prefix cmpxchg *a, reg2_ ## S \
|
|
_asm mov ret, areg_ ## S \
|
|
}
|
|
#define make_atomic_store_body(S) \
|
|
_asm { \
|
|
_asm mov reg_ ## S, v \
|
|
_asm xchg *a, reg_ ## S \
|
|
}
|
|
#endif
|
|
|
|
#define reg_8 al
|
|
#define reg_16 ax
|
|
#define reg_32 eax
|
|
#define areg_8 al
|
|
#define areg_16 ax
|
|
#define areg_32 eax
|
|
#define reg2_8 bl
|
|
#define reg2_16 bx
|
|
#define reg2_32 ebx
|
|
|
|
#else /* cleanup */
|
|
|
|
#undef reg_8
|
|
#undef reg_16
|
|
#undef reg_32
|
|
#undef areg_8
|
|
#undef areg_16
|
|
#undef areg_32
|
|
#undef reg2_8
|
|
#undef reg2_16
|
|
#undef reg2_32
|
|
#endif
|
|
|