74 lines
3.8 KiB
C
74 lines
3.8 KiB
C
/*
|
|
Copyright 2005-2016 Intel Corporation. All Rights Reserved.
|
|
|
|
This file is part of Threading Building Blocks. Threading Building Blocks is free software;
|
|
you can redistribute it and/or modify it under the terms of the GNU General Public License
|
|
version 2 as published by the Free Software Foundation. Threading Building Blocks 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 Threading Building Blocks; if not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
As a special exception, you may use this file as part of a free software library without
|
|
restriction. Specifically, if other files instantiate templates or use macros or inline
|
|
functions from this file, or you compile this file and link it with other files to produce
|
|
an executable, this file does not by itself cause the resulting executable to be covered
|
|
by the GNU General Public License. This exception does not however invalidate any other
|
|
reasons why the executable file might be covered by the GNU General Public License.
|
|
*/
|
|
|
|
#if !defined(__TBB_machine_H) || defined(__TBB_machine_windows_intel64_H)
|
|
#error Do not #include this internal file directly; use public TBB headers instead.
|
|
#endif
|
|
|
|
#define __TBB_machine_windows_intel64_H
|
|
|
|
#define __TBB_WORDSIZE 8
|
|
#define __TBB_ENDIANNESS __TBB_ENDIAN_LITTLE
|
|
|
|
#include "msvc_ia32_common.h"
|
|
|
|
#ifndef __TBB_ATOMIC_PRIMITIVES_DEFINED
|
|
|
|
#include <intrin.h>
|
|
#pragma intrinsic(_InterlockedCompareExchange,_InterlockedExchangeAdd,_InterlockedExchange)
|
|
#pragma intrinsic(_InterlockedCompareExchange64,_InterlockedExchangeAdd64,_InterlockedExchange64)
|
|
|
|
// ATTENTION: if you ever change argument types in machine-specific primitives,
|
|
// please take care of atomic_word<> specializations in tbb/atomic.h
|
|
extern "C" {
|
|
__int8 __TBB_EXPORTED_FUNC __TBB_machine_cmpswp1 (volatile void *ptr, __int8 value, __int8 comparand );
|
|
__int8 __TBB_EXPORTED_FUNC __TBB_machine_fetchadd1 (volatile void *ptr, __int8 addend );
|
|
__int8 __TBB_EXPORTED_FUNC __TBB_machine_fetchstore1 (volatile void *ptr, __int8 value );
|
|
__int16 __TBB_EXPORTED_FUNC __TBB_machine_cmpswp2 (volatile void *ptr, __int16 value, __int16 comparand );
|
|
__int16 __TBB_EXPORTED_FUNC __TBB_machine_fetchadd2 (volatile void *ptr, __int16 addend );
|
|
__int16 __TBB_EXPORTED_FUNC __TBB_machine_fetchstore2 (volatile void *ptr, __int16 value );
|
|
}
|
|
|
|
inline long __TBB_machine_cmpswp4 (volatile void *ptr, __int32 value, __int32 comparand ) {
|
|
return _InterlockedCompareExchange( (long*)ptr, value, comparand );
|
|
}
|
|
inline long __TBB_machine_fetchadd4 (volatile void *ptr, __int32 addend ) {
|
|
return _InterlockedExchangeAdd( (long*)ptr, addend );
|
|
}
|
|
inline long __TBB_machine_fetchstore4 (volatile void *ptr, __int32 value ) {
|
|
return _InterlockedExchange( (long*)ptr, value );
|
|
}
|
|
|
|
inline __int64 __TBB_machine_cmpswp8 (volatile void *ptr, __int64 value, __int64 comparand ) {
|
|
return _InterlockedCompareExchange64( (__int64*)ptr, value, comparand );
|
|
}
|
|
inline __int64 __TBB_machine_fetchadd8 (volatile void *ptr, __int64 addend ) {
|
|
return _InterlockedExchangeAdd64( (__int64*)ptr, addend );
|
|
}
|
|
inline __int64 __TBB_machine_fetchstore8 (volatile void *ptr, __int64 value ) {
|
|
return _InterlockedExchange64( (__int64*)ptr, value );
|
|
}
|
|
|
|
#endif /*__TBB_ATOMIC_PRIMITIVES_DEFINED*/
|
|
|
|
#define __TBB_USE_FETCHSTORE_AS_FULL_FENCED_STORE 1
|
|
#define __TBB_USE_GENERIC_HALF_FENCED_LOAD_STORE 1
|
|
#define __TBB_USE_GENERIC_RELAXED_LOAD_STORE 1
|
|
#define __TBB_USE_GENERIC_SEQUENTIAL_CONSISTENCY_LOAD_STORE 1
|