Re: RFR: 8266622: Optimize Class.descriptorString() and Class.getCanonicalName0()

2021-05-06 Thread Сергей Цыпанов
On Thu, 6 May 2021 16:34:04 GMT, Peter Levart wrote: >> Hello, from discussion in https://github.com/openjdk/jdk/pull/3464 and >> https://github.com/openjdk/jdk/pull/2212 it appears, that in `j.l.Class` >> expressions like >> >> String str = baseName.replace('.', '/') + '/' + name; >> >> are

RFR: 8266610: Method RandomAccessFile#length() returns 0 for block devices on linux.

2021-05-06 Thread Vyom Tewari
RandomAccessFile.length() method for block device return always 0 - Commit messages: - JDK-8266610: Method RandomAccessFile#length() returns 0 for block devices on linux. Changes: https://git.openjdk.java.net/jdk/pull/3914/files Webrev: https://webrevs.openjdk.java.net/?repo=jdk&p

Re: RFR: 8265448: (zipfs): Reduce read contention in ZipFileSystem [v4]

2021-05-06 Thread Jason Zaugg
On Thu, 6 May 2021 08:05:12 GMT, Jason Zaugg wrote: >> src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystem.java line 1235: >> >>> 1233: synchronized(ch) { >>> 1234: return ch.position(pos).read(bb); >>> 1235: } >> >> I think it's okay to include the u

Re: RFR: 8265448: (zipfs): Reduce read contention in ZipFileSystem [v5]

2021-05-06 Thread Jason Zaugg
> If the given Path represents a file, use the overload of read defined > in FileChannel that accepts an explicit position and avoid serializing > reads. > > Note: The underlying NIO implementation is not required to implement > FileChannel.read(ByteBuffer, long) concurrently; Windows still appear

RFR: 8266456: Replace direct TKit.run() calls with jdk.jpackage.test.Annotations.Test annotation

2021-05-06 Thread Alexander Matveev
- Replaced direct TKit.run() calls with Test annotation. - Increased timeout for SigningPackageTest from default to 360 due to timeout. This is regression from JDK-8248904 due to changes done in signing and --remove-signature adds additional time since it is run per file. - Fixed issue with jtr

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Yumin Qi
On Thu, 6 May 2021 21:59:32 GMT, Ioi Lam wrote: >> Yumin Qi has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Remove tab space > > The latest version LGTM @iklam @calvinccheung Thanks for review! - PR: https://git.openjdk.ja

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Calvin Cheung
On Thu, 6 May 2021 21:37:35 GMT, Yumin Qi wrote: >> Hi, Please review >> When using jcmd to dump shared archive, if the archive name exists, it >> will be deleted first. If exception happens during dumping process, there is >> no new archive created. This PR changes to first dump the archiv

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Calvin Cheung
On Fri, 7 May 2021 00:02:56 GMT, Yumin Qi wrote: >> test/hotspot/jtreg/runtime/cds/appcds/jcmd/JCmdTestFileSafety.java line 78: >> >>> 76: print2ln(test_count++ + " Set target dir not writable, do >>> dynamic dump"); >>> 77: setKeepArchive(true); >>> 78: outputDirFile.se

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Yumin Qi
On Thu, 6 May 2021 23:59:21 GMT, Calvin Cheung wrote: >> Yumin Qi has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Remove tab space > > test/hotspot/jtreg/runtime/cds/appcds/jcmd/JCmdTestFileSafety.java line 78: > >> 76: print2ln

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Calvin Cheung
On Thu, 6 May 2021 21:37:35 GMT, Yumin Qi wrote: >> Hi, Please review >> When using jcmd to dump shared archive, if the archive name exists, it >> will be deleted first. If exception happens during dumping process, there is >> no new archive created. This PR changes to first dump the archiv

Proposal for new interface: TimeSource

