关于MIPS跳转的问题
PCGPRLEN-1..28 在这里意味着什么?这4位从哪里来?
What does the PCGPRLEN-1..28 means here?? Where does this 4 bit comes from?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
PCGPRLEN-1..28 在这里意味着什么?这4位从哪里来?
What does the PCGPRLEN-1..28 means here?? Where does this 4 bit comes from?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我猜您想知道为什么有 28 位字段,而操作码已经占用了 6 位。
好吧,事实证明 26 位字段左移了两次。因此,目标地址是 4 字节对齐的。
所以,它“就像”一个 28 位字段。有了它,您可以跳转到 256 MB 对齐区域(如您的图片所示),
并直接从 MIPS 32 Arquitecture for Programmers,卷 II(可从 mips.com 下载),第 14 页回答您的问题。
Im guessing that you are wondering why theres a 28 bit field, when the OP-CODE is alredy taking 6 bits.
Well, it turns out that the 26 bit field is shifted left twice. Thus, the destiny address is 4 byte aligned.
So, its "like" a 28 bit field. With it you can jump inside 256 MB aligned regions (as your img states)
And to answer your question, straight from MIPS 32 Arquitecture for programmers, volume II (downloadable from mips.com),page 14.