gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 03:08:32 24 4
gpt4 key购买 nike

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

最佳答案

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

关于c - 如何在 Visual C++ 6.0 中编写以下内联汇编代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1163031/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com