Reputation: 2319
I know that smart linking is the removal of unused bytecode from an application by the vm. How and when is smart linking performed by the virtual machine ?
Upvotes: 0
Views: 45
Reputation: 719299
As far as I know, Hotspot JVMs don't employ anything called "smart linking". According to Google, "smart linking" is a term used in the context of the Jamacia VM project (for example, here). From a brief reading, that JVM translates bytecodes into C and then compiles it. Anyhow, the link explains what is going on ...
Upvotes: 1