mmo 对象格式的符号表中使用的尝试是如何工作的?
我尝试了解 mmo
对象文件格式的工作原理,该格式用于 Don Knuth 的教育 MMIX
架构。我还没有购买MMIXware,所以我必须从汇编器和模拟器的文字源文件中猜测大部分细节。
对象格式使用特殊的三元搜索树来存储符号表。看了代码,不太明白它是如何工作的。有人可以向我解释一些细节吗?特别是关于树的序列化方式。
I try to understand, how the mmo
object file format works, which is used for Don Knuth's educational MMIX
architecture. I have not bought MMIXware, so I have to guess most of the details from the literate source files of the assembler and simulator.
The object format uses a special ternary search trie for storing the symbol table. At a look at the code, I don't quite understand how it works. Can somebody please explain me some details? Especially about how the tree is serialized.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为我不能比此处找到的解释做得更好。
I don't think I can do much better than the explanation found here.