8186235: [Graal] compiler/aot/RecompilationTest.java fails in case UseJVMCICompiler is enabled
Make JVMCI respect -XX:-Inline Reviewed-by: kvn
This commit is contained in:
parent
b54514e556
commit
7465efdb3b
@ -765,7 +765,7 @@ C2V_END
|
||||
|
||||
C2V_VMENTRY(jboolean, hasNeverInlineDirective,(JNIEnv *, jobject, jobject jvmci_method))
|
||||
methodHandle method = CompilerToVM::asMethod(jvmci_method);
|
||||
return CompilerOracle::should_not_inline(method) || method->dont_inline();
|
||||
return !Inline || CompilerOracle::should_not_inline(method) || method->dont_inline();
|
||||
C2V_END
|
||||
|
||||
C2V_VMENTRY(jboolean, shouldInlineMethod,(JNIEnv *, jobject, jobject jvmci_method))
|
||||
|
@ -37,7 +37,7 @@
|
||||
* -extraopt -XX:+UnlockDiagnosticVMOptions -extraopt -XX:+WhiteBoxAPI -extraopt -Xbootclasspath/a:.
|
||||
* -extraopt -XX:-UseCompressedOops
|
||||
* -extraopt -XX:CompileCommand=dontinline,compiler.whitebox.SimpleTestCaseHelper::*
|
||||
* @run main/othervm -Xmixed -Xbatch -XX:+UseAOT -XX:+TieredCompilation
|
||||
* @run main/othervm -Xmixed -Xbatch -XX:+UseAOT -XX:+TieredCompilation -XX:CompilationPolicyChoice=2
|
||||
* -XX:-UseCounterDecay -XX:-UseCompressedOops
|
||||
* -XX:-Inline
|
||||
* -XX:AOTLibrary=./libRecompilationTest1.so -Xbootclasspath/a:.
|
||||
@ -50,7 +50,7 @@
|
||||
* -extraopt -XX:+UnlockDiagnosticVMOptions -extraopt -XX:+WhiteBoxAPI -extraopt -Xbootclasspath/a:.
|
||||
* -extraopt -XX:-UseCompressedOops
|
||||
* -extraopt -XX:CompileCommand=dontinline,compiler.whitebox.SimpleTestCaseHelper::*
|
||||
* @run main/othervm -Xmixed -Xbatch -XX:+UseAOT -XX:+TieredCompilation
|
||||
* @run main/othervm -Xmixed -Xbatch -XX:+UseAOT -XX:+TieredCompilation -XX:CompilationPolicyChoice=2
|
||||
* -XX:-UseCounterDecay -XX:-UseCompressedOops
|
||||
* -XX:-Inline
|
||||
* -XX:AOTLibrary=./libRecompilationTest2.so -Xbootclasspath/a:.
|
||||
|
Loading…
x
Reference in New Issue
Block a user