2021-05-06 Thread Stephen Colebourne
This is a proposal to add a new interface to java.time.* public interface TimeSource { public static TimeSource system() { ... } public abstract Instant instant(); public default long millis() { return instant().toEpochMilli(); } public default Clock withZone(ZoneId zon

New candidate JEP: 415: Context-Specific Deserialization Filters

2021-05-06 Thread mark . reinhold
https://openjdk.java.net/jeps/415 Summary: Allow applications to configure context-specific and dynamically-selected deserialization filters via a JVM-wide filter factory that is invoked to select a filter for each individual deserialization operation. - Mark

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Ioi Lam
On Thu, 6 May 2021 21:37:35 GMT, Yumin Qi wrote: >> Hi, Please review >> When using jcmd to dump shared archive, if the archive name exists, it >> will be deleted first. If exception happens during dumping process, there is >> no new archive created. This PR changes to first dump the archiv

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v5]

2021-05-06 Thread Yumin Qi
> Hi, Please review > When using jcmd to dump shared archive, if the archive name exists, it > will be deleted first. If exception happens during dumping process, there is > no new archive created. This PR changes to first dump the archive with a > temporary file name. With successful dump,

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v4]

2021-05-06 Thread Yumin Qi
> Hi, Please review > When using jcmd to dump shared archive, if the archive name exists, it > will be deleted first. If exception happens during dumping process, there is > no new archive created. This PR changes to first dump the archive with a > temporary file name. With successful dump,

Re: RFR: 8260517: implement Sealed Classes as a standard feature in Java [v7]

2021-05-06 Thread Vicente Romero
> Please review this PR that intents to make sealed classes a final feature in > Java. This PR contains compiler and VM changes. In line with similar PRs, > which has made preview features final, this one is mostly removing preview > related comments from APIs plus options in test cases. Please

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Brian Burkhalter
On Thu, 6 May 2021 11:52:09 GMT, Ignasi Marimon-Clos wrote: >> @ignasi35 I have created JDK-8266578. Please change the name of this PR to: >> >> `8266578: Disambiguate BigDecimal description of scale` >> >> Please resolve any conflicts and commit the updated file. Once the update is >> availa

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Brian Burkhalter
On Fri, 9 Oct 2020 16:14:59 GMT, Ignasi Marimon-Clos wrote: > The API Docs for `BigDecimal` introduce the meaning of `scale`. The current > writeup can be missleading when presenting the meaning of a `scale` value > that's negative. Hopefully, with this PR, the sentence is more clear. > > The

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Joe Darcy
On Fri, 9 Oct 2020 16:14:59 GMT, Ignasi Marimon-Clos wrote: > The API Docs for `BigDecimal` introduce the meaning of `scale`. The current > writeup can be missleading when presenting the meaning of a `scale` value > that's negative. Hopefully, with this PR, the sentence is more clear. > > The

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v3]

2021-05-06 Thread Lance Andersen
On Thu, 6 May 2021 16:57:12 GMT, Daniel Fuchs wrote: >> Hi, please find here a trivial test change that adds some diagnostic (time >> stamps) to the LoggerFinder/modules subprocess test logs. > > Daniel Fuchs has updated the pull request incrementally with one additional > commit since the last

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v3]

2021-05-06 Thread Brian Burkhalter
On Thu, 6 May 2021 16:57:12 GMT, Daniel Fuchs wrote: >> Hi, please find here a trivial test change that adds some diagnostic (time >> stamps) to the LoggerFinder/modules subprocess test logs. > > Daniel Fuchs has updated the pull request incrementally with one additional > commit since the last

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v3]

2021-05-06 Thread Iris Clark
On Thu, 6 May 2021 16:57:12 GMT, Daniel Fuchs wrote: >> Hi, please find here a trivial test change that adds some diagnostic (time >> stamps) to the LoggerFinder/modules subprocess test logs. > > Daniel Fuchs has updated the pull request incrementally with one additional > commit since the last

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v3]

