如何在Visual C ++ 6.0中编写以下内联汇编代码?

时间:2009-07-22 04:13:22

标签: c assembly inline-assembly vc6 visual-studio-6

我正在使用以下内联汇编在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中的等效内联汇编程序是什么?我发现我需要移植我的代码。

1 个答案:

答案 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中使用。