InfoQ Homepage Presentations JVM Mechanics – A Peek Under the Hood
JVM Mechanics – A Peek Under the Hood
Summary
Gil Tene discusses JVM observation-based runtime optimizations, ordering and memory model rules, basics GC functions, memory management, and JVM mechanics.
Bio
Gil Tene is CTO and co-founder of Azul Systems. He has been involved with virtual machine technologies for the past 20 years and has been building Java technology-based products since 1995. Gil holds a BSEE from The Technion Israel Institute of Technology, and has been awarded 27 patents in computer-related technologies. Twitter: @giltene
About the conference
Software is changing the world; QCon aims to empower software development by facilitating the spread of knowledge and innovation in the enterprise software development community; to achieve this, QCon is organized as a practitioner-driven conference designed for people influencing innovation in their teams: team leads, architects, project managers, engineering directors.
Community comments
Some remarks
by Paulo Pinto,
Some remarks
by Paulo Pinto,
Your message is awaiting moderation. Thank you for participating in the discussion.
While the talk was quite interesting, I think the presenter might have left a few points out to stress his message.
Static compilers can achieve optimizations similar to dynamic compilation with help of Profile Guided Optimizations, so in many cases it is enough to have test runs with the common datasets used by the application to generate enough information for a second compilation with PGO.
The second issue regarding warming up the applications can be solved by making use of an AOT compiler for Java code, assuming the set of classes used remain static for the whole lifetime of the server. Which tends to be quite common actually.