2021-05-06 Thread Naoto Sato
On Thu, 6 May 2021 16:57:12 GMT, Daniel Fuchs wrote: >> Hi, please find here a trivial test change that adds some diagnostic (time >> stamps) to the LoggerFinder/modules subprocess test logs. > > Daniel Fuchs has updated the pull request incrementally with one additional > commit since the last

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v3]

2021-05-06 Thread Daniel Fuchs
> Hi, please find here a trivial test change that adds some diagnostic (time > stamps) to the LoggerFinder/modules subprocess test logs. Daniel Fuchs has updated the pull request incrementally with one additional commit since the last revision: removed unused import statement -

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v2]

2021-05-06 Thread Daniel Fuchs
On Thu, 6 May 2021 16:42:16 GMT, Daniel Fuchs wrote: >> Hi, please find here a trivial test change that adds some diagnostic (time >> stamps) to the LoggerFinder/modules subprocess test logs. > > Daniel Fuchs has updated the pull request incrementally with one additional > commit since the last

RFR: 8266225: jarsigner is using incorrect security property to show weakness of certs

2021-05-06 Thread Hai-May Chao
Please review the change to jarsigner so it uses certpath security property in order to properly display the weakness of the certificate algorithms. - Commit messages: - 8266225:jarsigner is using incorrect security property to show weakness of certs Changes: https://git.openjdk.j

Re: RFR: 8266317: Vector API enhancements

2021-05-06 Thread Jatin Bhateja
On Thu, 29 Apr 2021 21:13:38 GMT, Paul Sandoz wrote: > This PR contains API and implementation changes for [JEP-414 Vector API > (Second Incubator)](https://openjdk.java.net/jeps/414), in preparation for > when targeted. > > Enhancements are made to the API for the support of operations on cha

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v2]

2021-05-06 Thread Naoto Sato
On Thu, 6 May 2021 16:42:16 GMT, Daniel Fuchs wrote: >> Hi, please find here a trivial test change that adds some diagnostic (time >> stamps) to the LoggerFinder/modules subprocess test logs. > > Daniel Fuchs has updated the pull request incrementally with one additional > commit since the last

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules [v2]

2021-05-06 Thread Daniel Fuchs
> Hi, please find here a trivial test change that adds some diagnostic (time > stamps) to the LoggerFinder/modules subprocess test logs. Daniel Fuchs has updated the pull request incrementally with one additional commit since the last revision: Use + Instant.now(); Instant.toString() uses the

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules

2021-05-06 Thread Daniel Fuchs
On Thu, 6 May 2021 15:25:10 GMT, Daniel Fuchs wrote: > Hi, please find here a trivial test change that adds some diagnostic (time > stamps) to the LoggerFinder/modules subprocess test logs. Oh - good point Naoto! Thanks for the suggestion. Done. - PR: https://git.openjdk.java.net/

Re: RFR: 8264777: Overload optimized FileInputStream::readAllBytes [v6]

2021-05-06 Thread Brian Burkhalter
> Please consider this request to override the `java.io.InputStream` methods > `readAllBytes()` and `readNBytes(int)` in `FileInputStream` with more > performant implementations. The method overrides attempt to read all > requested bytes into a single array of the required size rather than > co

Re: RFR: 8266622: Optimize Class.descriptorString() and Class.getCanonicalName0()

2021-05-06 Thread Peter Levart
On Thu, 6 May 2021 15:20:23 GMT, Сергей Цыпанов wrote: > Hello, from discussion in https://github.com/openjdk/jdk/pull/3464 and > https://github.com/openjdk/jdk/pull/2212 it appears, that in `j.l.Class` > expressions like > > String str = baseName.replace('.', '/') + '/' + name; > > are not

Re: RFR: 8265465: jcmd VM.cds should keep already dumped archive when exceptions happens [v3]

