forked from pool/java-1_8_0-openjdk
This commit is contained in:
@@ -1,21 +0,0 @@
|
||||
--- openjdk/hotspot/src/share/vm/opto/addnode.cpp Fri Oct 30 08:13:31 2020 +0000
|
||||
+++ openjdk/hotspot/src/share/vm/opto/addnode.cpp Thu Aug 06 08:10:56 2020 +0200
|
||||
@@ -918,7 +918,7 @@
|
||||
|
||||
// Transform MIN2(x + c0, MIN2(x + c1, z)) into MIN2(x + MIN2(c0, c1), z)
|
||||
// if x == y and the additions can't overflow.
|
||||
- if (phase->eqv(x,y) &&
|
||||
+ if (phase->eqv(x,y) && tx != NULL &&
|
||||
!can_overflow(tx, x_off) &&
|
||||
!can_overflow(tx, y_off)) {
|
||||
return new (phase->C) MinINode(phase->transform(new (phase->C) AddINode(x, phase->intcon(MIN2(x_off, y_off)))), r->in(2));
|
||||
@@ -926,7 +926,7 @@
|
||||
} else {
|
||||
// Transform MIN2(x + c0, y + c1) into x + MIN2(c0, c1)
|
||||
// if x == y and the additions can't overflow.
|
||||
- if (phase->eqv(x,y) &&
|
||||
+ if (phase->eqv(x,y) && tx != NULL &&
|
||||
!can_overflow(tx, x_off) &&
|
||||
!can_overflow(tx, y_off)) {
|
||||
return new (phase->C) AddINode(x,phase->intcon(MIN2(x_off,y_off)));
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b164443492d7ccc2fcceefe422b2548e700c6ac2767e30463d8188a39c9034da
|
||||
size 7054840
|
||||
oid sha256:0b2eb1a9e2b7c5d7011bbc42ba4193d57c8101148c490dc6d9dd67d0c0b8b5d5
|
||||
size 7054944
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8cd38fecfeceea5b4f342702d9d527c8485691984e3a0e1e69253ba62a58397d
|
||||
size 948464
|
||||
oid sha256:cda3a7108ce3a5f400ef43225007617426ac14ca3926508e8f929ae10a2f5a02
|
||||
size 948536
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:874a81943dbba0e00d1586f200f132c72417781f437910f448ed7af244e9e9a0
|
||||
size 7107508
|
||||
oid sha256:9205bc1f1dd558c726bcd3770ef4a4960c505e96a48f07d9fd1a7bf40627af22
|
||||
size 7109408
|
||||
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:089e85d6046775fc565cda87eba2c0245efd38b1bf713bc0b773f6dd40a49288
|
||||
size 1565156
|
3
icedtea-3.17.1.tar.xz
Normal file
3
icedtea-3.17.1.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7ce91e5dbb952ed2eb091397fe4d73a900d8d2d461a792c9c3bcf272c3bf08e7
|
||||
size 1565996
|
@@ -1,3 +1,25 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 26 19:13:31 UTC 2020 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
- Update to version jdk8u275 (icedtea 3.17.1)
|
||||
* Import of OpenJDK 8 u275 build 01
|
||||
+ JDK-8214440: ldap over a TLS connection negotiate failed
|
||||
with "javax.net.ssl.SSLPeerUnverifiedException: hostname
|
||||
of the server "does not match the hostname in the server's
|
||||
certificate"
|
||||
+ JDK-8223940: Private key not supported by chosen signature
|
||||
algorithm
|
||||
+ JDK-8236512: PKCS11 Connection closed after Cipher.doFinal
|
||||
and NoPadding
|
||||
+ JDK-8250861: Crash in MinINode::Ideal(PhaseGVN*, bool)
|
||||
* Bug fixes
|
||||
+ PR3815: Fix new s390 size_t issue in
|
||||
g1ConcurrentMarkObjArrayProcessor.cpp
|
||||
- Removed patches:
|
||||
* JDK-8250861.patch
|
||||
* s390.patch
|
||||
+ integrated upstream
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 17 09:22:44 UTC 2020 - Fridrich Strba <fstrba@suse.com>
|
||||
|
||||
|
@@ -18,7 +18,7 @@
|
||||
|
||||
%{!?aarch64:%global aarch64 aarch64 arm64 armv8}
|
||||
%global jit_arches %{ix86} x86_64 ppc64 ppc64le %{aarch64} %{arm}
|
||||
%global icedtea_version 3.17.0
|
||||
%global icedtea_version 3.17.1
|
||||
%global icedtea_sound_version 1.0.1
|
||||
%global buildoutputdir openjdk.build/
|
||||
# Convert an absolute path to a relative path. Each symbolic link is
|
||||
@@ -32,8 +32,8 @@
|
||||
# priority must be 6 digits in total
|
||||
%global priority 1805
|
||||
%global javaver 1.8.0
|
||||
%global updatever 272
|
||||
%global buildver 10
|
||||
%global updatever 275
|
||||
%global buildver 01
|
||||
# Standard JPackage directories and symbolic links.
|
||||
%global sdklnk java-%{javaver}-openjdk
|
||||
%global archname %{sdklnk}
|
||||
@@ -192,10 +192,6 @@ Patch14: zero-javadoc-verbose.patch
|
||||
#
|
||||
# Patch for PPC
|
||||
Patch103: ppc-zero-hotspot.patch
|
||||
# Patch for S390
|
||||
Patch104: s390.patch
|
||||
#
|
||||
Patch200: JDK-8250861.patch
|
||||
|
||||
Patch1001: java-1_8_0-openjdk-suse-desktop-files.patch
|
||||
Patch1002: icedtea-3.8.0-s390.patch
|
||||
@@ -537,12 +533,6 @@ patch -p0 -i %{PATCH14}
|
||||
patch -p0 -i %{PATCH103}
|
||||
%endif
|
||||
|
||||
%ifarch s390
|
||||
patch -p0 -i %{PATCH104}
|
||||
%endif
|
||||
|
||||
patch -p0 -i %{PATCH200}
|
||||
|
||||
patch -p0 -i %{PATCH2001}
|
||||
patch -p0 -i %{PATCH2002}
|
||||
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b987fb2ab789e55d312c9b955e441fb5f39443e3bb57967c3ea03961e68cac41
|
||||
size 2268024
|
||||
oid sha256:0ac06b706129fb5443f9590be860ff246442340f06808197dc209ca1502b8b74
|
||||
size 2267932
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:4c58d1e7c1aa2291d90a9f5881ef918e3ac5a947c355df4be275fedf82fe55db
|
||||
size 2277156
|
||||
oid sha256:e487665bc4fcbc597c3b3d3e9c9819e03adfa63f904ba3c650b36a5c5d4b67a5
|
||||
size 2277028
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:39e77d08e322c2d60af2254743867dde50bbf6bf4f39d5b46df1eb311ba14af4
|
||||
size 40601488
|
||||
oid sha256:6fd62ed755c9e1ddbe1d3ff58722b70c8e867c4d280adaa0c0fcce40820039cf
|
||||
size 40596084
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:b6f28501eafc5b35396ed9e265c9f7f1e764a8cb11f910b85481048fae78bfbb
|
||||
size 2079284
|
||||
oid sha256:0d5f936dc5d8280686d511aedb21009d0075b4fd5c7b5f2d7897b3fa940f7069
|
||||
size 2080096
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0d1dd7128a3503063589be89d775221508bfa87a31f5cf12f8497bac30cbe459
|
||||
size 2320268
|
||||
oid sha256:206bcc49633138cc09128aa4ec71d0259ecea4f8d6a55981bd0dc1fb76bf1728
|
||||
size 2319500
|
||||
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fec83cb0e6e0df32799c60a0980deb5ecd7612004af82c76320d1c3c1bc4baf0
|
||||
size 364764
|
||||
oid sha256:b1ef1d1dc3c3eac88b7bece739251b479fe0fefa122a62d1911f811b853408de
|
||||
size 364724
|
||||
|
11
s390.patch
11
s390.patch
@@ -1,11 +0,0 @@
|
||||
--- openjdk/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp 2020-11-02 16:54:31.999787520 +0100
|
||||
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp 2020-11-02 16:59:27.993852851 +0100
|
||||
@@ -41,7 +41,7 @@
|
||||
}
|
||||
|
||||
size_t G1CMObjArrayProcessor::process_array_slice(objArrayOop obj, HeapWord* start_from, size_t remaining) {
|
||||
- size_t words_to_scan = MIN2(remaining, ObjArrayMarkingStride);
|
||||
+ size_t words_to_scan = MIN2(remaining, (size_t) ObjArrayMarkingStride);
|
||||
|
||||
if (remaining > ObjArrayMarkingStride) {
|
||||
push_array_slice(start_from + ObjArrayMarkingStride);
|
@@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1718e537f195adba5f98e30d115cc15db530d3f91e88cdbaaf307ea4220f7cc9
|
||||
size 7277048
|
||||
oid sha256:e2dfc5105336d1b5dcd08641358d66a40d87be637d2f2e7491a71b8fb5161668
|
||||
size 7276688
|
||||
|
Reference in New Issue
Block a user