asm x86_64 Intel Linux - 将 RDX:RAX 移至 XMM0
我正在使用 rdtsc 指令,我知道它将高四字存储到 RDX 中,将低四字存储到 RAX (RDX:RAX) 中,但我想用这个进行算术运算(两个时间戳相减) 所以我需要将 RDX:RAX 移动到 128 位寄存器 (xmm0)
movq 指令有效,但仅适用于低四字 (movq xmm0,rax):
是否可以将RDX移动到xmm0的最高64位部分(v2_int64的第二部分)?
I'm using rdtsc instruction and i know that it stores the high quadword into RDX and the low quadword into RAX (RDX:RAX) but i want to do arithmetic with this (substraction of two timestamps)
So i need to move RDX:RAX into a 128 bits register (xmm0)
movq instruction is working but only for low quadword (movq xmm0,rax):
Is it possible to move RDX into the highest 64 bits part of xmm0 (the second part of v2_int64) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论