2021-05-06 Thread Yumin Qi
> Hi, Please review > When using jcmd to dump shared archive, if the archive name exists, it > will be deleted first. If exception happens during dumping process, there is > no new archive created. This PR changes to first dump the archive with a > temporary file name. With successful dump,

Re: RFR: 8265768 [aarch64] Use glibc libm impl for dlog, dlog10, dexp iff 2.29 or greater on AArch64.

2021-05-06 Thread Joe Darcy
On 5/6/2021 5:21 AM, Carlos O'Donell wrote: On Thu, 15 Apr 2021 08:33:47 GMT, gregcawthorne wrote: Glibc 2.29 onwards provides optimised versions of log,log10,exp. These functions have an accuracy of 0.9ulp or better in glibc 2.29. Therefore this patch adds code to parse, store and check t

Re: RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules

2021-05-06 Thread Naoto Sato
On Thu, 6 May 2021 15:25:10 GMT, Daniel Fuchs wrote: > Hi, please find here a trivial test change that adds some diagnostic (time > stamps) to the LoggerFinder/modules subprocess test logs. Could those be replaced with just `Instant.now()`? `Instant.toString()` uses the same formatter as `ISO_

RFR: 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules

2021-05-06 Thread Daniel Fuchs
Hi, please find here a trivial test change that adds some diagnostic (time stamps) to the LoggerFinder/modules subprocess test logs. - Commit messages: - 8266646: Add more diagnostic to java/lang/System/LoggerFinder/modules Changes: https://git.openjdk.java.net/jdk/pull/3904/files

RFR: 8266622: Optimize Class.descriptorString() and Class.getCanonicalName0()

2021-05-06 Thread Сергей Цыпанов
Hello, from discussion in https://github.com/openjdk/jdk/pull/3464 it appears, that in `j.l.Class` expressions like String str = baseName.replace('.', '/') + '/' + name; are not compiled into invokedynamic-based code, but into one using `StringBuilder`. This happens due to some bootstraping is

Re: RFR: 8254598: StringDedupTable should use OopStorage

2021-05-06 Thread Kim Barrett
On Fri, 23 Apr 2021 19:48:47 GMT, Kim Barrett wrote: > Please review this change to the String Deduplication facility. It is being > changed to use OopStorage to hold weak references to relevant objects, > rather than bespoke data structures requiring dedicated processing phases by > supporting

Re: RFR: 8264774: Implementation of Foreign Function and Memory API (Incubator) [v12]

2021-05-06 Thread Maurizio Cimadamore
> This PR contains the API and implementation changes for JEP-412 [1]. A more > detailed description of such changes, to avoid repetitions during the review > process, is included as a separate comment. > > [1] - https://openjdk.java.net/jeps/412 Maurizio Cimadamore has updated the pull request

Integrated: 8266460: java.io tests fail on null stream with upgraded jtreg/TestNG

2021-05-06 Thread Lance Andersen
On Tue, 4 May 2021 20:45:43 GMT, Lance Andersen wrote: > Hi all, > > This fix addresses a change in TestNG behavior for the Before/AfterGroups > annotations that was introduced via > https://github.com/cbeust/testng/pull/2167. The tests have been verified > against the latest TestNG relea

Integrated: 8266579: Update test/jdk/java/lang/ProcessHandle/PermissionTest.java & test/jdk/java/sql/testng/util/TestPolicy.java

2021-05-06 Thread Lance Andersen
On Wed, 5 May 2021 19:10:21 GMT, Lance Andersen wrote: > Hi all, > > Please review this patch which updates > test/jdk/java/lang/ProcessHandle/PermissionTest.java & > test/jdk/java/sql/testng/util/TestPolicy.java to include : > > `new PropertyPermission("testng.memory.friendly", "read"); >

Re: RFR: 8264777: Overload optimized FileInputStream::readAllBytes [v5]

