Stack trace

I am wondering if the JVMTI can give me all the stack backtrace of all the Java method (user-level) even the method is jitted?Thanks,Neo
[157 byte] By [neoworlda] at [2007-10-3 8:52:40]
# 1
Yep, the GetAllStackTraces will give you the stack traces for all threads, or GetStackTrace for a single thread.
alan.batemana at 2007-7-15 4:02:24 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
Including the jitted code? It will give the name of the original Java method for the jitted code? Because I assume that once the code is jitted, it will not show up at the Java stack instead of on the system stack.
neoworlda at 2007-7-15 4:02:24 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 3
You will see all java stack frames even if they are compiled. Just try it and you will see.
alan.batemana at 2007-7-15 4:02:24 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...