我的 int 有什么问题吗?

发布于 2024-11-27 06:18:41 字数 393 浏览 0 评论 0原文

我尝试使用以下命令:

 __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 技术交流群。

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

发布评论

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

评论(2

禾厶谷欠 2024-12-04 06:18:41

我在这里没有看到问题 - 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.

眼泪淡了忧伤 2024-12-04 06:18:41

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?

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