HotSpot or interpreted?

Questions about YourKit Java Profiler
Post Reply
JohnCaron
Posts: 2
Joined: Tue Oct 12, 2004 5:21 pm

HotSpot or interpreted?

Post by JohnCaron »

I am unclear whether you are profiling the code agter it goes through the HotSpot compiler, or only interpreted code (without HotSpot).
Vladimir Kondratyev
Posts: 1624
Joined: Tue Aug 10, 2004 7:52 pm

Post by Vladimir Kondratyev »

if HotSpot compiler is on then you are profiling code after HotSpot optimization (default JVM mode). To turn HotStop off please use special JVM option -Xint. But you should have in mind that Java program without HotSpot is another program which might have absolutely different CPU bottlenecks.
Post Reply