Penguin
Blame: HotSpotCompiler
EditPageHistoryDiffInfoLikePages
Annotated edit history of HotSpotCompiler version 4, including all changes. View license author blame.
Rev Author # Line
2 AristotlePagaltzis 1 A particular kind of JustInTime [Compiler] whose defining property is that it will dynamically recompile hot spots, ie sections of a program which take up most of its execution time in, to optimise them better. Hot spots are identified by monitoring [Profiling] information as the program executes. This way, a HotSpotCompiler can potentially optimise much more purposively than a traditional [Compiler] which builds an unchanging BinaryExecutable.
1 StuartYeates 2
4 AristotlePagaltzis 3 The concept is commonly associated with [Java], but is applicable to any environment employing a JustInTime [Compiler] (which usually implies a VirtualMachine, but doesn't have to).