CIL ANTLR语法?
是否有 .NET CIL(又名 MSIL)ANTLR 语法?
Is there any .NET CIL (AKA MSIL) ANTLR grammar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否有 .NET CIL(又名 MSIL)ANTLR 语法?
Is there any .NET CIL (AKA MSIL) ANTLR grammar?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
根据此出版物,Microsoft 在 Microsoft Visual Studio 安装文件中提供了 MSIL 语法asmparse.grammar。如果您没有 MSVS,该语法也会在出版物中列出(请参见第 79 页)。
如果我没记错的话,该语法几乎可以复制并粘贴到 ANTLR 语法文件中(即,它是一个 LL 语法,而不是LR一)。如果您不熟悉两者之间的区别,请查看 这篇 ANTLR 文章。
According this publication, Microsoft provides a MSIL grammar in in the Microsoft Visual Studio installation file asmparse.grammar. If you do not have MSVS, the grammar is also listed in the publication (see page 79).
If I'm not mistaken, that grammar could pretty much just be copied and pasted in a ANTLR grammar file (ie. it's a LL grammar, not an LR one). If you're not familiar with the difference between the two, have a look at this ANTLR article.
来自 Antlr 语法列表 - Pascal Lacroix 的通用中间语言解析器。
From Antlr grammar list - Common Intermediate Language Parser by Pascal Lacroix.