Dyanmic loading of methods with HotSpot

Hi,

I was working on some application and used dynamically method loading using java.lan.reflect.Method package.

But later on when i was going through this page (below is the link)

http://java.sun.com/products/hotspot/docs/whitepaper/Java_Hotspot_v1.4.1/Java_HSpot_WP_v1.4.1_1002_4.html

Bottom of the page under "Dynamic Deoptimization" section second para start with "Inlining is based on a form of global analysis......."

it is mentioned that Dynamic Loading is not safe because of the complicate inlining.

Is this true that we should not use Dynamic Loading of methods/objects while using HotSpot VM, because it gives ambiguous results

Thanks

[694 byte] By [RayOfThoughtsa] at [2007-11-26 16:55:55]
# 1
Of course not. To quote the paper "This must be done without compromising or impacting Java technology-based program execution semantics in any way."
fatcataira at 2007-7-8 23:23:36 > top of Java-index,Java HotSpot Virtual Machine,Specifications...