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

