How to check whether JVM is running in interpreted mode

I have launched JVM with -Xint option , but thread dump file doesn't include Monitor cache dump. AppServer is starting with -Xint but it is not logging Monitor Cache Dump. How will I check whether JVM is running in interpreyed mode or any other way to get Monitor Cache dump in Thread dump?

[298 byte] By [Vijay_Rayapatia] at [2007-11-27 10:13:29]
# 1

Add -showversion to the command line and look for

java -Xint -showversion Hello

java version "1.6.0"

Java(TM) SE Runtime Environment (build 1.6.0-b105)

Java HotSpot(TM) Server VM (build 1.6.0-b105, interpreted mode)

If you're running with the JIT, you'll see something like

java -showversion Hello

java version "1.6.0"

Java(TM) SE Runtime Environment (build 1.6.0-b105)

Java HotSpot(TM) Server VM (build 1.6.0-b105, mixed mode)

jon999a at 2007-7-28 15:27:04 > top of Java-index,Desktop,Runtime Environment...