InterlockedExchange Visual Studio 2010 内在

发布于 2024-12-29 01:02:42 字数 330 浏览 2 评论 0原文

我在编译器的优化设置中启用了内在函数,但是,InterlockedExchange 的生成代码是生成对 kernel32.dll 的调用,而不是生成内联汇编。这尤其成问题,因为该功能在 Vista 之前的 Windows 版本上不可用。

MSDN 文档指出“此函数是在可能的情况下使用编译器内部函数实现的”。是否可以让编译器使用 InterlockedExchange 的实际内部代码?

I have intrinsics enabled in the optimization settings for the compiler, however, the resulting code for InterlockedExchange is generating calls into kernel32.dll rather than producing inline assembly. This is especially problematic because the function is not available on versions of windows prior to Vista.

The MSDN documentation states "This function is implemented using a compiler intrinsic where possible". Is it possible to get the compiler to use actual intrinsic code for InterlockedExchange?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2025-01-05 01:02:42

互锁的内在函数需要下划线前缀(或#pragma内在函数),因此您需要使用_InterlockedExchange,您还需要包括intrin.h

另外,您完整阅读了您的引用,它是这样说的:

此函数是使用编译器内部函数实现的,其中
可能的。有关详细信息,请参阅 Winbase.h 头文件和
_InterlockedExchange

the interlocked intrinsics require an underscore prefix (or #pragma intrinsic), so you want to use _InterlockedExchange, you will also need to include intrin.h

also, you you read your quote fully, it says this:

This function is implemented using a compiler intrinsic where
possible. For more information, see the Winbase.h header file and
_InterlockedExchange.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文