I45E2K: Update to 11.0.12+7(ga)
This commit is contained in:
parent
bf6bd69323
commit
10d805dee2
@ -1,168 +0,0 @@
|
||||
diff --git a/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java b/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java
|
||||
index 5a1d3b900..ab327bf9a 100644
|
||||
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java
|
||||
+++ b/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java
|
||||
@@ -2471,6 +2471,9 @@ public class ClassReader {
|
||||
}
|
||||
|
||||
private List<Type> adjustMethodParams(long flags, List<Type> args) {
|
||||
+ if (args.isEmpty()) {
|
||||
+ return args;
|
||||
+ }
|
||||
boolean isVarargs = (flags & VARARGS) != 0;
|
||||
if (isVarargs) {
|
||||
Type varargsElem = args.last();
|
||||
diff --git a/test/langtools/tools/javac/AvoidNPEAtClassReader/AvoidNPEAtClassReaderTest.java b/test/langtools/tools/javac/AvoidNPEAtClassReader/AvoidNPEAtClassReaderTest.java
|
||||
new file mode 100644
|
||||
index 000000000..3b47d6944
|
||||
--- /dev/null
|
||||
+++ b/test/langtools/tools/javac/AvoidNPEAtClassReader/AvoidNPEAtClassReaderTest.java
|
||||
@@ -0,0 +1,43 @@
|
||||
+/*
|
||||
+ * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
+ *
|
||||
+ * This code is free software; you can redistribute it and/or modify it
|
||||
+ * under the terms of the GNU General Public License version 2 only, as
|
||||
+ * published by the Free Software Foundation.
|
||||
+ *
|
||||
+ * This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
+ * version 2 for more details (a copy is included in the LICENSE file that
|
||||
+ * accompanied this code).
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU General Public License version
|
||||
+ * 2 along with this work; if not, write to the Free Software Foundation,
|
||||
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
+ *
|
||||
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
+ * or visit www.oracle.com if you need additional information or have any
|
||||
+ * questions.
|
||||
+ */
|
||||
+
|
||||
+/**
|
||||
+ * @test
|
||||
+ * @bug 8207160
|
||||
+ * @summary ClassReader::adjustMethodParams can potentially return null if the args list is empty
|
||||
+ * @compile pkg/Outer.jasm pkg/Outer$Inner.jasm AvoidNPEAtClassReaderTest.java
|
||||
+ */
|
||||
+
|
||||
+
|
||||
+/** this test is checking that javac doesn't fail with NPE when reading inner classes with constructors
|
||||
+ * that doesn't have as a parameter a reference to the outer class. Such constructors were generated by
|
||||
+ * versions of javac previous to JDK7.
|
||||
+ */
|
||||
+
|
||||
+import pkg.*;
|
||||
+
|
||||
+public class AvoidNPEAtClassReaderTest {
|
||||
+ public void bar(Outer outer) {
|
||||
+ Object stuff = outer.foo();
|
||||
+ }
|
||||
+}
|
||||
diff --git a/test/langtools/tools/javac/AvoidNPEAtClassReader/pkg/Outer$Inner.jasm b/test/langtools/tools/javac/AvoidNPEAtClassReader/pkg/Outer$Inner.jasm
|
||||
new file mode 100644
|
||||
index 000000000..23fe2eb4b
|
||||
--- /dev/null
|
||||
+++ b/test/langtools/tools/javac/AvoidNPEAtClassReader/pkg/Outer$Inner.jasm
|
||||
@@ -0,0 +1,42 @@
|
||||
+/*
|
||||
+ * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
+ *
|
||||
+ * This code is free software; you can redistribute it and/or modify it
|
||||
+ * under the terms of the GNU General Public License version 2 only, as
|
||||
+ * published by the Free Software Foundation.
|
||||
+ *
|
||||
+ * This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
+ * version 2 for more details (a copy is included in the LICENSE file that
|
||||
+ * accompanied this code).
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU General Public License version
|
||||
+ * 2 along with this work; if not, write to the Free Software Foundation,
|
||||
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
+ *
|
||||
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
+ * or visit www.oracle.com if you need additional information or have any
|
||||
+ * questions.
|
||||
+ */
|
||||
+
|
||||
+package pkg;
|
||||
+
|
||||
+super public final class Outer$Inner
|
||||
+ version 55:0
|
||||
+{
|
||||
+
|
||||
+final synthetic Field this$0:"Lpkg/Outer;";
|
||||
+
|
||||
+public Method "<init>":"()V"
|
||||
+ stack 1 locals 1
|
||||
+{
|
||||
+ aload_0;
|
||||
+ invokespecial Method java/lang/Object."<init>":"()V";
|
||||
+ return;
|
||||
+}
|
||||
+
|
||||
+public final InnerClass Inner=class Outer$Inner of class Outer;
|
||||
+
|
||||
+} // end Class Outer$Inner
|
||||
diff --git a/test/langtools/tools/javac/AvoidNPEAtClassReader/pkg/Outer.jasm b/test/langtools/tools/javac/AvoidNPEAtClassReader/pkg/Outer.jasm
|
||||
new file mode 100644
|
||||
index 000000000..13baaf761
|
||||
--- /dev/null
|
||||
+++ b/test/langtools/tools/javac/AvoidNPEAtClassReader/pkg/Outer.jasm
|
||||
@@ -0,0 +1,48 @@
|
||||
+/*
|
||||
+ * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
+ *
|
||||
+ * This code is free software; you can redistribute it and/or modify it
|
||||
+ * under the terms of the GNU General Public License version 2 only, as
|
||||
+ * published by the Free Software Foundation.
|
||||
+ *
|
||||
+ * This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
+ * version 2 for more details (a copy is included in the LICENSE file that
|
||||
+ * accompanied this code).
|
||||
+ *
|
||||
+ * You should have received a copy of the GNU General Public License version
|
||||
+ * 2 along with this work; if not, write to the Free Software Foundation,
|
||||
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
+ *
|
||||
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
+ * or visit www.oracle.com if you need additional information or have any
|
||||
+ * questions.
|
||||
+ */
|
||||
+
|
||||
+package pkg;
|
||||
+
|
||||
+super public class Outer
|
||||
+ version 55:0
|
||||
+{
|
||||
+
|
||||
+
|
||||
+public Method "<init>":"()V"
|
||||
+ stack 1 locals 1
|
||||
+{
|
||||
+ aload_0;
|
||||
+ invokespecial Method java/lang/Object."<init>":"()V";
|
||||
+ return;
|
||||
+}
|
||||
+
|
||||
+public Method foo:"()Lpkg/Outer$Inner;"
|
||||
+ stack 1 locals 1
|
||||
+{
|
||||
+ aconst_null;
|
||||
+ areturn;
|
||||
+}
|
||||
+
|
||||
+public final InnerClass Inner=class Outer$Inner of class Outer;
|
||||
+
|
||||
+} // end Class Outer
|
||||
--
|
||||
2.19.1
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
diff --git a/make/autoconf/hotspot.m4 b/make/autoconf/hotspot.m4
|
||||
index d598b98..61739b9 100644
|
||||
index d598b9897..61739b900 100644
|
||||
--- a/make/autoconf/hotspot.m4
|
||||
+++ b/make/autoconf/hotspot.m4
|
||||
@@ -367,7 +367,8 @@ AC_DEFUN_ONCE([HOTSPOT_SETUP_JVM_FEATURES],
|
||||
@ -13,7 +13,7 @@ index d598b98..61739b9 100644
|
||||
else
|
||||
DISABLED_JVM_FEATURES="$DISABLED_JVM_FEATURES zgc"
|
||||
diff --git a/src/hotspot/cpu/aarch64/aarch64.ad b/src/hotspot/cpu/aarch64/aarch64.ad
|
||||
index 890e457..0625053 100644
|
||||
index ce103dc1c..53cd702b9 100644
|
||||
--- a/src/hotspot/cpu/aarch64/aarch64.ad
|
||||
+++ b/src/hotspot/cpu/aarch64/aarch64.ad
|
||||
@@ -957,6 +957,146 @@ reg_class v3_reg(
|
||||
@ -175,7 +175,7 @@ index 890e457..0625053 100644
|
||||
|
||||
//----------SOURCE BLOCK-------------------------------------------------------
|
||||
// This is a block of C++ code which provides values, functions, and
|
||||
@@ -4738,6 +4883,258 @@ operand vRegD_V3()
|
||||
@@ -4761,6 +4906,258 @@ operand vRegD_V3()
|
||||
interface(REG_INTER);
|
||||
%}
|
||||
|
||||
@ -434,8 +434,8 @@ index 890e457..0625053 100644
|
||||
// Flags register, used as output of signed compare instructions
|
||||
|
||||
// note that on AArch64 we also use this register as the output for
|
||||
@@ -17078,6 +17475,95 @@ instruct vsrl2L_imm(vecX dst, vecX src, immI shift) %{
|
||||
ins_pipe(vshift128_imm);
|
||||
@@ -17700,6 +18097,95 @@ instruct vpopcount2I(vecD dst, vecD src) %{
|
||||
ins_pipe(pipe_class_default);
|
||||
%}
|
||||
|
||||
+source %{
|
||||
@ -531,10 +531,10 @@ index 890e457..0625053 100644
|
||||
// These must follow all instruction definitions as they use the names
|
||||
// defined in the instructions definitions.
|
||||
diff --git a/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp b/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp
|
||||
index fe301df..6ab944b 100644
|
||||
index 4ba97e035..96042ace5 100644
|
||||
--- a/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp
|
||||
+++ b/src/hotspot/cpu/aarch64/c1_LIRAssembler_aarch64.cpp
|
||||
@@ -1013,7 +1013,11 @@ void LIR_Assembler::mem2reg(LIR_Opr src, LIR_Opr dest, BasicType type, LIR_Patch
|
||||
@@ -1033,7 +1033,11 @@ void LIR_Assembler::mem2reg(LIR_Opr src, LIR_Opr dest, BasicType type, LIR_Patch
|
||||
if (UseCompressedOops && !wide) {
|
||||
__ decode_heap_oop(dest->as_register());
|
||||
}
|
||||
@ -547,7 +547,7 @@ index fe301df..6ab944b 100644
|
||||
} else if (type == T_ADDRESS && addr->disp() == oopDesc::klass_offset_in_bytes()) {
|
||||
if (UseCompressedClassPointers) {
|
||||
__ decode_klass_not_null(dest->as_register());
|
||||
@@ -2825,7 +2829,11 @@ void LIR_Assembler::leal(LIR_Opr addr, LIR_Opr dest, LIR_PatchCode patch_code, C
|
||||
@@ -2903,7 +2907,11 @@ void LIR_Assembler::leal(LIR_Opr addr, LIR_Opr dest, LIR_PatchCode patch_code, C
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
@ -562,7 +562,7 @@ index fe301df..6ab944b 100644
|
||||
|
||||
diff --git a/src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.cpp b/src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..90b2b4c
|
||||
index 000000000..90b2b4ca7
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.cpp
|
||||
@@ -0,0 +1,408 @@
|
||||
@ -976,7 +976,7 @@ index 0000000..90b2b4c
|
||||
+}
|
||||
diff --git a/src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.hpp b/src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.hpp
|
||||
new file mode 100644
|
||||
index 0000000..7e8be01
|
||||
index 000000000..7e8be01cc
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/cpu/aarch64/gc/z/zBarrierSetAssembler_aarch64.hpp
|
||||
@@ -0,0 +1,92 @@
|
||||
@ -1073,10 +1073,10 @@ index 0000000..7e8be01
|
||||
+
|
||||
+#endif // CPU_AARCH64_GC_Z_ZBARRIERSETASSEMBLER_AARCH64_HPP
|
||||
diff --git a/src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp b/src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp
|
||||
index 89a4330..ac7eb84 100644
|
||||
index 864171278..2eee84cd9 100644
|
||||
--- a/src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp
|
||||
+++ b/src/hotspot/cpu/aarch64/stubGenerator_aarch64.cpp
|
||||
@@ -45,6 +45,9 @@
|
||||
@@ -47,6 +47,9 @@
|
||||
#ifdef COMPILER2
|
||||
#include "opto/runtime.hpp"
|
||||
#endif
|
||||
@ -1086,7 +1086,7 @@ index 89a4330..ac7eb84 100644
|
||||
|
||||
// Declaration and definition of StubGenerator (no .hpp file).
|
||||
// For a more detailed description of the stub routine structure
|
||||
@@ -549,6 +552,16 @@ class StubGenerator: public StubCodeGenerator {
|
||||
@@ -551,6 +554,16 @@ class StubGenerator: public StubCodeGenerator {
|
||||
// make sure object is 'reasonable'
|
||||
__ cbz(r0, exit); // if obj is NULL it is OK
|
||||
|
||||
@ -1104,7 +1104,7 @@ index 89a4330..ac7eb84 100644
|
||||
__ mov(c_rarg3, (intptr_t) Universe::verify_oop_mask());
|
||||
__ andr(c_rarg2, r0, c_rarg3);
|
||||
diff --git a/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp b/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp
|
||||
index d2290a6..381211e 100644
|
||||
index d2290a670..381211ecc 100644
|
||||
--- a/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp
|
||||
+++ b/src/hotspot/cpu/x86/gc/z/zBarrierSetAssembler_x86.cpp
|
||||
@@ -273,13 +273,13 @@ void ZBarrierSetAssembler::generate_c1_load_barrier_stub(LIR_Assembler* ce,
|
||||
@ -1127,7 +1127,7 @@ index d2290a6..381211e 100644
|
||||
assert_different_registers(ref, ref_addr, noreg);
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zAddress_linux_aarch64.inline.hpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zAddress_linux_aarch64.inline.hpp
|
||||
new file mode 100644
|
||||
index 0000000..936480c
|
||||
index 000000000..936480cb5
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zAddress_linux_aarch64.inline.hpp
|
||||
@@ -0,0 +1,31 @@
|
||||
@ -1164,7 +1164,7 @@ index 0000000..936480c
|
||||
+#endif // OS_CPU_LINUX_AARCH64_ZADDRESS_LINUX_AARCH64_INLINE_HPP
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingFile_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingFile_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..47894b5
|
||||
index 000000000..47894b5c8
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingFile_linux_aarch64.cpp
|
||||
@@ -0,0 +1,426 @@
|
||||
@ -1596,7 +1596,7 @@ index 0000000..47894b5
|
||||
+}
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingFile_linux_aarch64.hpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingFile_linux_aarch64.hpp
|
||||
new file mode 100644
|
||||
index 0000000..032dbc1
|
||||
index 000000000..032dbc133
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingFile_linux_aarch64.hpp
|
||||
@@ -0,0 +1,63 @@
|
||||
@ -1665,7 +1665,7 @@ index 0000000..032dbc1
|
||||
+#endif // OS_CPU_LINUX_AARCH64_ZBACKINGFILE_LINUX_AARCH64_HPP
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingPath_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingPath_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..1adffa3
|
||||
index 000000000..1adffa32b
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingPath_linux_aarch64.cpp
|
||||
@@ -0,0 +1,149 @@
|
||||
@ -1820,7 +1820,7 @@ index 0000000..1adffa3
|
||||
+}
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingPath_linux_aarch64.hpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingPath_linux_aarch64.hpp
|
||||
new file mode 100644
|
||||
index 0000000..a03aaf9
|
||||
index 000000000..a03aaf960
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zBackingPath_linux_aarch64.hpp
|
||||
@@ -0,0 +1,52 @@
|
||||
@ -1878,7 +1878,7 @@ index 0000000..a03aaf9
|
||||
+#endif // OS_CPU_LINUX_AARCH64_ZBACKINGPATH_LINUX_AARCH64_HPP
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zGlobals_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zGlobals_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..5d24809
|
||||
index 000000000..5d2480993
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zGlobals_linux_aarch64.cpp
|
||||
@@ -0,0 +1,33 @@
|
||||
@ -1917,7 +1917,7 @@ index 0000000..5d24809
|
||||
+}
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zGlobals_linux_aarch64.hpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zGlobals_linux_aarch64.hpp
|
||||
new file mode 100644
|
||||
index 0000000..93c1806
|
||||
index 000000000..93c18067b
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zGlobals_linux_aarch64.hpp
|
||||
@@ -0,0 +1,88 @@
|
||||
@ -2011,7 +2011,7 @@ index 0000000..93c1806
|
||||
+#endif // OS_CPU_LINUX_AARCH64_ZGLOBALS_LINUX_AARCH64_HPP
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zLargePages_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zLargePages_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..c79195c
|
||||
index 000000000..c79195cd1
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zLargePages_linux_aarch64.cpp
|
||||
@@ -0,0 +1,38 @@
|
||||
@ -2055,7 +2055,7 @@ index 0000000..c79195c
|
||||
+}
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zNUMA_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zNUMA_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..10706fa
|
||||
index 000000000..10706fac2
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zNUMA_linux_aarch64.cpp
|
||||
@@ -0,0 +1,83 @@
|
||||
@ -2144,7 +2144,7 @@ index 0000000..10706fa
|
||||
+}
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zPhysicalMemoryBacking_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zPhysicalMemoryBacking_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..55c2a16
|
||||
index 000000000..55c2a16e0
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zPhysicalMemoryBacking_linux_aarch64.cpp
|
||||
@@ -0,0 +1,270 @@
|
||||
@ -2420,7 +2420,7 @@ index 0000000..55c2a16
|
||||
+}
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zPhysicalMemoryBacking_linux_aarch64.hpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zPhysicalMemoryBacking_linux_aarch64.hpp
|
||||
new file mode 100644
|
||||
index 0000000..c55b7b1
|
||||
index 000000000..c55b7b17c
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zPhysicalMemoryBacking_linux_aarch64.hpp
|
||||
@@ -0,0 +1,65 @@
|
||||
@ -2491,7 +2491,7 @@ index 0000000..c55b7b1
|
||||
+#endif // OS_CPU_LINUX_AARCH64_ZPHYSICALMEMORYBACKING_LINUX_AARCH64_HPP
|
||||
diff --git a/src/hotspot/os_cpu/linux_aarch64/gc/z/zVirtualMemory_linux_aarch64.cpp b/src/hotspot/os_cpu/linux_aarch64/gc/z/zVirtualMemory_linux_aarch64.cpp
|
||||
new file mode 100644
|
||||
index 0000000..68df401
|
||||
index 000000000..68df40191
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/os_cpu/linux_aarch64/gc/z/zVirtualMemory_linux_aarch64.cpp
|
||||
@@ -0,0 +1,41 @@
|
||||
@ -2537,7 +2537,7 @@ index 0000000..68df401
|
||||
+ return true;
|
||||
+}
|
||||
diff --git a/src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp b/src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp
|
||||
index 9f8ce74..0abd398 100644
|
||||
index 9f8ce7424..0abd3980f 100644
|
||||
--- a/src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp
|
||||
+++ b/src/hotspot/share/gc/z/c1/zBarrierSetC1.cpp
|
||||
@@ -38,21 +38,15 @@ ZLoadBarrierStubC1::ZLoadBarrierStubC1(LIRAccess& access, LIR_Opr ref, address r
|
||||
@ -2569,3 +2569,6 @@ index 9f8ce74..0abd398 100644
|
||||
}
|
||||
|
||||
DecoratorSet ZLoadBarrierStubC1::decorators() const {
|
||||
--
|
||||
2.19.0
|
||||
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
diff --git a/make/hotspot/gensrc/GensrcAdlc.gmk b/make/hotspot/gensrc/GensrcAdlc.gmk
|
||||
index 6878962..bb9721c 100644
|
||||
index 687896251..a39640526 100644
|
||||
--- a/make/hotspot/gensrc/GensrcAdlc.gmk
|
||||
+++ b/make/hotspot/gensrc/GensrcAdlc.gmk
|
||||
@@ -146,6 +146,12 @@ ifeq ($(call check-jvm-feature, compiler2), true)
|
||||
@@ -140,6 +140,12 @@ ifeq ($(call check-jvm-feature, compiler2), true)
|
||||
$d/os_cpu/$(HOTSPOT_TARGET_OS)_$(HOTSPOT_TARGET_CPU_ARCH)/$(HOTSPOT_TARGET_OS)_$(HOTSPOT_TARGET_CPU_ARCH).ad \
|
||||
)))
|
||||
|
||||
@ -16,7 +16,7 @@ index 6878962..bb9721c 100644
|
||||
AD_SRC_FILES += $(call uniq, $(wildcard $(foreach d, $(AD_SRC_ROOTS), \
|
||||
$d/cpu/$(HOTSPOT_TARGET_CPU_ARCH)/gc/shenandoah/shenandoah_$(HOTSPOT_TARGET_CPU).ad \
|
||||
diff --git a/src/hotspot/cpu/aarch64/aarch64.ad b/src/hotspot/cpu/aarch64/aarch64.ad
|
||||
index 05b36e2..18e774f 100644
|
||||
index 29f81face..ab578476a 100644
|
||||
--- a/src/hotspot/cpu/aarch64/aarch64.ad
|
||||
+++ b/src/hotspot/cpu/aarch64/aarch64.ad
|
||||
@@ -1128,13 +1128,6 @@ definitions %{
|
||||
@ -33,8 +33,8 @@ index 05b36e2..18e774f 100644
|
||||
//----------SOURCE BLOCK-------------------------------------------------------
|
||||
// This is a block of C++ code which provides values, functions, and
|
||||
// definitions necessary in the rest of the architecture description
|
||||
@@ -17488,243 +17481,6 @@ instruct vsrl2L_imm(vecX dst, vecX src, immI shift) %{
|
||||
ins_pipe(vshift128_imm);
|
||||
@@ -18110,243 +18103,6 @@ instruct vpopcount2I(vecD dst, vecD src) %{
|
||||
ins_pipe(pipe_class_default);
|
||||
%}
|
||||
|
||||
-source %{
|
||||
@ -279,7 +279,7 @@ index 05b36e2..18e774f 100644
|
||||
// These must follow all instruction definitions as they use the names
|
||||
diff --git a/src/hotspot/cpu/aarch64/gc/z/z_aarch64.ad b/src/hotspot/cpu/aarch64/gc/z/z_aarch64.ad
|
||||
new file mode 100644
|
||||
index 0000000..50cc6f9
|
||||
index 000000000..50cc6f924
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/cpu/aarch64/gc/z/z_aarch64.ad
|
||||
@@ -0,0 +1,268 @@
|
||||
@ -553,7 +553,7 @@ index 0000000..50cc6f9
|
||||
+
|
||||
diff --git a/src/hotspot/cpu/x86/gc/z/z_x86_64.ad b/src/hotspot/cpu/x86/gc/z/z_x86_64.ad
|
||||
new file mode 100644
|
||||
index 0000000..38c2e92
|
||||
index 000000000..38c2e926b
|
||||
--- /dev/null
|
||||
+++ b/src/hotspot/cpu/x86/gc/z/z_x86_64.ad
|
||||
@@ -0,0 +1,168 @@
|
||||
@ -726,7 +726,7 @@ index 0000000..38c2e92
|
||||
+%}
|
||||
+
|
||||
diff --git a/src/hotspot/cpu/x86/x86_64.ad b/src/hotspot/cpu/x86/x86_64.ad
|
||||
index d127732..fce1b85 100644
|
||||
index 95a8538f3..ede4d8864 100644
|
||||
--- a/src/hotspot/cpu/x86/x86_64.ad
|
||||
+++ b/src/hotspot/cpu/x86/x86_64.ad
|
||||
@@ -538,19 +538,6 @@ reg_class int_rdi_reg(RDI);
|
||||
@ -749,7 +749,7 @@ index d127732..fce1b85 100644
|
||||
//----------SOURCE BLOCK-------------------------------------------------------
|
||||
// This is a block of C++ code which provides values, functions, and
|
||||
// definitions necessary in the rest of the architecture description
|
||||
@@ -1801,19 +1788,6 @@ const RegMask Matcher::method_handle_invoke_SP_save_mask() {
|
||||
@@ -1882,19 +1869,6 @@ const RegMask Matcher::method_handle_invoke_SP_save_mask() {
|
||||
return NO_REG_mask();
|
||||
}
|
||||
|
||||
@ -769,7 +769,7 @@ index d127732..fce1b85 100644
|
||||
%}
|
||||
|
||||
//----------ENCODING BLOCK-----------------------------------------------------
|
||||
@@ -12555,131 +12529,6 @@ instruct RethrowException()
|
||||
@@ -12845,131 +12819,6 @@ instruct RethrowException()
|
||||
ins_pipe(pipe_jmp);
|
||||
%}
|
||||
|
||||
@ -901,3 +901,6 @@ index d127732..fce1b85 100644
|
||||
// ============================================================================
|
||||
// This name is KNOWN by the ADLC and cannot be changed.
|
||||
// The ADLC forces a 'TypeRawPtr::BOTTOM' output type
|
||||
--
|
||||
2.19.0
|
||||
|
||||
|
||||
@ -1,263 +0,0 @@
|
||||
From 8da2787209da1906e3a92fff95dc46abe793b433 Mon Sep 17 00:00:00 2001
|
||||
Date: Thu, 18 Mar 2021 12:36:13 +0000
|
||||
Subject: [PATCH 3/4] 8217918: C2 -XX:+AggressiveUnboxing is broken
|
||||
|
||||
---
|
||||
src/hotspot/share/opto/cfgnode.hpp | 4 +-
|
||||
src/hotspot/share/opto/phaseX.cpp | 96 ++++++++++++++++++++++++------
|
||||
src/hotspot/share/opto/phaseX.hpp | 10 ++++
|
||||
src/hotspot/share/opto/type.cpp | 16 +++++
|
||||
src/hotspot/share/opto/type.hpp | 4 ++
|
||||
5 files changed, 111 insertions(+), 19 deletions(-)
|
||||
|
||||
diff --git a/src/hotspot/share/opto/cfgnode.hpp b/src/hotspot/share/opto/cfgnode.hpp
|
||||
index 0d8c9b33b..04029ca91 100644
|
||||
--- a/src/hotspot/share/opto/cfgnode.hpp
|
||||
+++ b/src/hotspot/share/opto/cfgnode.hpp
|
||||
@@ -118,11 +118,13 @@ class JProjNode : public ProjNode {
|
||||
// can turn PhiNodes into copys in-place by NULL'ing out their RegionNode
|
||||
// input in slot 0.
|
||||
class PhiNode : public TypeNode {
|
||||
+ friend class PhaseRenumberLive;
|
||||
+
|
||||
const TypePtr* const _adr_type; // non-null only for Type::MEMORY nodes.
|
||||
// The following fields are only used for data PhiNodes to indicate
|
||||
// that the PhiNode represents the value of a known instance field.
|
||||
int _inst_mem_id; // Instance memory id (node index of the memory Phi)
|
||||
- const int _inst_id; // Instance id of the memory slice.
|
||||
+ int _inst_id; // Instance id of the memory slice.
|
||||
const int _inst_index; // Alias index of the instance memory slice.
|
||||
// Array elements references have the same alias_idx but different offset.
|
||||
const int _inst_offset; // Offset of the instance memory slice.
|
||||
diff --git a/src/hotspot/share/opto/phaseX.cpp b/src/hotspot/share/opto/phaseX.cpp
|
||||
index 9d5d4deed..f4a38cd28 100644
|
||||
--- a/src/hotspot/share/opto/phaseX.cpp
|
||||
+++ b/src/hotspot/share/opto/phaseX.cpp
|
||||
@@ -463,55 +463,115 @@ PhaseRemoveUseless::PhaseRemoveUseless(PhaseGVN *gvn, Unique_Node_List *worklist
|
||||
PhaseRenumberLive::PhaseRenumberLive(PhaseGVN* gvn,
|
||||
Unique_Node_List* worklist, Unique_Node_List* new_worklist,
|
||||
PhaseNumber phase_num) :
|
||||
- PhaseRemoveUseless(gvn, worklist, Remove_Useless_And_Renumber_Live) {
|
||||
-
|
||||
+ PhaseRemoveUseless(gvn, worklist, Remove_Useless_And_Renumber_Live),
|
||||
+ _new_type_array(C->comp_arena()),
|
||||
+ _old2new_map(C->unique(), C->unique(), -1),
|
||||
+ _delayed(Thread::current()->resource_area()),
|
||||
+ _is_pass_finished(false),
|
||||
+ _live_node_count(C->live_nodes())
|
||||
+{
|
||||
assert(RenumberLiveNodes, "RenumberLiveNodes must be set to true for node renumbering to take place");
|
||||
assert(C->live_nodes() == _useful.size(), "the number of live nodes must match the number of useful nodes");
|
||||
assert(gvn->nodes_size() == 0, "GVN must not contain any nodes at this point");
|
||||
+ assert(_delayed.size() == 0, "should be empty");
|
||||
|
||||
- uint old_unique_count = C->unique();
|
||||
- uint live_node_count = C->live_nodes();
|
||||
uint worklist_size = worklist->size();
|
||||
|
||||
- // Storage for the updated type information.
|
||||
- Type_Array new_type_array(C->comp_arena());
|
||||
-
|
||||
// Iterate over the set of live nodes.
|
||||
- uint current_idx = 0; // The current new node ID. Incremented after every assignment.
|
||||
- for (uint i = 0; i < _useful.size(); i++) {
|
||||
- Node* n = _useful.at(i);
|
||||
- // Sanity check that fails if we ever decide to execute this phase after EA
|
||||
- assert(!n->is_Phi() || n->as_Phi()->inst_mem_id() == -1, "should not be linked to data Phi");
|
||||
- const Type* type = gvn->type_or_null(n);
|
||||
- new_type_array.map(current_idx, type);
|
||||
+ for (uint current_idx = 0; current_idx < _useful.size(); current_idx++) {
|
||||
+ Node* n = _useful.at(current_idx);
|
||||
|
||||
bool in_worklist = false;
|
||||
if (worklist->member(n)) {
|
||||
in_worklist = true;
|
||||
}
|
||||
|
||||
+ const Type* type = gvn->type_or_null(n);
|
||||
+ _new_type_array.map(current_idx, type);
|
||||
+
|
||||
+ assert(_old2new_map.at(n->_idx) == -1, "already seen");
|
||||
+ _old2new_map.at_put(n->_idx, current_idx);
|
||||
+
|
||||
n->set_idx(current_idx); // Update node ID.
|
||||
|
||||
if (in_worklist) {
|
||||
new_worklist->push(n);
|
||||
}
|
||||
|
||||
- current_idx++;
|
||||
+ if (update_embedded_ids(n) < 0) {
|
||||
+ _delayed.push(n); // has embedded IDs; handle later
|
||||
+ }
|
||||
}
|
||||
|
||||
assert(worklist_size == new_worklist->size(), "the new worklist must have the same size as the original worklist");
|
||||
- assert(live_node_count == current_idx, "all live nodes must be processed");
|
||||
+ assert(_live_node_count == _useful.size(), "all live nodes must be processed");
|
||||
+
|
||||
+ _is_pass_finished = true; // pass finished; safe to process delayed updates
|
||||
+
|
||||
+ while (_delayed.size() > 0) {
|
||||
+ Node* n = _delayed.pop();
|
||||
+ int no_of_updates = update_embedded_ids(n);
|
||||
+ assert(no_of_updates > 0, "should be updated");
|
||||
+ }
|
||||
|
||||
// Replace the compiler's type information with the updated type information.
|
||||
- gvn->replace_types(new_type_array);
|
||||
+ gvn->replace_types(_new_type_array);
|
||||
|
||||
// Update the unique node count of the compilation to the number of currently live nodes.
|
||||
- C->set_unique(live_node_count);
|
||||
+ C->set_unique(_live_node_count);
|
||||
|
||||
// Set the dead node count to 0 and reset dead node list.
|
||||
C->reset_dead_node_list();
|
||||
}
|
||||
|
||||
+int PhaseRenumberLive::new_index(int old_idx) {
|
||||
+ assert(_is_pass_finished, "not finished");
|
||||
+ if (_old2new_map.at(old_idx) == -1) { // absent
|
||||
+ // Allocate a placeholder to preserve uniqueness
|
||||
+ _old2new_map.at_put(old_idx, _live_node_count);
|
||||
+ _live_node_count++;
|
||||
+ }
|
||||
+ return _old2new_map.at(old_idx);
|
||||
+}
|
||||
+
|
||||
+int PhaseRenumberLive::update_embedded_ids(Node* n) {
|
||||
+ int no_of_updates = 0;
|
||||
+ if (n->is_Phi()) {
|
||||
+ PhiNode* phi = n->as_Phi();
|
||||
+ if (phi->_inst_id != -1) {
|
||||
+ if (!_is_pass_finished) {
|
||||
+ return -1; // delay
|
||||
+ }
|
||||
+ int new_idx = new_index(phi->_inst_id);
|
||||
+ assert(new_idx != -1, "");
|
||||
+ phi->_inst_id = new_idx;
|
||||
+ no_of_updates++;
|
||||
+ }
|
||||
+ if (phi->_inst_mem_id != -1) {
|
||||
+ if (!_is_pass_finished) {
|
||||
+ return -1; // delay
|
||||
+ }
|
||||
+ int new_idx = new_index(phi->_inst_mem_id);
|
||||
+ assert(new_idx != -1, "");
|
||||
+ phi->_inst_mem_id = new_idx;
|
||||
+ no_of_updates++;
|
||||
+ }
|
||||
+ }
|
||||
+
|
||||
+ const Type* type = _new_type_array.fast_lookup(n->_idx);
|
||||
+ if (type != NULL && type->isa_oopptr() && type->is_oopptr()->is_known_instance()) {
|
||||
+ if (!_is_pass_finished) {
|
||||
+ return -1; // delay
|
||||
+ }
|
||||
+ int old_idx = type->is_oopptr()->instance_id();
|
||||
+ int new_idx = new_index(old_idx);
|
||||
+ const Type* new_type = type->is_oopptr()->with_instance_id(new_idx);
|
||||
+ _new_type_array.map(n->_idx, new_type);
|
||||
+ no_of_updates++;
|
||||
+ }
|
||||
+
|
||||
+ return no_of_updates;
|
||||
+}
|
||||
|
||||
//=============================================================================
|
||||
//------------------------------PhaseTransform---------------------------------
|
||||
diff --git a/src/hotspot/share/opto/phaseX.hpp b/src/hotspot/share/opto/phaseX.hpp
|
||||
index 3b33a8cb2..ef5eb488e 100644
|
||||
--- a/src/hotspot/share/opto/phaseX.hpp
|
||||
+++ b/src/hotspot/share/opto/phaseX.hpp
|
||||
@@ -157,6 +157,16 @@ public:
|
||||
// Phase that first performs a PhaseRemoveUseless, then it renumbers compiler
|
||||
// structures accordingly.
|
||||
class PhaseRenumberLive : public PhaseRemoveUseless {
|
||||
+protected:
|
||||
+ Type_Array _new_type_array; // Storage for the updated type information.
|
||||
+ GrowableArray<int> _old2new_map;
|
||||
+ Node_List _delayed;
|
||||
+ bool _is_pass_finished;
|
||||
+ uint _live_node_count;
|
||||
+
|
||||
+ int update_embedded_ids(Node* n);
|
||||
+ int new_index(int old_idx);
|
||||
+
|
||||
public:
|
||||
PhaseRenumberLive(PhaseGVN* gvn,
|
||||
Unique_Node_List* worklist, Unique_Node_List* new_worklist,
|
||||
diff --git a/src/hotspot/share/opto/type.cpp b/src/hotspot/share/opto/type.cpp
|
||||
index 0078b8773..964f9d247 100644
|
||||
--- a/src/hotspot/share/opto/type.cpp
|
||||
+++ b/src/hotspot/share/opto/type.cpp
|
||||
@@ -3456,6 +3456,12 @@ const TypePtr* TypeOopPtr::with_inline_depth(int depth) const {
|
||||
return make(_ptr, _offset, _instance_id, _speculative, depth);
|
||||
}
|
||||
|
||||
+//------------------------------with_instance_id--------------------------------
|
||||
+const TypePtr* TypeOopPtr::with_instance_id(int instance_id) const {
|
||||
+ assert(_instance_id != -1, "should be known");
|
||||
+ return make(_ptr, _offset, instance_id, _speculative, _inline_depth);
|
||||
+}
|
||||
+
|
||||
//------------------------------meet_instance_id--------------------------------
|
||||
int TypeOopPtr::meet_instance_id( int instance_id ) const {
|
||||
// Either is 'TOP' instance? Return the other instance!
|
||||
@@ -4059,6 +4065,11 @@ const TypePtr *TypeInstPtr::with_inline_depth(int depth) const {
|
||||
return make(_ptr, klass(), klass_is_exact(), const_oop(), _offset, _instance_id, _speculative, depth);
|
||||
}
|
||||
|
||||
+const TypePtr *TypeInstPtr::with_instance_id(int instance_id) const {
|
||||
+ assert(is_known_instance(), "should be known");
|
||||
+ return make(_ptr, klass(), klass_is_exact(), const_oop(), _offset, instance_id, _speculative, _inline_depth);
|
||||
+}
|
||||
+
|
||||
//=============================================================================
|
||||
// Convenience common pre-built types.
|
||||
const TypeAryPtr *TypeAryPtr::RANGE;
|
||||
@@ -4529,6 +4540,11 @@ const TypePtr *TypeAryPtr::with_inline_depth(int depth) const {
|
||||
return make(_ptr, _const_oop, _ary->remove_speculative()->is_ary(), _klass, _klass_is_exact, _offset, _instance_id, _speculative, depth);
|
||||
}
|
||||
|
||||
+const TypePtr *TypeAryPtr::with_instance_id(int instance_id) const {
|
||||
+ assert(is_known_instance(), "should be known");
|
||||
+ return make(_ptr, _const_oop, _ary->remove_speculative()->is_ary(), _klass, _klass_is_exact, _offset, instance_id, _speculative, _inline_depth);
|
||||
+}
|
||||
+
|
||||
//=============================================================================
|
||||
|
||||
//------------------------------hash-------------------------------------------
|
||||
diff --git a/src/hotspot/share/opto/type.hpp b/src/hotspot/share/opto/type.hpp
|
||||
index ca92fe3ab..e9ed7ce40 100644
|
||||
--- a/src/hotspot/share/opto/type.hpp
|
||||
+++ b/src/hotspot/share/opto/type.hpp
|
||||
@@ -1048,6 +1048,8 @@ public:
|
||||
virtual bool would_improve_type(ciKlass* exact_kls, int inline_depth) const;
|
||||
virtual const TypePtr* with_inline_depth(int depth) const;
|
||||
|
||||
+ virtual const TypePtr* with_instance_id(int instance_id) const;
|
||||
+
|
||||
virtual const Type *xdual() const; // Compute dual right now.
|
||||
// the core of the computation of the meet for TypeOopPtr and for its subclasses
|
||||
virtual const Type *xmeet_helper(const Type *t) const;
|
||||
@@ -1124,6 +1126,7 @@ class TypeInstPtr : public TypeOopPtr {
|
||||
// Speculative type helper methods.
|
||||
virtual const Type* remove_speculative() const;
|
||||
virtual const TypePtr* with_inline_depth(int depth) const;
|
||||
+ virtual const TypePtr* with_instance_id(int instance_id) const;
|
||||
|
||||
// the core of the computation of the meet of 2 types
|
||||
virtual const Type *xmeet_helper(const Type *t) const;
|
||||
@@ -1211,6 +1214,7 @@ public:
|
||||
// Speculative type helper methods.
|
||||
virtual const Type* remove_speculative() const;
|
||||
virtual const TypePtr* with_inline_depth(int depth) const;
|
||||
+ virtual const TypePtr* with_instance_id(int instance_id) const;
|
||||
|
||||
// the core of the computation of the meet of 2 types
|
||||
virtual const Type *xmeet_helper(const Type *t) const;
|
||||
--
|
||||
2.19.0
|
||||
|
||||
@ -1,26 +0,0 @@
|
||||
From 2d8c2049c7caad19e6cacccea1bc8962ac481f5a Mon Sep 17 00:00:00 2001
|
||||
Date: Wed, 17 Jun 2020 10:10:35 +0000
|
||||
Subject: [PATCH] 8223667: ASAN build broken
|
||||
|
||||
Summary: <asan>: <Remove quote from ASAN_OPTIONS variable in make/autoconf/spec.gmk.in>
|
||||
LLT: N/A
|
||||
Bug url: https://bugs.openjdk.java.net/browse/JDK-8223667
|
||||
---
|
||||
make/autoconf/spec.gmk.in | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/make/autoconf/spec.gmk.in b/make/autoconf/spec.gmk.in
|
||||
index 9473481bc..38fa47d9f 100644
|
||||
--- a/make/autoconf/spec.gmk.in
|
||||
+++ b/make/autoconf/spec.gmk.in
|
||||
@@ -382,7 +382,7 @@ GCOV_ENABLED=@GCOV_ENABLED@
|
||||
export ASAN_ENABLED:=@ASAN_ENABLED@
|
||||
export DEVKIT_LIB_DIR:=@DEVKIT_LIB_DIR@
|
||||
ifeq ($(ASAN_ENABLED), yes)
|
||||
- export ASAN_OPTIONS="handle_segv=0 detect_leaks=0"
|
||||
+ export ASAN_OPTIONS=handle_segv=0 detect_leaks=0
|
||||
ifneq ($(DEVKIT_LIB_DIR),)
|
||||
export LD_LIBRARY_PATH:=$(LD_LIBRARY_PATH):$(DEVKIT_LIB_DIR)
|
||||
endif
|
||||
--
|
||||
1.8.3.1
|
||||
@ -1,20 +0,0 @@
|
||||
diff --git a/src/hotspot/share/gc/cms/parOopClosures.inline.hpp b/src/hotspot/share/gc/cms/parOopClosures.inline.hpp
|
||||
index 1e206292d..609a14868 100644
|
||||
--- a/src/hotspot/share/gc/cms/parOopClosures.inline.hpp
|
||||
+++ b/src/hotspot/share/gc/cms/parOopClosures.inline.hpp
|
||||
@@ -44,6 +44,7 @@ template <class T> inline void ParScanWeakRefClosure::do_oop_work(T* p) {
|
||||
// we need to ensure that it is copied (see comment in
|
||||
// ParScanClosure::do_oop_work).
|
||||
Klass* objK = obj->klass();
|
||||
+ OrderAccess::loadload();
|
||||
markOop m = obj->mark_raw();
|
||||
oop new_obj;
|
||||
if (m->is_marked()) { // Contains forwarding pointer.
|
||||
@@ -108,6 +109,7 @@ inline void ParScanClosure::do_oop_work(T* p,
|
||||
// overwritten with an overflow next pointer after the object is
|
||||
// forwarded.
|
||||
Klass* objK = obj->klass();
|
||||
+ OrderAccess::loadload();
|
||||
markOop m = obj->mark_raw();
|
||||
oop new_obj;
|
||||
if (m->is_marked()) { // Contains forwarding pointer.
|
||||
73
add-LazyBox-feature.patch
Executable file → Normal file
73
add-LazyBox-feature.patch
Executable file → Normal file
@ -1,30 +1,3 @@
|
||||
From 616dd14fb435476b0f9fb6696084fd71dd6ecc05 Mon Sep 17 00:00:00 2001
|
||||
Date: Tue, 16 Mar 2021 07:00:07 +0000
|
||||
Subject: [PATCH 2/4] add LazyBox feature
|
||||
|
||||
---
|
||||
src/hotspot/share/opto/c2_globals.hpp | 6 +
|
||||
src/hotspot/share/opto/callGenerator.cpp | 33 ++-
|
||||
src/hotspot/share/opto/callnode.cpp | 18 ++
|
||||
src/hotspot/share/opto/callnode.hpp | 15 ++
|
||||
src/hotspot/share/opto/compile.cpp | 5 +
|
||||
src/hotspot/share/opto/doCall.cpp | 50 +++++
|
||||
src/hotspot/share/opto/graphKit.cpp | 189 +++++++++++++++-
|
||||
src/hotspot/share/opto/graphKit.hpp | 9 +
|
||||
src/hotspot/share/opto/parse.hpp | 3 +
|
||||
src/hotspot/share/opto/parse1.cpp | 2 +-
|
||||
src/hotspot/share/opto/parse2.cpp | 25 ++-
|
||||
src/hotspot/share/opto/parse3.cpp | 8 +
|
||||
src/hotspot/share/opto/phase.hpp | 1 +
|
||||
src/hotspot/share/opto/phaseX.cpp | 211 ++++++++++++++++++
|
||||
src/hotspot/share/opto/phaseX.hpp | 20 ++
|
||||
src/hotspot/share/opto/phasetype.hpp | 2 +
|
||||
src/hotspot/share/runtime/arguments.cpp | 13 ++
|
||||
.../jvm/hotspot/opto/CompilerPhaseType.java | 1 +
|
||||
.../jtreg/compiler/lazybox/TestLazyBox.java | 82 +++++++
|
||||
19 files changed, 679 insertions(+), 14 deletions(-)
|
||||
create mode 100644 test/hotspot/jtreg/compiler/lazybox/TestLazyBox.java
|
||||
|
||||
diff --git a/src/hotspot/share/opto/c2_globals.hpp b/src/hotspot/share/opto/c2_globals.hpp
|
||||
index 8111a63d4..84c2817e3 100644
|
||||
--- a/src/hotspot/share/opto/c2_globals.hpp
|
||||
@ -43,7 +16,7 @@ index 8111a63d4..84c2817e3 100644
|
||||
" register allocation.") \
|
||||
\
|
||||
diff --git a/src/hotspot/share/opto/callGenerator.cpp b/src/hotspot/share/opto/callGenerator.cpp
|
||||
index ffe50ed86..a5846537d 100644
|
||||
index 59a02fbb1..11df8b6f5 100644
|
||||
--- a/src/hotspot/share/opto/callGenerator.cpp
|
||||
+++ b/src/hotspot/share/opto/callGenerator.cpp
|
||||
@@ -150,12 +150,15 @@ JVMState* DirectCallGenerator::generate(JVMState* jvms) {
|
||||
@ -137,7 +110,7 @@ index c4064dca0..f17eda879 100644
|
||||
// Add a LockNode, which points to both the original BoxLockNode (the
|
||||
// stack space for the monitor) and the Object being locked.
|
||||
diff --git a/src/hotspot/share/opto/callnode.hpp b/src/hotspot/share/opto/callnode.hpp
|
||||
index cc65d9ef9..c7ea73946 100644
|
||||
index cde33ad8b..0e07bdd62 100644
|
||||
--- a/src/hotspot/share/opto/callnode.hpp
|
||||
+++ b/src/hotspot/share/opto/callnode.hpp
|
||||
@@ -331,6 +331,7 @@ public:
|
||||
@ -194,10 +167,10 @@ index cc65d9ef9..c7ea73946 100644
|
||||
bool _is_scalar_replaceable;
|
||||
bool _is_non_escaping;
|
||||
diff --git a/src/hotspot/share/opto/compile.cpp b/src/hotspot/share/opto/compile.cpp
|
||||
index f350f9d68..838147f53 100644
|
||||
index 9c8474f18..2f188ea53 100644
|
||||
--- a/src/hotspot/share/opto/compile.cpp
|
||||
+++ b/src/hotspot/share/opto/compile.cpp
|
||||
@@ -2235,6 +2235,11 @@ void Compile::Optimize() {
|
||||
@@ -2237,6 +2237,11 @@ void Compile::Optimize() {
|
||||
|
||||
print_method(PHASE_AFTER_PARSING);
|
||||
|
||||
@ -210,10 +183,10 @@ index f350f9d68..838147f53 100644
|
||||
// Iterative Global Value Numbering, including ideal transforms
|
||||
// Initialize IterGVN with types and values from parse-time GVN
|
||||
diff --git a/src/hotspot/share/opto/doCall.cpp b/src/hotspot/share/opto/doCall.cpp
|
||||
index c9d06a833..343e9d00d 100644
|
||||
index dfcc8c402..6db88965b 100644
|
||||
--- a/src/hotspot/share/opto/doCall.cpp
|
||||
+++ b/src/hotspot/share/opto/doCall.cpp
|
||||
@@ -416,6 +416,49 @@ static bool check_call_consistency(JVMState* jvms, CallGenerator* cg) {
|
||||
@@ -418,6 +418,49 @@ static bool check_call_consistency(JVMState* jvms, CallGenerator* cg) {
|
||||
}
|
||||
#endif // ASSERT
|
||||
|
||||
@ -263,7 +236,7 @@ index c9d06a833..343e9d00d 100644
|
||||
//------------------------------do_call----------------------------------------
|
||||
// Handle your basic call. Inline if we can & want to, else just setup call.
|
||||
void Parse::do_call() {
|
||||
@@ -552,6 +595,13 @@ void Parse::do_call() {
|
||||
@@ -554,6 +597,13 @@ void Parse::do_call() {
|
||||
// It decides whether inlining is desirable or not.
|
||||
CallGenerator* cg = C->call_generator(callee, vtable_index, call_does_dispatch, jvms, try_inline, prof_factor(), speculative_receiver_type);
|
||||
|
||||
@ -278,7 +251,7 @@ index c9d06a833..343e9d00d 100644
|
||||
orig_callee = callee = NULL;
|
||||
|
||||
diff --git a/src/hotspot/share/opto/graphKit.cpp b/src/hotspot/share/opto/graphKit.cpp
|
||||
index 219d272ff..356bd5ccc 100644
|
||||
index 6d4949de2..22222efbc 100644
|
||||
--- a/src/hotspot/share/opto/graphKit.cpp
|
||||
+++ b/src/hotspot/share/opto/graphKit.cpp
|
||||
@@ -31,6 +31,7 @@
|
||||
@ -306,7 +279,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
assert(is_hidden_merge(dstphi), "must be a special merge node");
|
||||
assert(is_hidden_merge(srcphi), "must be a special merge node");
|
||||
@@ -840,6 +850,19 @@ static bool should_reexecute_implied_by_bytecode(JVMState *jvms, bool is_anewarr
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
+// Delay boxnode to uncommon trap
|
||||
@ -335,7 +308,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
|
||||
// Walk the inline list to fill in the correct set of JVMState's
|
||||
// Also fill in the associated edges for each JVMState.
|
||||
@@ -910,6 +934,9 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
@@ -916,6 +940,9 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
// Fill pointer walks backwards from "young:" to "root:" in the diagram above:
|
||||
uint debug_ptr = call->req();
|
||||
|
||||
@ -345,7 +318,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
// Loop over the map input edges associated with jvms, add them
|
||||
// to the call node, & reset all offsets to match call node array.
|
||||
for (JVMState* in_jvms = youngest_jvms; in_jvms != NULL; ) {
|
||||
@@ -938,7 +965,7 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
@@ -944,7 +971,7 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
out_jvms->set_locoff(p);
|
||||
if (!can_prune_locals) {
|
||||
for (j = 0; j < l; j++)
|
||||
@ -354,7 +327,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
} else {
|
||||
p += l; // already set to top above by add_req_batch
|
||||
}
|
||||
@@ -949,7 +976,7 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
@@ -955,7 +982,7 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
out_jvms->set_stkoff(p);
|
||||
if (!can_prune_locals) {
|
||||
for (j = 0; j < l; j++)
|
||||
@ -363,7 +336,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
} else if (can_prune_locals && stack_slots_not_pruned != 0) {
|
||||
// Divide stack into {S0,...,S1}, where S0 is set to top.
|
||||
uint s1 = stack_slots_not_pruned;
|
||||
@@ -958,7 +985,8 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
@@ -964,7 +991,8 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
uint s0 = l - s1;
|
||||
p += s0; // skip the tops preinstalled by add_req_batch
|
||||
for (j = s0; j < l; j++)
|
||||
@ -373,7 +346,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
} else {
|
||||
p += l; // already set to top above by add_req_batch
|
||||
}
|
||||
@@ -992,6 +1020,35 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
@@ -998,6 +1026,35 @@ void GraphKit::add_safepoint_edges(SafePointNode* call, bool must_throw) {
|
||||
in_jvms = in_jvms->caller();
|
||||
}
|
||||
|
||||
@ -409,7 +382,7 @@ index 219d272ff..356bd5ccc 100644
|
||||
assert(debug_ptr == non_debug_edges, "debug info must fit exactly");
|
||||
|
||||
// Test the correctness of JVMState::debug_xxx accessors:
|
||||
@@ -4017,6 +4074,130 @@ void GraphKit::inflate_string_slow(Node* src, Node* dst, Node* start, Node* coun
|
||||
@@ -4031,6 +4088,130 @@ void GraphKit::inflate_string_slow(Node* src, Node* dst, Node* start, Node* coun
|
||||
set_memory(st, TypeAryPtr::BYTES);
|
||||
}
|
||||
|
||||
@ -589,10 +562,10 @@ index aa13e8863..b16671ace 100644
|
||||
void do_call();
|
||||
|
||||
diff --git a/src/hotspot/share/opto/parse1.cpp b/src/hotspot/share/opto/parse1.cpp
|
||||
index f94f028c6..48f111d76 100644
|
||||
index e12d1e5d3..561fe0690 100644
|
||||
--- a/src/hotspot/share/opto/parse1.cpp
|
||||
+++ b/src/hotspot/share/opto/parse1.cpp
|
||||
@@ -918,7 +918,7 @@ void Parse::do_exceptions() {
|
||||
@@ -919,7 +919,7 @@ void Parse::do_exceptions() {
|
||||
|
||||
SafePointNode* ex_map;
|
||||
while ((ex_map = pop_exception_state()) != NULL) {
|
||||
@ -602,10 +575,10 @@ index f94f028c6..48f111d76 100644
|
||||
// Doing it this early allows the exceptions to common up
|
||||
// even between adjacent method calls.
|
||||
diff --git a/src/hotspot/share/opto/parse2.cpp b/src/hotspot/share/opto/parse2.cpp
|
||||
index 2b21881bc..78e83afa5 100644
|
||||
index 85bba6a50..027e32cec 100644
|
||||
--- a/src/hotspot/share/opto/parse2.cpp
|
||||
+++ b/src/hotspot/share/opto/parse2.cpp
|
||||
@@ -2660,9 +2660,17 @@ void Parse::do_one_bytecode() {
|
||||
@@ -2672,9 +2672,17 @@ void Parse::do_one_bytecode() {
|
||||
case Bytecodes::_return:
|
||||
return_current(NULL);
|
||||
break;
|
||||
@ -625,7 +598,7 @@ index 2b21881bc..78e83afa5 100644
|
||||
case Bytecodes::_freturn:
|
||||
return_current(pop());
|
||||
break;
|
||||
@@ -2749,6 +2757,19 @@ void Parse::do_one_bytecode() {
|
||||
@@ -2761,6 +2769,19 @@ void Parse::do_one_bytecode() {
|
||||
maybe_add_safepoint(iter().get_dest());
|
||||
a = pop();
|
||||
b = pop();
|
||||
@ -677,10 +650,10 @@ index 4b0c53ffc..38683f8a7 100644
|
||||
};
|
||||
|
||||
diff --git a/src/hotspot/share/opto/phaseX.cpp b/src/hotspot/share/opto/phaseX.cpp
|
||||
index f4a38cd28..c2060e445 100644
|
||||
index 0a285315d..b3e2fb9b9 100644
|
||||
--- a/src/hotspot/share/opto/phaseX.cpp
|
||||
+++ b/src/hotspot/share/opto/phaseX.cpp
|
||||
@@ -407,6 +407,217 @@ void NodeHash::operator=(const NodeHash& nh) {
|
||||
@@ -412,6 +412,217 @@ void NodeHash::operator=(const NodeHash& nh) {
|
||||
|
||||
#endif
|
||||
|
||||
@ -899,7 +872,7 @@ index f4a38cd28..c2060e445 100644
|
||||
//=============================================================================
|
||||
//------------------------------PhaseRemoveUseless-----------------------------
|
||||
diff --git a/src/hotspot/share/opto/phaseX.hpp b/src/hotspot/share/opto/phaseX.hpp
|
||||
index ef5eb488e..915884b33 100644
|
||||
index 0591e9807..5a55b75e2 100644
|
||||
--- a/src/hotspot/share/opto/phaseX.hpp
|
||||
+++ b/src/hotspot/share/opto/phaseX.hpp
|
||||
@@ -173,6 +173,26 @@ public:
|
||||
|
||||
4760
add-SVE-backend-feature.patch
Executable file → Normal file
4760
add-SVE-backend-feature.patch
Executable file → Normal file
File diff suppressed because it is too large
Load Diff
52
delete_expired_certificates.patch
Executable file → Normal file
52
delete_expired_certificates.patch
Executable file → Normal file
@ -79,54 +79,22 @@ index 0c195ff51..000000000
|
||||
-xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK
|
||||
-SnQ2+Q==
|
||||
------END CERTIFICATE-----
|
||||
diff --git a/make/data/cacerts/soneraclass2ca b/make/data/cacerts/soneraclass2ca
|
||||
deleted file mode 100644
|
||||
index 43faa5e21..000000000
|
||||
--- a/make/data/cacerts/soneraclass2ca
|
||||
+++ /dev/null
|
||||
@@ -1,26 +0,0 @@
|
||||
-Owner: CN=Sonera Class2 CA, O=Sonera, C=FI
|
||||
-Issuer: CN=Sonera Class2 CA, O=Sonera, C=FI
|
||||
-Serial number: 1d
|
||||
-Valid from: Fri Apr 06 07:29:40 GMT 2001 until: Tue Apr 06 07:29:40 GMT 2021
|
||||
-Signature algorithm name: SHA1withRSA
|
||||
-Subject Public Key Algorithm: 2048-bit RSA key
|
||||
-Version: 3
|
||||
------BEGIN CERTIFICATE-----
|
||||
-MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP
|
||||
-MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx
|
||||
-MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV
|
||||
-BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI
|
||||
-hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o
|
||||
-Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt
|
||||
-5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s
|
||||
-3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej
|
||||
-vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu
|
||||
-8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw
|
||||
-DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG
|
||||
-MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil
|
||||
-zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/
|
||||
-3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD
|
||||
-FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6
|
||||
-Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2
|
||||
-ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M
|
||||
------END CERTIFICATE-----
|
||||
diff --git a/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java b/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
|
||||
index ec9cca01f..793376ea1 100644
|
||||
index b0e28f192..986f4a332 100644
|
||||
--- a/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
|
||||
+++ b/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
|
||||
@@ -53,12 +53,12 @@ public class VerifyCACerts {
|
||||
+ File.separator + "security" + File.separator + "cacerts";
|
||||
|
||||
// The numbers of certs now.
|
||||
- private static final int COUNT = 89;
|
||||
- private static final int COUNT = 88;
|
||||
+ private static final int COUNT = 86;
|
||||
|
||||
// SHA-256 of cacerts, can be generated with
|
||||
// shasum -a 256 cacerts | sed -e 's/../&:/g' | tr '[:lower:]' '[:upper:]' | cut -c1-95
|
||||
private static final String CHECKSUM
|
||||
- = "9F:6B:41:1D:05:AF:E3:C5:4F:E8:39:89:50:79:60:B1:F6:A4:02:40:0C:28:8D:73:78:08:E5:61:7C:17:EA:59";
|
||||
+ = "A5:00:71:02:B4:8B:AC:BE:64:34:0A:F2:DF:9D:F7:75:9D:05:84:7E:F6:EA:48:F0:64:36:29:8C:E7:A2:2D:63";
|
||||
- = "9B:C3:0B:24:D4:26:E4:A9:4F:2C:96:25:06:9B:08:E5:13:5B:0B:33:74:5F:78:DB:BD:91:CD:31:D4:37:07:28";
|
||||
+ = "E3:B0:C4:42:98:FC:1C:14:9A:FB:F4:C8:99:6F:B9:24:27:AE:41:E4:64:9B:93:4C:A4:95:99:1B:78:52:B8:55";
|
||||
|
||||
// map of cert alias to SHA-256 fingerprint
|
||||
@SuppressWarnings("serial")
|
||||
@ -141,12 +109,6 @@ index ec9cca01f..793376ea1 100644
|
||||
put("quovadisrootca1g3 [jdk]",
|
||||
"8A:86:6F:D1:B2:76:B5:7E:57:8E:92:1C:65:82:8A:2B:ED:58:E9:F2:F2:88:05:41:34:B7:F1:F4:BF:C9:CC:74");
|
||||
put("quovadisrootca2 [jdk]",
|
||||
@@ -170,8 +166,6 @@ public class VerifyCACerts {
|
||||
"3B:22:2E:56:67:11:E9:92:30:0D:C0:B1:5A:B9:47:3D:AF:DE:F8:C8:4D:0C:EF:7D:33:17:B4:C1:82:1D:14:36");
|
||||
put("swisssignsilverg2ca [jdk]",
|
||||
"BE:6C:4D:A2:BB:B9:BA:59:B6:F3:93:97:68:37:42:46:C3:C0:05:99:3F:A9:8F:02:0D:1D:ED:BE:D4:8A:81:D5");
|
||||
- put("soneraclass2ca [jdk]",
|
||||
- "79:08:B4:03:14:C1:38:10:0B:51:8D:07:35:80:7F:FB:FC:F8:51:8A:00:95:33:71:05:BA:38:6B:15:3D:D9:27");
|
||||
put("securetrustca [jdk]",
|
||||
"F1:C1:B5:0A:E5:A2:0D:D8:03:0E:C9:F6:BC:24:82:3D:D3:67:B5:25:57:59:B4:E7:1B:61:FC:E9:F7:37:5D:73");
|
||||
put("xrampglobalca [jdk]",
|
||||
--
|
||||
2.19.0
|
||||
|
||||
|
||||
Binary file not shown.
@ -114,7 +114,7 @@
|
||||
|
||||
# New Version-String scheme-style defines
|
||||
%global majorver 11
|
||||
%global securityver 11
|
||||
%global securityver 12
|
||||
# buildjdkver is usually same as %%{majorver},
|
||||
# but in time of bootstrap of next jdk, it is majorver-1,
|
||||
# and this it is better to change it here, on single place
|
||||
@ -135,7 +135,7 @@
|
||||
|
||||
%global project jdk-updates
|
||||
%global repo jdk11u
|
||||
%global revision jdk-11.0.11-ga
|
||||
%global revision jdk-11.0.12-ga
|
||||
%global full_revision %{project}-%{repo}-%{revision}
|
||||
# priority must be 7 digits in total
|
||||
# setting to 1, so debug ones can have 0
|
||||
@ -740,7 +740,7 @@ Provides: java-src%{?1} = %{epoch}:%{version}-%{release}
|
||||
|
||||
Name: java-%{javaver}-%{origin}
|
||||
Version: %{newjavaver}.%{buildver}
|
||||
Release: 7
|
||||
Release: 0
|
||||
# java-1.5.0-ibm from jpackage.org set Epoch to 1 for unknown reasons
|
||||
# and this change was brought into RHEL-4. java-1.5.0-ibm packages
|
||||
# also included the epoch in their virtual provides. This created a
|
||||
@ -826,7 +826,6 @@ Patch36: ZGC-in-c1-load-barrier-d0-and-d1-registers-miss-restoring.patch
|
||||
Patch37: fix-compile-error-without-disable-precompiled-headers.patch
|
||||
Patch38: fast-serializer-jdk11.patch
|
||||
Patch39: fix-jck-failure-on-FastSerializer.patch
|
||||
Patch40: 8223667-ASAN-build-broken.patch
|
||||
Patch42: 8229496-SIGFPE-division-by-zero-in-C2-OSR-compiled-method.patch
|
||||
Patch45: leaf-optimize-in-ParallelScanvageGC.patch
|
||||
Patch46: ZGC-correct-free-heap-size-excluding-waste-in-rule_allocation_rate.patch
|
||||
@ -834,7 +833,6 @@ Patch47: 8204947-Port-ShenandoahTaskTerminator-to-mainline-and-make-it-default.p
|
||||
Patch48: 8205921-Optimizing-best_of_2-work-stealing-queue-selection.patch
|
||||
|
||||
# 11.0.9
|
||||
Patch54: 8207160-ClassReader-adjustMethodParams-can-potentially-return-null-if-the-args-list-is-empty.patch
|
||||
Patch55: 8215047-Task-terminators-do-not-complete-termination-in-consistent-state.patch
|
||||
Patch57: add-zgc-parameter-adaptation-feature.patch
|
||||
Patch58: add-integerCache-feature.patch
|
||||
@ -843,7 +841,6 @@ Patch59: add-SVE-backend-feature.patch
|
||||
#11.0.10
|
||||
Patch61: downgrade-the-symver-of-log2f-posix-spawn.patch
|
||||
Patch62: 8254078-DataOutputStream-is-very-slow-post-disabling.patch
|
||||
Patch63: 8217918-C2-XX-AggressiveUnboxing-is-broken.patch
|
||||
Patch64: Fix-the-memcpy-symbol-issue-during-JDK11-x64-build.patch
|
||||
Patch65: add-LazyBox-feature.patch
|
||||
Patch66: add-G1-Full-GC-optimization.patch
|
||||
@ -852,7 +849,6 @@ Patch68: src-openeuler-openjdk-11-resolve-code-inconsistencies.patch
|
||||
Patch69: G1-iterate-region-by-bitmap-rather-than-obj-size-in.patch
|
||||
|
||||
#11.0.11
|
||||
Patch70: 8264640.patch
|
||||
Patch71: numa_mem_leak.patch
|
||||
Patch72: select_nearest_numa_node.patch
|
||||
Patch73: support_jmap_parallel_inspection_for_cms_gc.patch
|
||||
@ -1110,27 +1106,23 @@ pushd %{top_level_dir_name}
|
||||
%patch37 -p1
|
||||
%patch38 -p1
|
||||
%patch39 -p1
|
||||
%patch40 -p1
|
||||
%patch42 -p1
|
||||
%patch45 -p1
|
||||
%patch46 -p1
|
||||
%patch47 -p1
|
||||
%patch48 -p1
|
||||
%patch54 -p1
|
||||
%patch55 -p1
|
||||
%patch57 -p1
|
||||
%patch58 -p1
|
||||
%patch59 -p1
|
||||
%patch61 -p1
|
||||
%patch62 -p1
|
||||
%patch63 -p1
|
||||
%patch64 -p1
|
||||
%patch65 -p1
|
||||
%patch66 -p1
|
||||
%patch67 -p1
|
||||
%patch68 -p1
|
||||
%patch69 -p1
|
||||
%patch70 -p1
|
||||
%patch71 -p1
|
||||
%patch72 -p1
|
||||
%patch73 -p1
|
||||
@ -1637,6 +1629,14 @@ require "copy_jdk_configs.lua"
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Aug 3 2021 linhaibing21 <linhaibing@huawei.com> - 1:11.0.12.7-0
|
||||
- Update to 11.0.12+7 (GA)
|
||||
- delete 8207160-ClassReader-adjustMethodParams-can-potentially-return-null-if-the-args-list-is-empty.patch
|
||||
- delete 8217918-C2-XX-AggressiveUnboxing-is-broken.patch
|
||||
- delete 8223667-ASAN-build-broken.patch
|
||||
- delete 8264640.patch
|
||||
- other adaptations to 11.0.12
|
||||
|
||||
* Thu Jul 8 2021 noah <hedongbo@huawei.com> - 1:11.0.11.9-7
|
||||
- delete debug log to reduce build time
|
||||
|
||||
|
||||
84
src-openeuler-openjdk-11-resolve-code-inconsistencies.patch
Executable file → Normal file
84
src-openeuler-openjdk-11-resolve-code-inconsistencies.patch
Executable file → Normal file
@ -1,9 +1,3 @@
|
||||
commit c2748cd0d7b5a92b275aff0cd1d1fa0b113ba64f
|
||||
Author: aijiaming <aijiaming1@huawei.com>
|
||||
Date: Mon Apr 12 10:53:53 2021 +0800
|
||||
|
||||
fix patch
|
||||
|
||||
diff --git a/make/launcher/Launcher-java.base.gmk b/make/launcher/Launcher-java.base.gmk
|
||||
index f6d4aa28f..d511c0be5 100644
|
||||
--- a/make/launcher/Launcher-java.base.gmk
|
||||
@ -53,7 +47,7 @@ index a93fd2a90..2e0bc7a5b 100644
|
||||
CFLAGS_release := -DPRODUCT, \
|
||||
CFLAGS_linux := -fPIC, \
|
||||
diff --git a/make/lib/Awt2dLibraries.gmk b/make/lib/Awt2dLibraries.gmk
|
||||
index 7b0441507..b334b76e4 100644
|
||||
index e8c27e902..9ebb93dcb 100644
|
||||
--- a/make/lib/Awt2dLibraries.gmk
|
||||
+++ b/make/lib/Awt2dLibraries.gmk
|
||||
@@ -35,6 +35,11 @@ LIBAWT_DEFAULT_HEADER_DIRS := \
|
||||
@ -84,7 +78,7 @@ index 7b0441507..b334b76e4 100644
|
||||
EXCLUDES := $(LIBAWT_EXCLUDES), \
|
||||
EXCLUDE_FILES := $(LIBAWT_EXFILES), \
|
||||
OPTIMIZATION := LOW, \
|
||||
@@ -431,6 +438,7 @@ endif
|
||||
@@ -430,6 +437,7 @@ endif
|
||||
$(eval $(call SetupJdkLibrary, BUILD_LIBJAVAJPEG, \
|
||||
NAME := javajpeg, \
|
||||
INCLUDE_FILES := $(BUILD_LIBJAVAJPEG_INCLUDE_FILES), \
|
||||
@ -92,7 +86,7 @@ index 7b0441507..b334b76e4 100644
|
||||
OPTIMIZATION := HIGHEST, \
|
||||
CFLAGS := $(CFLAGS_JDKLIB), \
|
||||
HEADERS_FROM_SRC := $(LIBJPEG_HEADERS_FROM_SRC), \
|
||||
@@ -921,6 +929,7 @@ ifeq ($(ENABLE_HEADLESS_ONLY), false)
|
||||
@@ -919,6 +927,7 @@ ifeq ($(ENABLE_HEADLESS_ONLY), false)
|
||||
NAME := splashscreen, \
|
||||
EXTRA_SRC := $(LIBSPLASHSCREEN_EXTRA_SRC), \
|
||||
EXCLUDE_SRC_PATTERNS := $(LIBSPLASHSCREEN_EXCLUDE_SRC_PATTERNS), \
|
||||
@ -162,7 +156,7 @@ index 226e20892..f180a28c3 100644
|
||||
CFLAGS := $(CFLAGS_JDKLIB) $(LIBJLI_CFLAGS), \
|
||||
DISABLED_WARNINGS_gcc := unused-function implicit-fallthrough, \
|
||||
diff --git a/make/lib/Lib-java.base.gmk b/make/lib/Lib-java.base.gmk
|
||||
index 880249b8a..48876b84c 100644
|
||||
index a529768f3..0c888b65c 100644
|
||||
--- a/make/lib/Lib-java.base.gmk
|
||||
+++ b/make/lib/Lib-java.base.gmk
|
||||
@@ -36,12 +36,18 @@ $(call FillFindCache, $(wildcard $(TOPDIR)/src/java.base/*/native))
|
||||
@ -185,7 +179,7 @@ index 880249b8a..48876b84c 100644
|
||||
DISABLED_WARNINGS_gcc := format-nonliteral, \
|
||||
DISABLED_WARNINGS_clang := parentheses-equality constant-logical-operand, \
|
||||
diff --git a/make/lib/Lib-java.desktop.gmk b/make/lib/Lib-java.desktop.gmk
|
||||
index 2bb02cdd7..917ab02fc 100644
|
||||
index 274df2b8e..932e0b3e8 100644
|
||||
--- a/make/lib/Lib-java.desktop.gmk
|
||||
+++ b/make/lib/Lib-java.desktop.gmk
|
||||
@@ -36,6 +36,11 @@ $(call FillFindCache, $(wildcard $(TOPDIR)/src/java.desktop/*/native))
|
||||
@ -275,7 +269,7 @@ index dfecc1d3c..4137a371d 100644
|
||||
-DMP_API_COMPATIBLE -DNSS_ECC_MORE_THAN_SUITE_B, \
|
||||
CXXFLAGS := $(BUILD_LIBSUNEC_CXXFLAGS_JDKLIB), \
|
||||
diff --git a/make/lib/Lib-jdk.hotspot.agent.gmk b/make/lib/Lib-jdk.hotspot.agent.gmk
|
||||
index 1cbae7065..1ac259517 100644
|
||||
index 2d0c36a47..ad3075f00 100644
|
||||
--- a/make/lib/Lib-jdk.hotspot.agent.gmk
|
||||
+++ b/make/lib/Lib-jdk.hotspot.agent.gmk
|
||||
@@ -27,6 +27,11 @@ include LibCommon.gmk
|
||||
@ -404,7 +398,7 @@ index d79bd1bac..eafe26906 100644
|
||||
RESTARTABLE(::stat64(fn, &st), ret);
|
||||
if (ret == -1) {
|
||||
diff --git a/src/hotspot/share/c1/c1_GraphBuilder.cpp b/src/hotspot/share/c1/c1_GraphBuilder.cpp
|
||||
index bc2561fb0..6780fe3ed 100644
|
||||
index 211c2acda..86cc0108b 100644
|
||||
--- a/src/hotspot/share/c1/c1_GraphBuilder.cpp
|
||||
+++ b/src/hotspot/share/c1/c1_GraphBuilder.cpp
|
||||
@@ -1,5 +1,5 @@
|
||||
@ -414,7 +408,7 @@ index bc2561fb0..6780fe3ed 100644
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
@@ -3784,6 +3784,23 @@ bool GraphBuilder::try_inline_full(ciMethod* callee, bool holder_known, bool ign
|
||||
@@ -3783,6 +3783,23 @@ bool GraphBuilder::try_inline_full(ciMethod* callee, bool holder_known, bool ign
|
||||
INLINE_BAILOUT("mdo allocation failed");
|
||||
}
|
||||
|
||||
@ -438,7 +432,7 @@ index bc2561fb0..6780fe3ed 100644
|
||||
// now perform tests that are based on flag settings
|
||||
bool inlinee_by_directive = compilation()->directive()->should_inline(callee);
|
||||
if (callee->force_inline() || inlinee_by_directive) {
|
||||
@@ -3826,21 +3843,11 @@ bool GraphBuilder::try_inline_full(ciMethod* callee, bool holder_known, bool ign
|
||||
@@ -3825,21 +3842,11 @@ bool GraphBuilder::try_inline_full(ciMethod* callee, bool holder_known, bool ign
|
||||
|
||||
BlockBegin* orig_block = block();
|
||||
|
||||
@ -524,10 +518,10 @@ index c60609617..f0b8638c1 100644
|
||||
case NotInCSet: return "NotInCSet";
|
||||
case Young: return "Young";
|
||||
diff --git a/src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp b/src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp
|
||||
index 66e1b32a6..7a403c3b2 100644
|
||||
index c70d8e89a..c8a3abaf3 100644
|
||||
--- a/src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp
|
||||
+++ b/src/hotspot/share/gc/parallel/parallelScavengeHeap.cpp
|
||||
@@ -541,7 +541,7 @@ public:
|
||||
@@ -542,7 +542,7 @@ public:
|
||||
// Claim the block and get the block index.
|
||||
size_t claim_and_get_block() {
|
||||
size_t block_index;
|
||||
@ -563,10 +557,10 @@ index 246e82be6..110757684 100644
|
||||
// Reset the terminator, so that it may be reused again.
|
||||
// The caller is responsible for ensuring that this is done
|
||||
diff --git a/src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp b/src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp
|
||||
index 5266c911e..849be8e99 100644
|
||||
index 0f3c429ed..82fde2c94 100644
|
||||
--- a/src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp
|
||||
+++ b/src/hotspot/share/gc/shenandoah/shenandoahConcurrentMark.cpp
|
||||
@@ -875,7 +875,6 @@ void ShenandoahConcurrentMark::mark_loop_prework(uint w, ShenandoahTaskTerminato
|
||||
@@ -889,7 +889,6 @@ void ShenandoahConcurrentMark::mark_loop_prework(uint w, ShenandoahTaskTerminato
|
||||
|
||||
template <class T, bool CANCELLABLE>
|
||||
void ShenandoahConcurrentMark::mark_loop_work(T* cl, ShenandoahLiveData* live_data, uint worker_id, ShenandoahTaskTerminator *terminator) {
|
||||
@ -574,7 +568,7 @@ index 5266c911e..849be8e99 100644
|
||||
uintx stride = ShenandoahMarkLoopStride;
|
||||
|
||||
ShenandoahHeap* heap = ShenandoahHeap::heap();
|
||||
@@ -929,7 +928,7 @@ void ShenandoahConcurrentMark::mark_loop_work(T* cl, ShenandoahLiveData* live_da
|
||||
@@ -943,7 +942,7 @@ void ShenandoahConcurrentMark::mark_loop_work(T* cl, ShenandoahLiveData* live_da
|
||||
uint work = 0;
|
||||
for (uint i = 0; i < stride; i++) {
|
||||
if (q->pop(t) ||
|
||||
@ -584,7 +578,7 @@ index 5266c911e..849be8e99 100644
|
||||
work++;
|
||||
} else {
|
||||
diff --git a/src/hotspot/share/memory/heapInspection.cpp b/src/hotspot/share/memory/heapInspection.cpp
|
||||
index dbc0eb274..e612a1ff8 100644
|
||||
index dd76165a7..d492751a6 100644
|
||||
--- a/src/hotspot/share/memory/heapInspection.cpp
|
||||
+++ b/src/hotspot/share/memory/heapInspection.cpp
|
||||
@@ -746,7 +746,7 @@ class RecordInstanceClosure : public ObjectClosure {
|
||||
@ -597,7 +591,7 @@ index dbc0eb274..e612a1ff8 100644
|
||||
uintx missed_count = 0;
|
||||
bool merge_success = true;
|
||||
diff --git a/src/hotspot/share/opto/graphKit.cpp b/src/hotspot/share/opto/graphKit.cpp
|
||||
index 356bd5ccc..3e742c0ef 100644
|
||||
index 22222efbc..5849e8f86 100644
|
||||
--- a/src/hotspot/share/opto/graphKit.cpp
|
||||
+++ b/src/hotspot/share/opto/graphKit.cpp
|
||||
@@ -44,8 +44,8 @@
|
||||
@ -611,10 +605,10 @@ index 356bd5ccc..3e742c0ef 100644
|
||||
#include "gc/shenandoah/c2/shenandoahBarrierSetC2.hpp"
|
||||
#endif
|
||||
diff --git a/src/hotspot/share/opto/loopnode.cpp b/src/hotspot/share/opto/loopnode.cpp
|
||||
index c65f2f6be..621110183 100644
|
||||
index b32cd9580..1f9ebd3bd 100644
|
||||
--- a/src/hotspot/share/opto/loopnode.cpp
|
||||
+++ b/src/hotspot/share/opto/loopnode.cpp
|
||||
@@ -2730,7 +2730,7 @@ bool PhaseIdealLoop::process_expensive_nodes() {
|
||||
@@ -2794,7 +2794,7 @@ bool PhaseIdealLoop::only_has_infinite_loops() {
|
||||
//----------------------------build_and_optimize-------------------------------
|
||||
// Create a PhaseLoop. Build the ideal Loop tree. Map each Ideal Node to
|
||||
// its corresponding LoopNode. If 'optimize' is true, do some loop cleanups.
|
||||
@ -623,7 +617,7 @@ index c65f2f6be..621110183 100644
|
||||
bool do_split_ifs = (mode == LoopOptsDefault || mode == LoopOptsLastRound);
|
||||
bool skip_loop_opts = (mode == LoopOptsNone);
|
||||
#if INCLUDE_SHENANDOAHGC
|
||||
@@ -2801,8 +2801,7 @@ void PhaseIdealLoop::build_and_optimize(LoopOptsMode mode, bool z_barrier_insert
|
||||
@@ -2872,8 +2872,7 @@ void PhaseIdealLoop::build_and_optimize(LoopOptsMode mode, bool z_barrier_insert
|
||||
}
|
||||
|
||||
// Nothing to do, so get out
|
||||
@ -633,7 +627,7 @@ index c65f2f6be..621110183 100644
|
||||
bool do_expensive_nodes = C->should_optimize_expensive_nodes(_igvn);
|
||||
if (stop_early && !do_expensive_nodes) {
|
||||
_igvn.optimize(); // Cleanup NeverBranches
|
||||
@@ -2958,16 +2957,6 @@ void PhaseIdealLoop::build_and_optimize(LoopOptsMode mode, bool z_barrier_insert
|
||||
@@ -3029,16 +3028,6 @@ void PhaseIdealLoop::build_and_optimize(LoopOptsMode mode, bool z_barrier_insert
|
||||
}
|
||||
#endif
|
||||
|
||||
@ -651,10 +645,10 @@ index c65f2f6be..621110183 100644
|
||||
// Reassociate invariants and prep for split_thru_phi
|
||||
for (LoopTreeIterator iter(_ltree_root); !iter.done(); iter.next()) {
|
||||
diff --git a/src/hotspot/share/opto/loopnode.hpp b/src/hotspot/share/opto/loopnode.hpp
|
||||
index 8bc62a89e..56b8492d3 100644
|
||||
index 74aab91f9..6cf2d2a6d 100644
|
||||
--- a/src/hotspot/share/opto/loopnode.hpp
|
||||
+++ b/src/hotspot/share/opto/loopnode.hpp
|
||||
@@ -936,7 +936,7 @@ public:
|
||||
@@ -943,7 +943,7 @@ public:
|
||||
}
|
||||
|
||||
// build the loop tree and perform any requested optimizations
|
||||
@ -663,7 +657,7 @@ index 8bc62a89e..56b8492d3 100644
|
||||
|
||||
// Dominators for the sea of nodes
|
||||
void Dominators();
|
||||
@@ -946,13 +946,13 @@ public:
|
||||
@@ -953,13 +953,13 @@ public:
|
||||
Node *dom_lca_internal( Node *n1, Node *n2 ) const;
|
||||
|
||||
// Compute the Ideal Node to Loop mapping
|
||||
@ -680,10 +674,10 @@ index 8bc62a89e..56b8492d3 100644
|
||||
|
||||
// Verify that verify_me made the same decisions as a fresh run.
|
||||
diff --git a/src/hotspot/share/prims/unsafe.cpp b/src/hotspot/share/prims/unsafe.cpp
|
||||
index f3c845772..18ea89b85 100644
|
||||
index 784dc782f..9158f6d36 100644
|
||||
--- a/src/hotspot/share/prims/unsafe.cpp
|
||||
+++ b/src/hotspot/share/prims/unsafe.cpp
|
||||
@@ -1111,9 +1111,11 @@ static JNINativeMethod jdk_internal_misc_Unsafe_methods[] = {
|
||||
@@ -1100,9 +1100,11 @@ static JNINativeMethod jdk_internal_misc_Unsafe_methods[] = {
|
||||
{CC "fullFence", CC "()V", FN_PTR(Unsafe_FullFence)},
|
||||
|
||||
{CC "isBigEndian0", CC "()Z", FN_PTR(Unsafe_isBigEndian0)},
|
||||
@ -806,7 +800,7 @@ index 39a9918d4..1115c48d8 100644
|
||||
}
|
||||
}
|
||||
diff --git a/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java b/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java
|
||||
index 6068de9e7..a104a25df 100644
|
||||
index de7da5c33..e8852f6bd 100644
|
||||
--- a/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java
|
||||
+++ b/src/java.base/share/classes/sun/security/ssl/SSLContextImpl.java
|
||||
@@ -207,6 +207,10 @@ public abstract class SSLContextImpl extends SSLContextSpi {
|
||||
@ -995,15 +989,15 @@ index 000000000..66d5581f5
|
||||
+}
|
||||
+
|
||||
diff --git a/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java b/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
|
||||
index 540f353e6..727b9b948 100644
|
||||
index 66ba75a10..b0e28f192 100644
|
||||
--- a/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
|
||||
+++ b/test/jdk/sun/security/lib/cacerts/VerifyCACerts.java
|
||||
@@ -53,7 +53,7 @@ public class VerifyCACerts {
|
||||
+ File.separator + "security" + File.separator + "cacerts";
|
||||
|
||||
// The numbers of certs now.
|
||||
- private static final int COUNT = 97;
|
||||
+ private static final int COUNT = 89;
|
||||
- private static final int COUNT = 91;
|
||||
+ private static final int COUNT = 88;
|
||||
|
||||
// SHA-256 of cacerts, can be generated with
|
||||
// shasum -a 256 cacerts | sed -e 's/../&:/g' | tr '[:lower:]' '[:upper:]' | cut -c1-95
|
||||
@ -1020,23 +1014,6 @@ index 540f353e6..727b9b948 100644
|
||||
put("baltimorecybertrustca [jdk]",
|
||||
"16:AF:57:A9:F6:76:B0:AB:12:60:95:AA:5E:BA:DE:F2:2A:B3:11:19:D6:44:AC:95:CD:4B:93:DB:F3:F2:6A:EB");
|
||||
put("digicertglobalrootca [jdk]",
|
||||
@@ -132,16 +126,6 @@ public class VerifyCACerts {
|
||||
"A4:31:0D:50:AF:18:A6:44:71:90:37:2A:86:AF:AF:8B:95:1F:FB:43:1D:83:7F:1E:56:88:B4:59:71:ED:15:57");
|
||||
put("thawteprimaryrootcag3 [jdk]",
|
||||
"4B:03:F4:58:07:AD:70:F2:1B:FC:2C:AE:71:C9:FD:E4:60:4C:06:4C:F5:FF:B6:86:BA:E5:DB:AA:D7:FD:D3:4C");
|
||||
- put("thawtepremiumserverca [jdk]",
|
||||
- "3F:9F:27:D5:83:20:4B:9E:09:C8:A3:D2:06:6C:4B:57:D3:A2:47:9C:36:93:65:08:80:50:56:98:10:5D:BC:E9");
|
||||
- put("verisigntsaca [jdk]",
|
||||
- "CB:6B:05:D9:E8:E5:7C:D8:82:B1:0B:4D:B7:0D:E4:BB:1D:E4:2B:A4:8A:7B:D0:31:8B:63:5B:F6:E7:78:1A:9D");
|
||||
- put("verisignclass2g2ca [jdk]",
|
||||
- "3A:43:E2:20:FE:7F:3E:A9:65:3D:1E:21:74:2E:AC:2B:75:C2:0F:D8:98:03:05:BC:50:2C:AF:8C:2D:9B:41:A1");
|
||||
- put("verisignclass3ca [jdk]",
|
||||
- "A4:B6:B3:99:6F:C2:F3:06:B3:FD:86:81:BD:63:41:3D:8C:50:09:CC:4F:A3:29:C2:CC:F0:E2:FA:1B:14:03:05");
|
||||
- put("verisignclass3g2ca [jdk]",
|
||||
- "83:CE:3C:12:29:68:8A:59:3D:48:5F:81:97:3C:0F:91:95:43:1E:DA:37:CC:5E:36:43:0E:79:C7:A8:88:63:8B");
|
||||
put("verisignuniversalrootca [jdk]",
|
||||
"23:99:56:11:27:A5:71:25:DE:8C:EF:EA:61:0D:DF:2F:A0:78:B5:C8:06:7F:4E:82:82:90:BF:B8:60:E8:4B:3C");
|
||||
put("verisignclass3g3ca [jdk]",
|
||||
diff --git a/test/jdk/sun/security/ssl/SSLContextImpl/CustomizedDTLSDefaultProtocols.java b/test/jdk/sun/security/ssl/SSLContextImpl/CustomizedDTLSDefaultProtocols.java
|
||||
index 0dc0ffac2..e4e9434f9 100644
|
||||
--- a/test/jdk/sun/security/ssl/SSLContextImpl/CustomizedDTLSDefaultProtocols.java
|
||||
@ -1303,3 +1280,6 @@ index ccfff01b6..029771541 100644
|
||||
}
|
||||
|
||||
if (failed) {
|
||||
--
|
||||
2.19.0
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user