我正在GCC中用C编写一个应用程序(对于Linux/Ubuntu),它使用以下内联程序集。
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中的等效内联汇编程序是什么?我发现我需要移植我的代码。
最佳答案
__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
}
我不确定VisualC++ 6,但它将在Visual C++ 2008中工作。
关于c - 如何在Visual C++ 6.0中编写以下内联汇编代码?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1163031/