I am working on a testing project using mutating technique. My project requires to manipulate a Java classfile and re-execute the classfile multiple times for testing. My implementation need to re-execute the whole system again after one manipulation, and that is not efficient. I am wondering whether I can save the JVM state right before executing a desired instruction in the classfile, so that I can start from that state after each manipulation.
Thank you.
Based on your description, I don't believe you need to maintain the 'JVM state'. You can mantain a reference to the original class file and re-run that.