我的 int 有什么问题吗?
我尝试使用以下命令:
__m128i b = _mm_set_epi32 (y, y, x, x);
其中 y 和 x 是整数。
在我运行调试器的地方,我看到 b 的类型为: unsigned __int64[2]
我希望 b 是 4 个 32 位的整数(我认为这就是他们在这里所说的: http://msdn.microsoft.com/en-us/library/019beekt.aspx )
你知道我的代码出了什么问题吗?
谢谢
I've tried using the following command:
__m128i b = _mm_set_epi32 (y, y, x, x);
Where y and x are ints.
Where I run the debugger I see that b is of type: unsigned __int64[2]
I intended b to be 4 integers of 32 bits each (I think that's what they say here:
http://msdn.microsoft.com/en-us/library/019beekt.aspx )
Do you know what's wring with my code?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在这里没有看到问题 - 128 位整数由两个 64 位整数表示,这是 64 位 Intel CPU 可以处理的 SSE 寄存器之外的最大本机类型。
您的调试器可能显示“真实”类型,而不是类型定义或宏类型。
I don't see a problem here - a 128-bit integer is represented by two 64-bit integers, which is the largest native type outside of SSE registers a 64-bit Intel CPU can handle.
Your debugger is likely showing the "real" type, not the typedefed or macro'd type.
Typedef 是别名,您的调试器很可能会向您显示 __m128i 的别名值。在 C 中,定义新类型的唯一真正方法是通过 struct 关键字;所有其他技术(typedef 等)都会产生类型别名,可以用其等效项替换。
假设这是真的,除了显示与您预期不同之外,是否还存在其他问题?
Typedefs are aliases, odds are good your debugger is showing you the value __m128i is aliased to. In C the only real way to define a new type is through the struct keyword; all other techniques (typedef, etc) lead to type aliases which can be replaced with their equivalents.
Assuming that is true, is there an issue other than it is displaying differently than you expected?