In my bytecode instrumentation project, I stumble frequently on VerifyErrors. However, the default java Verifier gives little information on which instruction resulted in the error (it only gives the method and a small message). Is there any stand-alone bytecode verifier which provides with a little more advanced help in locating the error, at least the precise instruction location? Thank you.
|
As with any project involving JVM bytecode, I would first check to see whether the BCEL has anything that might be useful for you. Also, perhaps FindBugs may help - though I'm not sure whether it assumes verifiable bytecode to start with or not. |
|||||
|
|
ASM CheckClassAdaptor.verify() gives great feedback: http://asm.ow2.org/ |
|||
|
|
|
I was also looking for something that would report potential verify errors, but especially First and most obviously, JustIce in BCEL 5.2 seems to be easiest;
does the job:
I tried ASM 4.0, but
does not work; perhaps it checks the format of methods, but not linkage. Inlining Searching, I also found https://kenai.com/hg/maxine~maxine/file/8429d3ebc036/com.oracle.max.vm/test/test/com/sun/max/vm/verifier/CommandLineVerifier.java but I could not find any way to make this work; the accompanying unit test throws a |
|||
|
|