I\'m having an issue in my Java application where the JIT breaks the code. If I disable the JIT, everything works fine, but runs 10-20x slower.
Is there any way to d
Yes, there is one. You can supply the affected classes you want to exclude JIT compilation at start-up:
-Xjit:exclude={package/class.method|package/class.method}
The following option works on my JVMs, to exclude a specific method:
-X:CompileCommand=exclude,the/package/and/Class,methodName