JVMTI is the Java Virtual Machine Tool Interface, a native API by which authors can write JVM plugins to monitor or modify the execution of a Java Virtual Machine.
0
votes
0answers
12 views
jvmti: how to use class_tag
I am looking at the JVMTI API(http://docs.oracle.com/javase/6/docs/platform/jvmti/jvmti.html) in order to get the current heap at a given state.
In order to do this, I would like to use the ...
3
votes
1answer
103 views
Java Bytecode Instrumentation: NullPointerException in reflective call to defineClass
Intent:
I'm using the java.lang.instrument package to create some instrumentation for Java programs. The idea is that I use bytecode manipulation via this system in order to add method calls at the ...
3
votes
1answer
66 views
Java Attach API: UnsatisfiedLinkError
When using the Java Attach API, I'm getting the following link error on Linux (tried it on different machines) only:
Exception in thread "main" java.lang.UnsatisfiedLinkError: ...
1
vote
0answers
113 views
To calculate cpu usage using JVMTI
I'm looking to find the CPU usage of my java application. I found the best way to get CPU usage is (process_time/elapsed_time)*100.0. For a java application, the process_time is got by ...
1
vote
0answers
47 views
jvmti and Spring AOP conflict
Background:
I'm doing something to encrypt Java .class file, and using jvmti agentlib to decrypt the source data when the .class file is loaded.
It's working when I do this for Java SE.
But some ...
2
votes
1answer
73 views
Using jpda to connect to weblogic
I am building a utility/tool to profile/trace the method calls in a Java EE application deployed in Weblogic 10 (java 6). The intention is to quickly understand the flow of events in our huge ...
0
votes
1answer
158 views
Attaching Java VisualVM for CPU-Profiling leads to JVMTI error 66
When using VisualVM for cpu-profiling of my application, I run into the error
"Profiler Agent Error: with message: Redefinition failed with error 66".
Upon that, it copies all the class-files ...
3
votes
1answer
64 views
JVMTI profiling: calculating the amount of stack memory
I am working on a JVMTI agent that monitors memory usage of an application. I have managed to monitor memory allocations on the heap using bytecode instrumentation so that a native method gets invoked ...
1
vote
0answers
42 views
DebuggerStepThrough equivalent for Java
.NET has a couple of handy annotations that instruct a debugger to step through/over certain methods. I would like to know if there is an equivalent that works on the Java platform.
For instance:
...
1
vote
1answer
53 views
Using System.load vs library set as agent
I made a simple library for measuring the size of a given object. The library is
accessed through JNI from a Java class. It's specifically designed for Hotspot, thus it uses the JVMTI and it calls ...
1
vote
1answer
156 views
jvmti for jdk 6 - references and tutorials [closed]
Does anyone know a good starting point to learn writing jvmti agents.
I am looking for books or online tutorials for this.
I looked at the ...
2
votes
1answer
50 views
jvmti agent deadlock
When I run my jvmti agent with a java program, it seems that jvm encounters a deadlock.
In my jvmti agent, I create a single raw monitor in Agent_OnLoad() and enter that lock at the beginning of every ...
1
vote
1answer
83 views
jvmti agent fatal error on linux: C [libc.so.6+0x7ae68] strcpy+0x18
I have written a jvmti agent to trace method invocations. I code it with C and jvmti and jni functions. Our os is Fedora 15 and the agent is compiled into a .so file. When I test it with a non-trivial ...
3
votes
1answer
169 views
BCI library for Java in C
I am looking for a BCI (Bytecode Instrumentation) library for Java in C or C++, to use in a JVMTI agent.
Best case scenario would be something like ASM or BCEL in pure C.
The closest thing I have ...
0
votes
0answers
110 views
Force GC differences between OutOfMemory and ForceGarbageCollection(jvmti)
I have a few objects with weak references and i want GC to collect them.
I know forcing is bad, normal programs shouldn't do that.
One way to force a GC is to fill it up for it to throw OutOfMemory ...
0
votes
1answer
114 views
Any DVM tool interface for Android application (JVMTI for java equivalent)?
Eclipse debugger still works for Android application. This makes me wonder how this debugger actually implemented. Does it implemented separately for DVM and JVM, or there is some common interface ...
1
vote
1answer
108 views
Anyway to get jthread tid through JVMTI?
There is an function of JVMTI called GetAllThreads.
But we can only get jthread object. Is there any way to get the tid for a jthread object?
By tid I mean kernel thread id returned by gettid() system ...
0
votes
2answers
253 views
Perplexed by jvmti object allocation callback behavior
Can anybody explain to me why can I get a callback when jvm allocates some java objects, but not others? Here is what I am doing:
static jvmtiCapabilities capa;
static jvmtiEnv* jvmti ...
4
votes
2answers
721 views
How to uniquely distinguish Java's object instance
I'm currently building a native JVMTI agent for Java 1.7. The problem is that I need to index some data regarding specific Java's object instances. So my question is can I use jobject type's value as ...
4
votes
2answers
381 views
JDI: How to pause a Java application (JVM) like in the debugger
I am looking for potentially a JDI API to pause the JVM at any arbitrary point during its execution. Looking at the BreakPointRequest createBreakpointRequest method needs a specific location. Is there ...
1
vote
1answer
185 views
Using JNI / JVMTI - How to determine if jfieldID is static or not
If I use jvmti_env->GetClassFields(objClass, &numOfFields, &fieldIds); I still have to decide whether to call GetStatic<Type>Field or Get<Type>Field.
How do I determine which one to ...
0
votes
1answer
262 views
How to get the memory address(not the hashcode) of a java object using JVMTI
I am a beginner in C and C++ and I don't know very well how to use the JVMTI. I want to get the physical memory location (in hexadecimal) of a java object. Is it possible? I don't want to get answers ...
0
votes
1answer
60 views
JVMTI not loaded
I'm trying to use the JVMTI in order to write a little Java debugger in C++.
I read here:
http://java.sun.com/developer/technicalArticles/Programming/jvmti/
that the JVM should call an exported method ...
0
votes
1answer
180 views
JVMTI tips and tricks
what i want to do is to combine the power of quartz with jvmti. basically, my plan is to use jvmti to monitor memory usage and base on that i will launch / execute process on que depending on its ...
1
vote
1answer
272 views
compiling a jvmti agent with g++ fails to work, but cc works ok
I have a very simple agent, basically just the required Agent_OnLoad method signature.
If I compile it with g++.
g++ -g -fno-strict-aliasing -fPIC -fno-omit-frame-pointer -W -Wall -Wno-unused ...
0
votes
1answer
167 views
How to run Jcalltracer
Hey guys I'm having trouble opening jcalltracer, an open source program on sourceforge that reverse engineers a Java program into sequence diagram. I got error when I was trying to add the following ...
3
votes
1answer
62 views
How to get the full command line in JVMTI?
Is it possible to get full command line with all arguments which was used to launch current Java process and to get that during OnLoad phase in JVMTI?
0
votes
2answers
111 views
JVMTI Agent_OnLoad handler can't create a System Property
I'm using the JVM Tool Interface. I'm trying to create a SystemProperty in the Agent_OnLoad event using the SetSystemProperty() call. If the property exists, it correctly sets a new value. However, ...
2
votes
1answer
238 views
JVMTI agent crashes
I'm working on implementation of eraser data-race detection algorithm as JVMTI agent.
When I try to run some example inputs to test my code, the JVM crashes, with dumps like the following (may show ...
2
votes
1answer
574 views
Byte code instrumentation - implement native or java agent?
If I want to realize a profiler using byte code instrumentation, should I write a native agent using JVMTI or should I write a java agent using the java.lang.instrument package?
If I want to use ...
0
votes
1answer
54 views
JVMTI equivalent for .NET
I am looking for some Microsoft API that whould have the same capabilities for monitoring .ENT applications as JVMTI has for Java applications.
For example, I'd like to be able to see every method ...
2
votes
1answer
128 views
JVMTI get name of called Class/File
I tried to read through the whole jvmti documentation and I didn't find a solution for my problem.
I want to get the name of the class/file that is used in the command line to call the program:
java ...
2
votes
1answer
213 views
JVMTI - how to get the value of a method parameter from callback
I am recording all method entries from my Java app thanks to a JVMTI Agent. For now, I am able to get the name of each method, but I'd want to be able to get the value of the parameters that method ...
1
vote
2answers
119 views
How do I catch the read and writes in a java program?
I am trying to create a tool that can capture all the read and writes made by a java program. Also, I would like to know what fields of what object is access/modified.
I currently looked at:-
1) ...
6
votes
1answer
659 views
lsof counterpart for a JVM?
lsof is a nice tool for Unix, showing all currently open file handles.
Does anyone know a similar tool that would show all open files inside a running JVM (via JVMTI or any similar interface)?
In ...
0
votes
1answer
109 views
How to track locking events in JVMTI
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 ...
0
votes
1answer
137 views
Retrieve jobject within MethodEntry /MethodExit in JVMTI
Is it possible to retrieve the current jobject when the method entry or method exit event is triggered? I would like to tag the jobjects which are entered on certain methods. Currently I can only ...
1
vote
2answers
209 views
Thread-aware heap allocation tracking with JVMTI
Writing a profiling I would also implement the typical task of heap profiling. Specifically I would like to track, which thread has allocated how much data? Using JVMTI I thought it's sufficient to ...
2
votes
1answer
190 views
Compile an Agent without errors and the message of “not valid Windows image”
since one week I'm trying to compile a demo Version of the JVMTI demo set. In this case I tried to compile the HeapViewer Source Code (I just renamed the file HeapViewer.c to HeapViewerByMG). I tried ...
2
votes
3answers
1k views
Profiling vs Instrumentation - Java
Basic question: JVM provides JVMTI which native API for profiling and debugging JVM. JVM instrumentation also does the same (is that correct?). If yes, what is difference between the both?
1
vote
0answers
122 views
Why use an agent thread in JVMTI?
In the JVMTI it is possible to launch an agent thread for executing code concurrently: RunAgentThread
The documentation recommends this, for instance for communication purposes. Currently my JVMTI ...
0
votes
1answer
229 views
Measuring method execution with JVMTI
Using the MethodEntry and MethodExit event hooks provided by the JVMTI how would I measure the time of a method executed in Java?
In simple means it's just: time2 - time1 but the problem I see, how ...
0
votes
1answer
180 views
Deadlock detection with JVMTI
I wonder whether it is possible to detect deadlocks dynamically in Java by using the JVMTI. There are two events indicating actions on monitors using the synchronized statement:
Monitor Contended ...
2
votes
1answer
506 views
Using JVMTI to get the amount of memory freed by the GC
I'm trying to use JVMTI to know how much memory was freed by the GC, this would be used as part of a profiler.
Using JVMTI I can get events for the GC_START and GC_END.
JVMTI also provides facilities ...
6
votes
2answers
839 views
Unloading a JVMTI agent at runtime?
I'm using the attach API to load a JVMTI agent at runtime. I'd like to unload the JVMTI agent when my program is done without terminating the JVM the agent is loaded in. According to this ...
1
vote
1answer
562 views
Measure execution time of Java with JVMTI
For the profiler which I implement using JVMTI I would like to start measuring the execution time of all Java methods. The JVMTI offers the events:
MethodEntry
MethodExit
So this would be quite ...
10
votes
2answers
305 views
notifyAll() number of invocations difference while profiling
I have implemented a simple profiler with JVMTI to display the invocation on wait() and notifyAll(). As a test case I am using the. producer consumer example of Oracle. I have the following three ...
6
votes
2answers
2k views
AttachNotSupportedException due to missing java_pid file in Attach API
Building a profiler of my own, I use the JVMTI API to build a native library agent. This agent can be started together with the JVM by using the addition parameter -agentlib. In addition there is the ...
1
vote
0answers
145 views
JVMTI agent never returns the thread state terminated
Implementing a JVMTI agent, I read the threads state on certain events, for instance ThreadStart, ThreadEnd, VMInit, VMDeath, etc. However, I noticed, that the threads state is never new or ...
0
votes
1answer
106 views
Synchronization statistics not available in the JVMTI API?
The class java.lang.ThreadInfo provides some very useful methods which provide statistic concerning synchronization in Java. For instance:
getBlockedTime() Returns the approximate accumulated ...

