asm x86_64 Intel Linux - 将 RDX:RAX 移至 XMM0

发布于 2025-01-12 02:41:55 字数 411 浏览 0 评论 0原文

我正在使用 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):
enter image description here

Is it possible to move RDX into the highest 64 bits part of xmm0 (the second part of v2_int64) ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文