JVMTI offers the events ContendedMonitorEnter and ContendedMonitorEntered to detect events related to the use of synchronized. synchronized is nothing else, but a ReentrantLock.

Now I would like to track also events related to the lock structure: ReentrantLock. I could hook to method entry/exit of its lock() and unlock() events. However, these event hooks don't provide any information about the object they were invoked on. Thus I cannot distinguish between different ReentrantLock and thus cannot log any information about which lock is currently locked.

Is there any other way to keep track of this?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You'll have to instrument the classes being loaded by yourself. This is rather complicated, but fortunately we have java_crw_demo.c which is supplied (alongside with other helpful examples) together with JDK. There you can find an implementation that does some basic kinds of instrumentation. You can easily modify it to do the job. I am doing this now for some academic student project.

link|improve this answer
But for more interesting instrumentation it seems to be more useful using instrumentation libraries like ASM, isn'it? – platzhirsch Sep 8 '11 at 20:17
ASM will make instrumentation much easier. – Daniel Sep 13 '11 at 18:55
So this would basically force you to use Java agents anyway, isn't it? – platzhirsch Sep 13 '11 at 20:13
No, it would not. I wanted to say that ASM is probably much better suited for static instrumentation than JVMTI, because it is easier to work with. – Daniel Sep 14 '11 at 18:26
Yes, but ASM is used through a java agent, isn't it? – platzhirsch Sep 14 '11 at 18:37
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.