2021-05-06 Thread Alan Bateman
On Tue, 4 May 2021 20:13:20 GMT, Brian Burkhalter wrote: >> On `/proc/cpuinfo` for example, `fstat()` succeeds but `st_size` in `struct >> stat` is zero. The correct position is however returned by `lseek()`. >> Apparently this proposal needs to be reworked to expect size zero when the >> size

Re: RFR: 8265768 [aarch64] Use glibc libm impl for dlog, dlog10, dexp iff 2.29 or greater on AArch64.

2021-05-06 Thread Carlos O'Donell
On Thu, 15 Apr 2021 08:33:47 GMT, gregcawthorne wrote: > Glibc 2.29 onwards provides optimised versions of log,log10,exp. > These functions have an accuracy of 0.9ulp or better in glibc > 2.29. > > Therefore this patch adds code to parse, store and check > the runtime glibcs version in os_linux

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Ignasi Marimon-Clos
On Wed, 5 May 2021 20:29:59 GMT, Brian Burkhalter wrote: >>> @ignasi35 Do you wish to continue this PR? If so I will file an issue. >>> Thanks. >> >> Hi @bplb, this completely fell through the cracks. If you could file the >> issue for me I'd really appreciate it. Thanks. > > @ignasi35 I have

Integrated: 8266168: -Wmaybe-uninitialized happens in check_code.c

