hg: jdk-updates/jdk11u: 14 new changesets

goetz.lindenmaier at sap.com goetz.lindenmaier at sap.com
Wed Nov 18 07:03:31 UTC 2020


Changeset: 8d910d222337
Author:    redestad
Date:      2019-12-10 14:18 +0100
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/8d910d222337

8234863: Increase default value of MaxInlineLevel
Reviewed-by: kvn, neliasso

! src/hotspot/share/runtime/globals.hpp

Changeset: 99bdef096320
Author:    coleenp
Date:      2019-12-02 08:40 -0500
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/99bdef096320

8173361: various crashes in JvmtiExport::post_compiled_method_load
Summary: Don't post information that uses metadata from unloaded nmethods
Reviewed-by: eosterlund, dholmes, sspitsyn

! src/hotspot/share/code/nmethod.cpp
! src/hotspot/share/oops/instanceKlass.cpp
! src/hotspot/share/prims/jvmtiExport.cpp
! src/hotspot/share/prims/jvmtiImpl.cpp
! src/hotspot/share/prims/jvmtiImpl.hpp
! src/hotspot/share/runtime/mutexLocker.cpp
! src/hotspot/share/runtime/serviceThread.cpp
! src/hotspot/share/runtime/serviceThread.hpp
! src/hotspot/share/runtime/thread.hpp

Changeset: 2c7af390daad
Author:    jiefu
Date:      2019-12-03 09:36 +0800
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/2c7af390daad

8235218: Minimal VM is broken after JDK-8173361
Reviewed-by: dholmes

! src/hotspot/share/prims/jvmtiImpl.hpp

Changeset: a6414a542a16
Author:    prr
Date:      2020-11-16 09:26 +0100
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/a6414a542a16

8255365: Problem list failing client manual tests
Reviewed-by: kizune, serb

! test/jdk/ProblemList.txt

Changeset: 4444d3ac96f4
Author:    xliu
Date:      2020-05-20 11:29 -0700
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/4444d3ac96f4

8245051: c1 is broken if it is compiled by gcc without -fno-lifetime-dse
Summary: Initialize BlockBegin block id in constructor rather than operator new
Reviewed-by: kbarrett, thartmann

! src/hotspot/share/c1/c1_Instruction.hpp
! src/hotspot/share/c1/c1_ValueMap.cpp

Changeset: 8a114194c42d
Author:    shade
Date:      2020-10-29 14:19 +0000
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/8a114194c42d

8255550: x86: Assembler::cmpq(Address dst, Register src) encoding is incorrect
Reviewed-by: kvn, eosterlund

! src/hotspot/cpu/x86/assembler_x86.cpp

Changeset: e73d1f669c92
Author:    ihse
Date:      2020-05-19 09:12 +0200
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/e73d1f669c92

8245168: jlink should not be treated as a "small" tool
Reviewed-by: erikj

! make/autoconf/spec.gmk.in

Changeset: f311afbc11f5
Author:    shade
Date:      2020-09-16 11:17 +0000
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/f311afbc11f5

8253219: Epsilon: clean up unnecessary includes
Reviewed-by: tschatzl, kbarrett

! src/hotspot/share/gc/epsilon/epsilonArguments.cpp
! src/hotspot/share/gc/epsilon/epsilonMonitoringSupport.cpp

Changeset: 6702a52ae785
Author:    kravikumar
Date:      2020-11-17 11:36 +0100
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/6702a52ae785

8254982: (tz) Upgrade time-zone data to tzdata2020c
Reviewed-by: erikj, naoto

! make/data/tzdata/VERSION
! make/data/tzdata/australasia
! make/data/tzdata/europe
! test/jdk/java/util/Formatter/BasicDateTime.java

Changeset: c7468cba62a0
Author:    jiefu
Date:      2020-07-31 17:10 +0800
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/c7468cba62a0

8250825: C2 crashes with assert(field != __null) failed: missing field
Reviewed-by: kvn, thartmann

! src/hotspot/share/opto/type.cpp
+ test/hotspot/jtreg/compiler/unsafe/TestMisalignedUnsafeAccess.java

Changeset: a4a43c0ad627
Author:    kvn
Date:      2020-10-29 22:34 +0000
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/a4a43c0ad627

8255466: C2 crashes at ciObject::get_oop() const+0x0
Reviewed-by: vlivanov

! src/hotspot/share/opto/type.cpp
+ test/hotspot/jtreg/compiler/unsafe/TestUnsafeStaticFieldAccess.java

Changeset: a3929e111b97
Author:    thartmann
Date:      2020-10-16 06:25 +0000
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/a3929e111b97

8251535: Partial peeling at unsigned test adds incorrect loop exit check
Reviewed-by: chagedorn, neliasso, kvn

! src/hotspot/share/opto/loopopts.cpp
+ test/hotspot/jtreg/compiler/loopopts/TestPartialPeelAtUnsignedTests.java

Changeset: bca12c00a776
Author:    pconcannon
Date:      2020-05-05 18:34 +0100
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/bca12c00a776

8243488: Add tests for set/get SendBufferSize and getReceiveBufferSize in DatagramSocket
Summary: Tests added for methods: setSendBufferSize(int), getSendBufferSize(), and getReceieveBufferSize() to increase test coverage in the DatagramSocket class
Reviewed-by: alanb, chegar, dfuchs

+ test/jdk/java/net/DatagramSocket/SetGetReceiveBufferSize.java
+ test/jdk/java/net/DatagramSocket/SetGetSendBufferSize.java
- test/jdk/java/net/DatagramSocket/SetReceiveBufferSize.java

Changeset: 32c08a06998c
Author:    goetz
Date:      2020-11-18 08:03 +0100
URL:       https://hg.openjdk.java.net/jdk-updates/jdk11u/rev/32c08a06998c

Added tag jdk-11.0.10+3 for changeset bca12c00a776

! .hgtags



More information about the jdk-updates-changes mailing list