Microsoft CCI - 编写编译器的资源和参考
前段时间,我正在研究编译器,我使用 System.Reflection 从我的 AST 生成代码(IL)。现在,我有了另一个我想要开发的编译器的想法(这将是另一个宠物项目,不会在生产代码中使用任何内容,至少现在不会)。
如您所知,与生产代码相比,宠物项目有一大优势:您可以尝试并失败。因此,我决定尝试使用 Microsoft 的 CCI 编写编译器。
我发现的唯一好的参考是基本语言的示例编译器(这是 Codeplex 上 CCI 的一部分),但是,我更喜欢一些其他资源,更像是教程、书籍、文章,我可以在其中获得除了研究代码之外的更多信息(这并不总是学习某些东西的最佳方法,因为您看到了解决方案,但您不知道有什么替代方案,或者为什么这样的代码有效)。
那么:在编写编译器和处理 AST 方面,你们有关于 CCI 的资源(教程、书籍)吗?
Some time ago, I was working on compiler, I've used System.Reflection
to generate code (IL) from my AST. Now, I've an idea for another compiler that I'd like to work on (it will be another pet project, nothing that will be used in production code, at least, not now).
As you know, pet projects have one big advantage over production code: you can experiment and fail. So, I've decided to try to write compiler using Microsoft's CCI.
The only good reference I've found is a sample compiler of basic language (that is a part of CCI on codeplex), but, I'd prefer to have some other resources, more like tutorials, books, articles, where I could get more information other than studying code (which isn't always the best method to learn something, as you see a solution, but you don't know what alternatives you have, or why such code works).
So: Do you have any resources (tutorials, books) about CCI, in context of writing compilers and handling AST?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,我将为那些不熟悉 CCI 的人提供一些链接:
For the start, I'll throw few links, for those, who aren't familiar with CCI: