将内部 xmm 寄存器转换为 uint8_t 数组[16]
如何有效地将 xmm 寄存器转储到 uint8_t 数组 [16] 中?
How can I efficiently dump xmm register into uint8_t array[16]?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何有效地将 xmm 寄存器转储到 uint8_t 数组 [16] 中?
How can I efficiently dump xmm register into uint8_t array[16]?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
_mm_store_si128 将 sse2 寄存器内容存储到指定的内存中。
_mm_store_ps 和 _mm_store_pd 是用于浮点或双精度寄存器内容的变体。当目标未对齐时,必须使用 storeu。
_mm_store_si128 stores the sse2 register contents to the memory specified.
_mm_store_ps and _mm_store_pd are the variants used for float or double register contents. When the destination is unaligned, you must use storeu.
memcpy()
怎么样?文档此处。how about
memcpy()
? Doc here.