JIT / Hotspot Technical Book

Does anyone know of any good books or long web articles (or scientific articles?) That talk about JIT methods or hotspot methods that are used in various JVMs or other virtual machine environments (python / ruby ...)

It seems like it would be very interesting to read imho (although something with details is hard to find there at intervets ...)

+4
source share
2 answers

Take a look at Oracle JRockit: final guide :

Filled with thorough step-by-step instructions and lots of screenshots, this tutorial shows you JRockit and how to get the most out of it. All key JVC JVM concepts, such as code generation, memory management, and other internal elements . The presentation aspects of Java are discussed in detail. A complete guide to using the tools in the JRockit Mission Control kit is also included, and many more. This book is intended for advanced Java developers who want to monitor, diagnose, profile and improve the performance of their Java applications. This is also for people who want to understand more about the inner workings of a modern Java virtual machine or adaptive runtime . Parts of the book are suitable as course material for training in lead time.

Although it is a matter of JRockit, you will also find here some comparison in the implementation of JRockit and HotSpot, some common approaches used by the JVM, etc. This book is definitely worth a read.

+1
source

This document may be a good start, and then there are links at the end with additional resources.

0
source

All Articles