C中的Java BCI库

我正在寻找一个用于C或C的
Java的BCI(字节码仪表)库,以便在
JVMTI agent中使用.

最佳案例场景将是纯粹的C中的ASMBCEL.

到目前为止,我发现的最接近的事情只是几年前由Kelly O’Hair编写的一个演示java_crw_demo,从那时起用于Sun的/ Oracle的教程.

你知道别的什么吗?

Some rationale: I am building an instrumentation tool to add a getter method to java.lang.Object and overload this getter in every direct subclass of Object. For this reason I cannot use a Java agent. Also, I would like to avoid spawning a secondary JVM to perform the instrumentation – for complexity and speed reasons.

最佳答案 很久以前我曾经用C语写过一篇,但由于缺乏动力,我没有走得太远. AFAIK在C中没有公开发布,但根据
JVM Specification,根据您的需求编写一个简单的版本应该不会太难.您应该对
the class file format以及
the instruction set上的章节特别感兴趣.

点赞