我无法让 GCC 内联汇编器接受一些 Power9 的内联汇编。
我试图让 GCC 接受的常规程序集是darn 3, 1
, where 3
isr3
和is文档中1
调用的参数。L
它在 big-endian 上反汇编为:
0: e6 05 61 7c darn r3,1
在小端上:
0: 7c 61 05 e6 darn r3,1
由于各种原因和问题,包括旧的编译器和冒充其他编译器的编译器,我想为指令发出字节码。我的测试程序:
gcc112:~$ cat test.c
#include <stdint.h>
void random()
{
volatile uint64_t x = __builtin_darn();
__asm__ __volatile__ ("darn 3, 1");
uint64_t y;
__asm__ __volatile__ (".byte 0x7c, 0x61, 0x05, 0xe6 \n" : "=r3" (y));
}
编译它会导致:
$ /opt/cfarm/gcc-latest/bin/gcc -mcpu=power9 -c test.c
test.c: In function 'random':
test.c:10:3: error: matching constraint not valid in output operand
__asm__ __volatile__ (".byte 0x7c, 0x61, 0x05, 0xe6 \n" : "=r3" (y));
^~~~~~~
test.c:10:3: error: matching constraint not valid in output operand
test.c:10:3: error: invalid lvalue in asm output 0
这是应该涵盖它的 GCC 内联汇编手册的部分,但我没有看到它解释:6.45.2.3 Output Operands。我还检查了简单和机器约束,但没有看到。
我如何告诉 GCC 执行指令,然后r3
进入y
?
我们在 x86 上使用rdrand
. 它在所有版本的 GCC 上都可以正常工作,回到 2.9:
uint64_t temp;
__asm__ __volatile__
(
// radrand rax with retry
"1:\n"
".byte 0x48, 0x0f, 0xc7, 0xf0;\n"
"jnc 1b;\n"
: "=a" (temp)
: : "cc"
);