Book Image

Supercharge Your Applications with GraalVM

By : A B Vijay Kumar
Book Image

Supercharge Your Applications with GraalVM

By: A B Vijay Kumar

Overview of this book

GraalVM is a universal virtual machine that allows programmers to compile and run applications written in both JVM and non-JVM languages. It improves the performance and efficiency of applications, making it an ideal companion for cloud-native or microservices-based applications. This book is a hands-on guide, with step-by-step instructions on how to work with GraalVM. Starting with a quick introduction to the GraalVM architecture and how things work under the hood, you'll discover the performance benefits of running your Java applications on GraalVM. You'll then learn how to create native images and understand how AOT (ahead-of-time) can improve application performance significantly. The book covers examples of building polyglot applications that will help you explore the interoperability between languages running on the same VM. You'll also see how you can use the Truffle framework to implement any language of your choice to run optimally on GraalVM. By the end of this book, you'll not only have learned how GraalVM is beneficial in cloud-native and microservices development but also how to leverage its capabilities to create high-performing polyglot applications.
Table of Contents (17 chapters)
1
Section 1: The Evolution of JVM
4
Section 2: Getting Up and Running with GraalVM – Architecture and Implementation
8
Section 3: Polyglot with Graal
13
Section 4: Microservices with Graal

Understanding the optimizations performed by JIT

This section will cover the various optimization techniques that the JIT compilers employ at the various levels of compilation.

Inlining

Calling a method is an expensive operation for JVM. When the program calls a method, JVM has to create a new stack frame for that method, copy all the values into the stack frame, and execute the code. Once the method completes, the stack frame has to be managed post-execution. One of the best practices in object-oriented programming is to access the object members through access methods (getters and setters).

Inlining is one of the most effective optimizations performed by JVM. JVM replaces the method call with the actual content of the code.

If we run our previous code with the following command, we can see how JVM performs inlining:

java -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining Sample

In this case, the call to the performOperation() method is replaced...