Tagged Questions
1
vote
1answer
48 views
Basic block logging in Java using javaagents
My goal is to instrument a small amount of code at the beginning of every basic block of some Java bytecode. The purpose is to record the execution path through basic blocks. Currently, I am using ...
0
votes
1answer
60 views
Javassist's CtMethod.insertAt(line,src) instruments code at the wrong bytecode position
My goal is to insert a little bit of instrumentation code at the beginning of each basic block of code. It seems like a fairly simple task with Javaassist's ControlFlow.Block and CtMethod.insertAt(). ...
0
votes
0answers
60 views
Instrumentation retransformation doesn't appear to be working
I'm just experimenting with Java Instrumentation because it's very interesting and I'd like to know more about it. I'm using it in conjunction with the javassist library to make bytecode manipulation ...
0
votes
0answers
73 views
Interaction of javassist and java.lang.instrument.Instrumentation.appendToBootstrapClassLoaderSearch
Inside "public static void premain(String agentArgs, Instrumentation inst)", I invoked "appendToBootstrapClassLoaderSearch(myJar)" to add myJar into the search path of the bootstrap classloader.
Java ...
0
votes
0answers
99 views
Lazy method transformation with Javassist
I'm using Javassist to instrument methods with specific calls with insertAfter and insertBefore.
I'm used to apply modification during class loading, but with big classes with a lot of methods to be ...
0
votes
0answers
248 views
Add a non-primitive field with javassist
I'm using Javassist and I want to add a non-primitive static field into classes then initialize it with a MyClass.getInstance();
My goal is to add into all instrumented classes the field: "public ...
-1
votes
1answer
142 views
Java Write Log to Text
Currently I'm instrumenting methods with loggers to trace some information but I have problem extracting the log output into the text file.
What I am doing is instrumenting every single method with ...
4
votes
1answer
211 views
Is is possible to instrument with javassist java core classes? Classes loaded by the bootstrap classloader
I want to add an "insertBefore" on a method of a core JDK 5 class. For some reason it´s not working. Here's an example of the code:
ClassPool pool = ClassPool.getDefault();
CtClass ctClass = ...
2
votes
0answers
582 views
really, how to achieve hibernate runtime instrumentation?
from hibernate docs, we know that in certain case, for lazy-loading to work, we need build-time instrumentation:
How to stop Hibernate from eagerly fetching many-to-one associated object
...