What exactly does -XX:-TieredCompilation do?

前端 未结 3 1378
一生所求
一生所求 2020-12-07 12:28

Using java -XX:+PrintFlagsFinal I found the TieredCompilation flag, and I read about it a bit online.

Yet, I still don\'t know exactly<

相关标签:
3条回答
  • 2020-12-07 12:48

    -XX:-TieredCompilation disables intermediate compilation tiers (1, 2, 3), so that a method is either interpreted or compiled at the maximum optimization level (C2).

    As a side effect TieredCompilation flag also changes the number of compiler threads, the compilation policy and the default code cache size. Note that with TieredCompilation disabled

    • there will be less compiler threads;
    • simple compilation policy (based on method invocation and backedge counters) will be chosen instead of advanced compilation policy;
    • default reserved code cache size will be 5 times smaller.

    To disable C2 compiler and to leave only C1 with no extra overhead, set -XX:TieredStopAtLevel=1.

    To disable all JIT compilers and to run everything in interpreter, use -Xint.

    0 讨论(0)
  • 2020-12-07 12:49

    There are different levels of JIT, as you've noticed (including not running the JIT at all).

    In older versions of Java, you used to have to select them at first (e.g. -Xint, -client, -server) to run with just interpreter, with just the client (C1) compiler, or just the server (C2) compiler.

    Tiered compilation, which came in with Java 7, meant that the hotspot compiler could shift between those steps seamlessly. So what happens is that after a certain amount of runs, the code will be compiled with C1, and then after more runs, it will be compiled with C2. This is on a method-by-method basis, so when an app is running a significant portion will just be running under interpreter (which is for cold code) and then after code is run a lot (hot) then it will be compiled to be more performant. You can see the different levels by running

    $ java -XX:+PrintFlagsFinal -version | grep CompileThreshold
    intx Tier2CompileThreshold                     = 0
    intx Tier3CompileThreshold                     = 2000
    intx Tier4CompileThreshold                     = 15000
    openjdk version "1.8.0_92"
    OpenJDK Runtime Environment (Zulu 8.15.0.1-macosx) (build 1.8.0_92-b15)
    OpenJDK 64-Bit Server VM (Zulu 8.15.0.1-macosx) (build 25.92-b15, mixed mode)
    

    The -XX:-TieredCompilation is essentially TieredCompilation=false which means don't do this transition, and you have to select up front whether to use the client or server compiler. The JVM heuristically decides which mode to apply based on your CPU; if you have multiple processors or a 64-bit VM then it will use a Server VM (C2), otherwise it will use a Client VM (C1).

    So -Xint will run with just the interpreter (i.e. no compiler) and you can select either only C1 or C2 with -client or -server respectively, along with the -XX:-TieredCompilation

    0 讨论(0)
  • 2020-12-07 12:54

    As a Java 8 user, it's recommended to disable TieredComplilation for production use with floating point.

    Oracle won't fix this issue on Java8. All hotspot JVM 8 w/ G1GC have the same issue.

    (Bug1) (Bug2)

    0 讨论(0)
提交回复
热议问题