- 论坛徽章:
- 0
|
c调用汇编,编译出错,汇编看不懂呀 ,有哪位大神可以帮忙看一下,谢谢啦!
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
static inline unsigned long long m_atomic64_add_return(long long int *v, long long int inc)
{
long ret;
asm volatile(
"\n\tlwsync\n"
"1: ldarx %[ret],0,%[cnt]\n"
"add %[ret],%[inc],%[ret]\n"
"stdcx. %[ret],0,%[cnt]\n"
"bne- 1b\n"
"isync\n"
: [ret] "=&r" (ret)
: [inc] "r" (inc), [cnt] "r" (v)
: "cc", "memory" ;
return ret;
}
void main()
{
long long int x = 5;
long long int y = m_atomic64_add_return(&x, 1);
printf("x = %lld, y = %lld\n", x, y);
}
编译错误如下:
atomic.c: Assembler messages:
atomic.c:11: Error: no such instruction: `lwsync'
atomic.c:12: Error: no such instruction: `ldarx %rax,0,%rcx'
atomic.c:13: Error: number of operands mismatch for `add'
atomic.c:14: Error: no such instruction: `stdcx. %rax,0,%rcx'
atomic.c:15: Error: no such instruction: `bne- 1b'
atomic.c:16: Error: no such instruction: `isync'
|
|