Antlr - 控制流程图
是否可以使用 Antlr 为 Java 程序构建控制流图?是否有任何资源可以提供这样做的指导?有没有比使用 Antlr 更好的方法,或者是否有任何类型的 eclipse 工具可能有帮助?
Is it possible to build a control flow graph for a Java program using Antlr? Are there any resources out there that provide guidelines on doing so? Is there a better approach than using Antlr or are there any kind of eclipse tools that might help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有使用过 Antlr,但我出于类似的目的使用了 ASM 字节码操作框架。可能有更直接的方法,但如果您想要一个真正量身定制的解决方案,ASM 值得一看!而且,ASM的文档很全面。
I haven't worked with Antlr, but I used for a similar purpose the ASM bytecode manipulation framework. There are probably more straightforward ways, but if you want to have a really tailored solution, ASM is worth a look! Moreover, the documentation of ASM is comprehensive.
我将使用Soot 框架。其中包含执行控制流图分析所需的所有规定。
I'm going to use to Soot framework. That contains all of the provisions I need to perform control flow graph analysis.