VOOZH about

URL: https://dzone.com/articles/jit-inlining

⇱ When Short Methods Pay Off: JIT Inlining


Related

  1. DZone
  2. Coding
  3. Java
  4. When Short Methods Pay Off: JIT Inlining

When Short Methods Pay Off: JIT Inlining

Want a quick guide to see whether your methods are ready for inlining? Here are a couple of easy rules, with a snippet example, to help you out.

By Updated Jul. 26, 17 · Code Snippet
Likes
Comment
Save
12.8K Views

Join the DZone community and get the full member experience.

Join For Free

Among all Just-In-Time Java compiler optimizations, inlining methods are a powerful approach. Usually, when we write code following good object-oriented practices, we end up having lots of small objects with well-encapsulated attributes – most of them accessible via getters. But there is an overhead of making additional calls and increasing the callstack. Fortunately, with JIT inlining, we can follow good practices and benefit from performant code.

A method is eligible for inlining if:

  • It’s small – the bytecode size is smaller than 35 bytes (can be overridden by the -XX:MaxInlineSize=X flag).
  • It’s called frequently (it’s hot) and it’s smaller than 325 bytes (can be overridden by the -XX:MaxFreqInlineSize=X flag).

Consider the following snippet:

public class JitInlining {
 public static void main(String args[]) {
 Position position = new Position(25);
 for (int i = 0; i < 1000000; ++i) {
 int x = position.getX();
 position.setX(x + 1);
 }
 System.out.println(position.getX());
 }
}

class Position {
 private int x;

 public Position(int x) {
 this.x = x;
 }

 public int getX() {
 return x;
 }

 public void setX(int x) {
 this.x = x;
 }
}


When inlining is applied, the position.setX(x + 1) operation will look like this:

position.x = x + 1;


To make sure that a particular piece of code is inlined, you can use the -XX:+PrintInlining flag (together with -XX:+PrintCompilation and -XX:+UnlockDiagnosticVMOptions):

java -XX:+PrintCompilation -XX:+UnlockDiagnosticVMOptions -XX:+PrintInlining com.performantcode.JitInlining



The result will be something like that:

111 19 % 4 com.performantcode.JitInlining::main @ 12 (47 bytes)

 @ 19 com.performantcode.Position::getX (5 bytes) accessor

 @ 27 com.performantcode.Position::setX (6 bytes) inline (hot)



Please notice that inline (hot) is displayed next to setX.

Data Types Java compiler IT Snippet (programming) Java (programming language) optimization Overhead (computing) Attribute (computing)

Published at DZone with permission of Grzegorz Mirek. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Memory Optimization and Utilization in Java 25 LTS: Practical Best Practices
  • Build an AI Chatroom With ChatGPT and ZK by Asking It How!
  • Legacy Code Refactoring: Tips, Steps, and Best Practices
  • Two Cool Java Frameworks You Probably Don’t Need

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

Let's be friends: