- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
在 RISC-V 中,所有指令必须对齐到 4 字节,但通过允许 16、48 或 64 位指令大小的扩展,允许指令对齐到 2 字节。如规范中所述(V 2.1,第 5 页):
The base RISC-V ISA has fixed-length 32-bit instructions that must be naturally aligned on 32-bit boundaries. However, the standard RISC-V encoding scheme is designed to support ISA extensions with variable-length instructions, where each instruction can be any number of 16-bit instruction parcels in length and parcels are naturally aligned on 16-bit boundaries.
因此 JALR 目标地址中的最低有效位必须始终为零。 RISC-V 的开发人员希望重用现有的格式,而不是创建一种新的格式,即立即数乘以 2。正如第 14 页所解释的那样。规范中16条:
Note that the JALR instruction does not treat the 12-bit immediate as multiples of 2 bytes, unlike the conditional branch instructions. This avoids one more immediate format in hardware.
这并不是一个真正的缺点,因为实现可以使用指针的最低有效位。一个例子是区分函数指针和数据指针,这对于解释器来说很方便。规范中也提到了 p。 16:
[...] allows the low bit of function pointers to be used to store auxiliary information.
关于cpu-architecture - RISC-V : Why set least significant bit to zero in JALR,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40453719/
我了解到jal和jalr都可以用于调用函数,相反只有jal可以用于返回来自这样的函数: sum3: add a0, a0, a1 add a0, a0, a2 jalr x0,
我遇到了指令 jalr $t1, $t2指令,应该将 $t1 设置为返回地址并跳转到 $t2。但是,对于哪个操作首先发生似乎有些模棱两可。例如,以下在 MARS 和 SPIM 中的工作方式不同: .t
我们知道 jal 指定了一个 21 位的偏移量。但是,它不编码 21 位偏移量而是编码 20 位偏移量。原因是地址的最低有效位始终为零,因为最小的 RISC-V 指令是 2 个字节,因此该位未在指令中
在 RISC-V 规范中,写到 JAL 和 JALR 指令中的立即数被转换为跳转偏移量: 将给定的立即数符号扩展到 XLEN 位。 将 LSB 设置为零。 关于这个,我有几个问题。 问题 1 对于 J
我在学习 RISC-V 汇编语言时遇到了名为 jal 和 jalr 的指令。 我很难理解 jal 和 jalr 之间的区别。 jal x1, X 看来上面代码的意思是跳转到X,并将返回地址(通常是PC
为什么我们需要按照RISC-V指令手册中的描述将RISC-V指令集中的JALR中的最低有效位设置为零? 是为了对齐提议吗? 最佳答案 在 RISC-V 中,所有指令必须对齐到 4 字节,但通过允许 1
我正在编写一些自修改代码,我想从 MIPS 调用 C 函数(将其称为 foo)。 我已将 foo、&foo 的 mem add 加载到 $t1 中。现在我jr/jalr $t1。 C 会将 $ra 设
我是一名优秀的程序员,十分优秀!