操作 .NET 字节码 - JIT 重新生成?
是否可以在运行时操作(签名的).NET 程序的字节码?例如,强制 JIT 重新评估 IL?
Is it possible to manipulate the bytecode of a (signed) .NET program at runtime? E.g. by forcing the JIT to re-evalutate the IL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,可以使用 .net CLR 分析 API。但这不是一件容易的事。例如,您可以查看这篇文章:
Yes, it's possible with the .net CLR profiling APIs. But it's not an easy task. For instance, you can have a look at this article: