我正在开发一个需要双倍宽度比较和交换操作 (cmpxchg16b) 的项目。我通过luke h找到了以下代码,但是当我使用“g++-4.7 -g -DDEBUG=1 -std=c++0x dwcas2.c -o dwcas2.o”编译它时,我收到以下错误:
错误:
g++-4.7 -g -DDEBUG=1 -m64 -std=c++0x dwcas2.c -o dwcas2.o
dwcas2.c: Assembler messages:
dwcas2.c:29: Error: junk `ptr ' after expression
有什么想法为什么?,我觉得它很小而且很容易修复,我只是看不到它。
计算机规格:运行 Ubuntu 12.04 LTS 的 64 核 ThinkMate RAX QS5-4410 服务器。它是一个 NUMA 系统,具有四个 AMD Opteron 6272 CPU(每个芯片 16 个内核 @2.1 GHz)和 314 GB 共享内存。
代码:
#include <stdint.h>
namespace types
{
struct uint128_t
{
uint64_t lo;
uint64_t hi;
}
__attribute__ (( __aligned__( 16 ) ));
}
template< class T > inline bool cas( volatile T * src, T cmp, T with );
template<> inline bool cas( volatile types::uint128_t * src, types::uint128_t cmp, types::uint128_t with )
{
bool result;
__asm__ __volatile__
(
"lock cmpxchg16b oword ptr %1\n\t"
"setz %0"
: "=q" ( result )
, "+m" ( *src )
, "+d" ( cmp.hi )
, "+a" ( cmp.lo )
: "c" ( with.hi )
, "b" ( with.lo )
: "cc"
);
return result;
}
int main()
{
using namespace types;
uint128_t test = { 0xdecafbad, 0xfeedbeef };
uint128_t cmp = test;
uint128_t with = { 0x55555555, 0xaaaaaaaa };
return ! cas( & test, cmp, with );
}