哪个功能单元负责“jl”?指令使用?
奔腾处理器具有多个可以并行处理指令的功能单元。例如,“加载”可能与“添加”同时发生。这些指令使用不同的功能单元:负载和整数。
imull、incl、addl、cmpl 都使用整数功能单元,'JL' 指令也使用它吗?
A pentium processor has several functional units which can process instructions in parallel. For example a 'load' might be happening at the same time as an 'add'. These instructions use different functional units: the load and integer.
The imull, incl, addl, cmpl all use the integer functional unit, does the 'JL' instruction use it as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“JL”指令的意思是“Jump if Larger”。它类似于“JA”指令,但JL用于有符号数的比较,JA用于无符号数的比较。
The "JL" instruction means "Jump if Larger". It's like the "JA" instruction, but JL is used for the comparation of signed numbers and JA is used for the comparation of unsigned numbers.