2021-05-06 Thread Yasumasa Suenaga
On Thu, 29 Apr 2021 06:54:33 GMT, Yasumasa Suenaga wrote: > We can see following compiler warning in check_code.c on GCC 11. This pull request has now been integrated. Changeset: 0f9852c6 Author:Yasumasa Suenaga URL: https://git.openjdk.java.net/jdk/commit/0f9852c63b12c43b52615ea003

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Ignasi Marimon-Clos
On Tue, 12 Jan 2021 14:07:23 GMT, Ignasi Marimon-Clos wrote: >> The `jcheck` test fails because "The commit message does not reference any >> issue. To add an issue reference to this PR, edit the title to be of the >> format `issue number: message`." > > Thanks @bplb. I'm afraid I'm not an >

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Brian Burkhalter
On Mon, 3 May 2021 16:45:22 GMT, Ignasi Marimon-Clos wrote: >> Thanks @bplb. I'm afraid I'm not an >> [author](http://openjdk.java.net/bylaws#author) or have access to create or >> read the issues in >> [JIRA](https://bugs.openjdk.java.net/secure/CreateIssue.jspa?pid=11300&issuetype=1). >> >

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Brian Burkhalter
On Tue, 12 Jan 2021 14:07:23 GMT, Ignasi Marimon-Clos wrote: >> The `jcheck` test fails because "The commit message does not reference any >> issue. To add an issue reference to this PR, edit the title to be of the >> format `issue number: message`." > > Thanks @bplb. I'm afraid I'm not an >

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Ignasi Marimon-Clos
On Mon, 4 Jan 2021 19:31:40 GMT, Brian Burkhalter wrote: >> The API Docs for `BigDecimal` introduce the meaning of `scale`. The current >> writeup can be missleading when presenting the meaning of a `scale` value >> that's negative. Hopefully, with this PR, the sentence is more clear. >> >> Th

RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Ignasi Marimon-Clos
The API Docs for `BigDecimal` introduce the meaning of `scale`. The current writeup can be missleading when presenting the meaning of a `scale` value that's negative. Hopefully, with this PR, the sentence is more clear. The ambiguity is on this sentence: > If negative, the unscaled value of the

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Ignasi Marimon-Clos
On Fri, 9 Oct 2020 16:14:59 GMT, Ignasi Marimon-Clos wrote: > The API Docs for `BigDecimal` introduce the meaning of `scale`. The current > writeup can be missleading when presenting the meaning of a `scale` value > that's negative. Hopefully, with this PR, the sentence is more clear. > > The

Re: RFR: 8266578: Disambiguate BigDecimal description of scale

2021-05-06 Thread Brian Burkhalter
On Fri, 9 Oct 2020 16:14:59 GMT, Ignasi Marimon-Clos wrote: > The API Docs for `BigDecimal` introduce the meaning of `scale`. The current > writeup can be missleading when presenting the meaning of a `scale` value > that's negative. Hopefully, with this PR, the sentence is more clear. > > The

Re: RFR: 8265518: C1: Intrinsic support for Preconditions.checkIndex [v8]

2021-05-06 Thread Yi Yang
> The JDK codebase re-created many variants of checkIndex(`grep -I -r > 'cehckIndex' jdk/`). A notable variant is java.nio.Buffer.checkIndex, which > annotated with @IntrinsicCandidate and it only has a corresponding C1 > intrinsic version. > > In fact, there is an utility method > `jdk.intern

Re: RFR: 8265518: C1: Intrinsic support for Preconditions.checkIndex [v7]

2021-05-06 Thread Yi Yang
> The JDK codebase re-created many variants of checkIndex(`grep -I -r > 'cehckIndex' jdk/`). A notable variant is java.nio.Buffer.checkIndex, which > annotated with @IntrinsicCandidate and it only has a corresponding C1 > intrinsic version. > > In fact, there is an utility method > `jdk.intern

Re: RFR: 8263512: [macos_aarch64] issues with calling va_args functions from invoke_native

2021-05-06 Thread Nick Gasson
On Mon, 3 May 2021 15:37:44 GMT, Jorn Vernee wrote: >> src/jdk.incubator.foreign/share/classes/jdk/internal/foreign/abi/aarch64/macos/StackVaList.java >> line 131: >> >>> 129: MemorySegment struct = allocator.allocate(layout); >>> 130: struct.copyFrom(seg

Re: RFR: 8265448: (zipfs): Reduce read contention in ZipFileSystem [v4]

2021-05-06 Thread Jason Zaugg
On Thu, 6 May 2021 07:41:00 GMT, Alan Bateman wrote: >> Jason Zaugg has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Remove redundant cast from previous commit. > > src/jdk.zipfs/share/classes/jdk/nio/zipfs/ZipFileSystem.java line 1235: >

Re: RFR: 8265448: (zipfs): Reduce read contention in ZipFileSystem [v4]

2021-05-06 Thread Alan Bateman
On Thu, 6 May 2021 00:03:20 GMT, Jason Zaugg wrote: >> If the given Path represents a file, use the overload of read defined >> in FileChannel that accepts an explicit position and avoid serializing >> reads. >> >> Note: The underlying NIO implementation is not required to implement >> FileChann

Re: RFR: 8266168: -Wmaybe-uninitialized happens in check_code.c

2021-05-06 Thread Thomas Stuefe
On Thu, 29 Apr 2021 06:54:33 GMT, Yasumasa Suenaga wrote: > We can see following compiler warning in check_code.c on GCC 11. LGTM. I am not aware of any platform where sizeof(char) is not 1, but good to be prepared :) - Marked as reviewed by stuefe (Reviewer). PR: https://git.op

Re: [11u] RFR 8266352: Add parallel heap iteration for jmap –histo

2021-05-06 Thread Alan Bateman
On 06/05/2021 04:47, buddyliao(廖彬) wrote: Dear all, Would you help me to review the following backport from jdk-master? I think you are looking for jdk-updates-dev, the folks there will guide you through how to get approval for these serviceability and GC changes. -Alan

Re: RFR: 8266168: -Wmaybe-uninitialized happens in check_code.c

2021-05-06 Thread Yasumasa Suenaga
On Thu, 29 Apr 2021 06:54:33 GMT, Yasumasa Suenaga wrote: > We can see following compiler warning in check_code.c on GCC 11. Ping: Could you review this PR? We still see this warning with GCC 11.1. - PR: https://git.openjdk.java.net/jdk/pull/3787