我正在使用以下内联汇编在GCC(用于Linux / Ubuntu)中编写C语言的应用程序。
float a[4] = { 10, 20, 30, 40 };
float b[4] = { 0.1, 0.1, 0.1, 0.1 };
asm volatile("movups (%0), %%xmm0\n\t"
"mulps (%1), %%xmm0\n\t"
"movups %%xmm0, (%1)"
:: "r" (a), "r" (b));
原因上面的拼写错误(我是从记忆中写的)。 Visual C ++ 6.0中的等效内联汇编程序是什么?我发现我需要移植我的代码。
答案 0 :(得分:2)
__declspec(align(16)) float a[4] = { 10, 20, 30, 40 };
__declspec(align(16)) float b[4] = { 0.1f, 0.1f, 0.1f, 0.1f };
__asm {
movups xmm0, a; // could be movaps if array aligned
mulps xmm0, b;
movups b, xmm0; // could be movaps if array aligned
}
我不确定Visual C ++ 6,但它可以在Visual C ++ 2008中使用。