InterlockedExchange Visual Studio 2010 内在
我在编译器的优化设置中启用了内在函数,但是,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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
互锁的内在函数需要下划线前缀(或#pragma内在函数),因此您需要使用
_InterlockedExchange
,您还需要包括intrin.h
另外,您完整阅读了您的引用,它是这样说的:
the interlocked intrinsics require an underscore prefix (or
#pragma intrinsic
), so you want to use_InterlockedExchange
, you will also need to includeintrin.h
also, you you read your quote fully, it says this: