- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
来自Intel's x86 manuals, Vol2 ,第 3.1.1.2 节:指令汇总表中的操作码列(带有 VEX 前缀的指令)
NDS, NDD, DDS: specifies that VEX.vvvv field is valid for the encoding of a register operand:
- VEX.NDS: VEX.vvvv encodes the first source register in an instruction syntax where the content of source registers will be preserved.
- VEX.NDD: VEX.vvvv encodes the destination register that cannot be encoded by ModR/M:reg field.
- VEX.DDS: VEX.vvvv encodes the second source register in a three-operand instruction syntax where the content of first source register will be overwritten by the result.
我认为这与“非破坏性来源”有关,我认为这就是 NDS 的含义。其他代表什么?这如何影响指令的编码?同样,为什么它们很重要 - 因为据我所知,AMD 手册不包含任何对这些术语的引用?
最佳答案
根据英特尔APX docs (高级性能扩展:REX2 和 EVEX 用于传统整数指令,例如 sub
,最后是写入完整 32/64 位寄存器的 setcc
编码: Intel APX Architecture Specification - July 2023 Revision 1.0 ) :
NDD
代表新数据目的地NDS
代表非破坏性源大概 2018 年之前的 SDM 版本使用了相同的缩写词扩展。
<小时/>我没有看过 AMD 手册,但我假设他们选择了其他方式来指示哪个操作数由 VEX.vvvv
字段编码,以获取使用它的指令。
英特尔使用此表示法来提醒您/明确哪个操作数是 vvvv 字段。它已经是多余的,因为每个指令的“操作数编码”表显示了哪个操作数被编码在哪个字段中。
<小时/>更新:英特尔可能在 2018 年 11 月的更新中将它们从手册中删除。它们也被从 "future extensions" manual 中删除。 2018 年 10 月的修订版 035,其指令列表与第 2 卷手册的格式相同,并有一个修订表,其中提供了此变更日志:
Removal of NDD/DDS/NDS terms from instructions. Note: Previously, theterms NDS, NDD and DDS were used in instructions with an EVEX (or VEX)prefix. These terms indicated that the vvvv field was valid forencoding, and specified register usage. These terms are no longernecessary and are redundant with the instruction operand encodingtables provided with each instruction. The instruction operandencoding tables give explicit details on all operands, indicatingwhere every operand is stored and if they are read or written. If vvvvis not listed as an operand in the instruction operand encoding table,then EVEX (or VEX) vvvv must be 0b1111.
这告诉我们,这些 NDD/DDS/NDS 标记的目的是指示哪个操作数是哪个操作数,以及它们是读还是写。
<小时/>非破坏性源是本手册同一卷其他地方使用的短语(见下文),因此我非常有信心这是对 NDS
的正确解释.
我认为 NDD
的明显解释是非破坏性目标(SSE2 版本的转变令人烦恼地具有破坏性)。
尚不清楚 DDS
代表什么。 “Destructive Destination-Source”不适合,因为它是被覆盖的其他源注册表。
The bit fields of the VEX prefix can be summarized by its functional purposes:
- Non-destructive source register encoding (applicable to three and four operand syntax): This is the first source operand in the instruction syntax. VEX.vvvv.
(反转:xmm0为1111,xmm15为0000。如下所述,反转避免与仅32位LES
and LDS
(加载远指针)指令的有效编码重叠。32位模式只能使用xmm0-7,因此第一位始终是必需的 1,这使得它不是有效的 LES
/LDS
。)
所以,是的,“非破坏性来源”是英特尔手册中使用的一个短语。
<小时/>Some VEX-encoded instructions have syntax with less than threeoperands, e.g. VEX-encoded pack shift instructions support one sourceoperand and one destination operand).
The roles of VEX.vvvv, reg field of ModR/M byte (ModR/M.reg), r/m field of ModR/M byte (ModR/M.r/m) withrespect to encoding destination and source operands vary with different type of instruction syntax.
The role of VEX.vvvv can be summarized to three situations:
VEX.vvvv encodes the first source register operand, specified in inverted (1’s complement) form and is valid forinstructions with 2 or more source operands. (This is the NDS case)
VEX.vvvv encodes the destination register operand, specified in 1’s complement form for certain vector shifts.The instructions where VEX.vvvv is used as a destination are listed in Table 2-9. The notation in the “Opcode”column in Table 2-9 is described in detail in section 3.1.1. (The part quoted in the question)
DDS
情况进行更新)。所涉及的矢量位移为 VPS{R,L}L{W,D,Q}
、VPSRA{W,D,Q}
和 >VPS{R,L}LDQ
(字节移位),使用 mod/rm
的 /r
字段作为额外的操作码位,如某些操作码位 -操作数整数指令(例如和r/m32、imm8
)。例如
VEX.NDD.128.66.0F 73/7 ib
VPSLLDQ
VEX.NDD.128.66.0F 73/3 ib
VPSRLDQ
这就是为什么 SSE 版本是就地位/字节移位,经常需要 movdqa 指令。 66 0F xx
SSE2 编码空间中有一些免费的操作码,英特尔本可以使用这些操作码,而不是使这些常用指令具有破坏性。不过,我猜他们已经坚持在 0F xx
MMX 版本中使用 /r
字段的决定了。我认为,让 new-with-SSE2 字节移位 insn 也具有破坏性是没有必要的。至少他们成功地进行了一次非破坏性的洗牌,pshufd
。
关于assembly - 在编码 VEX 指令时,NDS、NDD 和 DDS 代表什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37153248/
SQLite、Content provider 和 Shared Preference 之间的所有已知区别。 但我想知道什么时候需要根据情况使用 SQLite 或 Content Provider 或
警告:我正在使用一个我无法完全控制的后端,所以我正在努力解决 Backbone 中的一些注意事项,这些注意事项可能在其他地方更好地解决......不幸的是,我别无选择,只能在这里处理它们! 所以,我的
我一整天都在挣扎。我的预输入搜索表达式与远程 json 数据完美配合。但是当我尝试使用相同的 json 数据作为预取数据时,建议为空。点击第一个标志后,我收到预定义消息“无法找到任何内容...”,结果
我正在制作一个模拟 NHL 选秀彩票的程序,其中屏幕右侧应该有一个 JTextField,并且在左侧绘制弹跳的选秀球。我创建了一个名为 Ball 的类,它实现了 Runnable,并在我的主 Draf
这个问题已经有答案了: How can I calculate a time span in Java and format the output? (18 个回答) 已关闭 9 年前。 这是我的代码
我有一个 ASP.NET Web API 应用程序在我的本地 IIS 实例上运行。 Web 应用程序配置有 CORS。我调用的 Web API 方法类似于: [POST("/API/{foo}/{ba
我将用户输入的时间和日期作为: DatePicker dp = (DatePicker) findViewById(R.id.datePicker); TimePicker tp = (TimePic
放宽“邻居”的标准是否足够,或者是否有其他标准行动可以采取? 最佳答案 如果所有相邻解决方案都是 Tabu,则听起来您的 Tabu 列表的大小太长或您的释放策略太严格。一个好的 Tabu 列表长度是
我正在阅读来自 cppreference 的代码示例: #include #include #include #include template void print_queue(T& q)
我快疯了,我试图理解工具提示的行为,但没有成功。 1. 第一个问题是当我尝试通过插件(按钮 1)在点击事件中使用它时 -> 如果您转到 Fiddle,您会在“内容”内看到该函数' 每次点击都会调用该属
我在功能组件中有以下代码: const [ folder, setFolder ] = useState([]); const folderData = useContext(FolderContex
我在使用预签名网址和 AFNetworking 3.0 从 S3 获取图像时遇到问题。我可以使用 NSMutableURLRequest 和 NSURLSession 获取图像,但是当我使用 AFHT
我正在使用 Oracle ojdbc 12 和 Java 8 处理 Oracle UCP 管理器的问题。当 UCP 池启动失败时,我希望关闭它创建的连接。 当池初始化期间遇到 ORA-02391:超过
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 9 年前。 Improve
引用这个plunker: https://plnkr.co/edit/GWsbdDWVvBYNMqyxzlLY?p=preview 我在 styles.css 文件和 src/app.ts 文件中指定
为什么我的条形这么细?我尝试将宽度设置为 1,它们变得非常厚。我不知道还能尝试什么。默认厚度为 0.8,这是应该的样子吗? import matplotlib.pyplot as plt import
当我编写时,查询按预期执行: SELECT id, day2.count - day1.count AS diff FROM day1 NATURAL JOIN day2; 但我真正想要的是右连接。当
我有以下时间数据: 0 08/01/16 13:07:46,335437 1 18/02/16 08:40:40,565575 2 14/01/16 22:2
一些背景知识 -我的 NodeJS 服务器在端口 3001 上运行,我的 React 应用程序在端口 3000 上运行。我在 React 应用程序 package.json 中设置了一个代理来代理对端
我面临着一个愚蠢的问题。我试图在我的 Angular 应用程序中延迟加载我的图像,我已经尝试过这个2: 但是他们都设置了 src attr 而不是 data-src,我在这里遗漏了什么吗?保留 d
我是一名优秀的程序员,十分优秀!