simonis [Mon, 16 Apr 2018 16:43:26 +0200] rev 49991
8201524: [AIX] Don't link libfontmanager against libawt_headless
Reviewed-by: erikj, clanger, prr
pbansal [Mon, 16 Apr 2018 15:22:56 +0530] rev 49990
8153532: Add @throws NPE javadoc to UIManager.setLookAndFeel(String) method description
Reviewed-by: prr, serb, kaddepalli
sveerabhadra [Mon, 16 Apr 2018 10:35:22 +0530] rev 49989
8181910: [macos] Support dark title bars on macOS
Reviewed-by: serb, denis
aivanov [Sat, 14 Apr 2018 00:25:12 +0100] rev 49988
8201433: Fix potential crash in BufImg_SetupICM
Reviewed-by: prr, serb
lfoltan [Fri, 04 May 2018 12:14:09 -0400] rev 49987
8189916: Dynamic Constant support for Sparc
Summary: Change to the template interpreter to support dynamic constant on Sparc.
Reviewed-by: coleenp, psandoz
ecaspole [Fri, 04 May 2018 10:45:47 -0400] rev 49986
8197447: LogCompilation throws "couldn't find bytecode"
Summary: Handle unstable_fused_if
Reviewed-by: kvn, gtriantafill
clanger [Fri, 04 May 2018 14:37:58 +0100] rev 49985
8202181: Correctly specify size of hostname buffer in Unix Inet*AddressImpl_getLocalHostName implementations
Reviewed-by: stuefe, bpb, vtewari, chegar
lkorinth [Thu, 03 May 2018 15:17:27 +0200] rev 49984
8176717: GC log file handle leaked to child processes
Reviewed-by: stuefe, rehn
rgoel [Fri, 04 May 2018 15:44:24 +0530] rev 49983
8202582: DateTimeFormatterBuilder.parseOffsetBased unnecessarily calls toString()
Summary: call text.subSequence() before calling toString() on input string
Reviewed-by: igerasim
stefank [Fri, 04 May 2018 11:41:35 +0200] rev 49982
8200729: Conditional compilation of GCs
Reviewed-by: ehelin, coleenp, kvn, ihse
redestad [Fri, 04 May 2018 09:29:14 +0200] rev 49981
8187123: (reflect) Class#getCanonicalName and Class#getSimpleName is a part of performance issue
Reviewed-by: psandoz, dholmes, mchung
stuefe [Tue, 24 Apr 2018 18:06:32 +0200] rev 49980
8201572: Improve Metaspace Statistics
Reviewed-by: adinn, zgu
erikj [Thu, 03 May 2018 17:36:25 -0700] rev 49979
8196113: Remove the Compact Profile builds
Reviewed-by: tbell, alanb
lana [Thu, 03 May 2018 22:29:20 +0000] rev 49978
Added tag jdk-11+12 for changeset 3ab6ba9f94a9
kbarrett [Thu, 03 May 2018 17:36:50 -0400] rev 49977
8200557: OopStorage parallel iteration scales poorly
Summary: Change representation of sequence of all blocks for better scaling.
Reviewed-by: coleenp, eosterlund
erikj [Thu, 03 May 2018 14:13:20 -0700] rev 49976
8200083: Bump bootjdk requirement for JDK 11 to JDK 10
Reviewed-by: tbell, ihse
jjg [Thu, 03 May 2018 12:56:53 -0700] rev 49975
8194968: problem list actions for tools/javac/jvm/VerboseOutTest
Reviewed-by: vromero
joehw [Thu, 03 May 2018 12:13:43 -0700] rev 49974
8201138: Defect in XMLEventReader.getElementText() may cause data to be skipped, duplicated or otherwise result in a ClassCastException
Reviewed-by: lancea
mchung [Thu, 03 May 2018 11:18:57 -0700] rev 49973
8201793: (ref) Reference object should not support cloning
Reviewed-by: psandoz, kbarrett
kvn [Thu, 03 May 2018 09:07:40 -0700] rev 49972
8202552: [AOT][JVMCI] Incorrect usage of INCLUDE_JVMCI and INCLUDE_AOT
Reviewed-by: stefank, ihse
stuefe [Mon, 30 Apr 2018 15:55:21 +0200] rev 49971
8202424: Metaspace: on chunk retirement, use correct lower limit on chunksize when adding blocks to free blocks list
Reviewed-by: zgu, coleenp
vromero [Thu, 03 May 2018 06:20:37 -0700] rev 49970
8202584: de-problem list tools/javac/jvm/VerboseOutTest
Reviewed-by: mcimadamore
coleenp [Fri, 27 Apr 2018 15:00:04 -0400] rev 49969
8202447: Fix unloading_occurred to mean unloading_occurred
Summary: nmethod unloading does not need to test for jvmti to set unloading_occurred, nor do we need to clean weak Klasses in metadata if unloading does not occur.
Reviewed-by: sspitsyn, rehn
zgu [Thu, 03 May 2018 08:07:20 -0400] rev 49968
8199067: [REDO] NMT: Enhance thread stack tracking
Summary: Precise thread stack tracking on Linux and Windows
Reviewed-by: stuefe, coleenp
tschatzl [Thu, 03 May 2018 14:10:08 +0200] rev 49967
8202021: Improve variable naming in ReferenceProcesso
Reviewed-by: sangheki, sjohanss
tschatzl [Thu, 03 May 2018 14:09:39 +0200] rev 49966
8202018: Move card table clear before enqueuing pending references
Summary: Move card table clearing in preparation of removal of the Reference enqueue phase.
Reviewed-by: sangheki, sjohanss
tschatzl [Thu, 03 May 2018 14:09:21 +0200] rev 49965
8201640: Use _ref_processor_* member variables directly in G1CollectedHeap
Reviewed-by: sjohanss
tschatzl [Thu, 03 May 2018 14:09:00 +0200] rev 49964
8201492: Properly implement non-contiguous generations for Reference discovery
Summary: Collectors like G1 implementing non-contiguous generations previously used an inexact but conservative area for discovery. Concurrent and STW reference processing could discover the same reference multiple times, potentially missing referents during evacuation. So these collectors had to take extra measures while concurrent marking/reference discovery has been running. This change makes discovery exact for G1 (and any collector using non-contiguous generations) so that concurrent discovery and STW discovery discover on strictly disjoint memory areas. This means that the mentioned situation can not occur any more, and extra work is not required any more too.
Reviewed-by: kbarrett, sjohanss