RFR(XS): 8132287: obsolete the "InlineNotify" flag option
dean.long at oracle.com
dean.long at oracle.com
Thu May 10 19:52:14 UTC 2018
On 5/10/18 12:19 PM, Daniel D. Daugherty wrote:
> I can include the Graal fix in my push if that works for you...
Yes, please do. This should do it:
diff -r 0509b9be3bda
src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigVersioned.java
---
a/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigVersioned.java
Thu May 10 11:45:40 2018 -0700
+++
b/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/GraalHotSpotVMConfigVersioned.java
Thu May 10 12:50:48 2018 -0700
@@ -44,7 +44,7 @@
final boolean useCRC32CIntrinsics = getFlag("UseCRC32CIntrinsics",
Boolean.class);
// JDK-8075171
- final boolean inlineNotify = getFlag("InlineNotify", Boolean.class);
+ final boolean inlineNotify = getFlag("InlineNotify", Boolean.class,
true);
// JDK-8046936
final int javaThreadReservedStackActivationOffset =
getFieldOffset("JavaThread::_reserved_stack_activation", Integer.class,
"address");
dl
More information about the hotspot-compiler-dev
mailing list