Test Message

2023-09-12 Thread Julian Waters
Hi all, This is just a test message, please ignore ~Julian

Re: RFR: 8301991: Convert l10n properties resource bundles to UTF-8 native

2023-09-12 Thread Chen Liang
On Tue, 12 Sep 2023 21:57:31 GMT, Justin Lu wrote: > JDK .properties files still use ISO-8859-1 encoding with escape sequences. It > would improve readability to see the native characters instead of escape > sequences (especially for the L10n process). The majority of files changed > are local

Re: RFR: 8309130: x86_64 AVX512 intrinsics for Arrays.sort methods (int, long, float and double arrays) [v34]

2023-09-12 Thread Srinivas Vamsi Parasa
On Mon, 11 Sep 2023 18:17:41 GMT, Jatin Bhateja wrote: >> Srinivas Vamsi Parasa has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Fix regression when intrinsics are disabled; enable insertion sort in >> intrinsic, change library name to l

Re: RFR: 8309130: x86_64 AVX512 intrinsics for Arrays.sort methods (int, long, float and double arrays) [v35]

2023-09-12 Thread Srinivas Vamsi Parasa
> The goal is to develop faster sort routines for x86_64 CPUs by taking > advantage of AVX512 instructions. This enhancement provides an order of > magnitude speedup for Arrays.sort() using int, long, float and double arrays. > > This PR shows upto ~7x improvement for 32-bit datatypes (int, floa

RFR: 8301991: Convert l10n properties resource bundles to UTF-8 native

2023-09-12 Thread Justin Lu
JDK .properties files still use ISO-8859-1 encoding with escape sequences. It would improve readability to see the native characters instead of escape sequences (especially for the L10n process). The majority of files changed are localized resource files. This change converts the Unicode escape

Integrated: 8253620: Debug symbols for tests missing on macos and windows

2023-09-12 Thread Erik Joelsson
On Tue, 5 Sep 2023 22:59:27 GMT, Erik Joelsson wrote: > Tests on Linux (and I assume other unix like OSes) are built with debug > enabled and debug symbols internal. On Windows and macos, internal debug > symbols aren't possible, and we have for some reason hard coded not including > the exter

Re: RFR: 8253620: Debug symbols for tests missing on macos and windows

2023-09-12 Thread Erik Joelsson
On Tue, 5 Sep 2023 22:59:27 GMT, Erik Joelsson wrote: > Tests on Linux (and I assume other unix like OSes) are built with debug > enabled and debug symbols internal. On Windows and macos, internal debug > symbols aren't possible, and we have for some reason hard coded not including > the exter

Integrated: 8267174: Many test files have the wrong Copyright header

2023-09-12 Thread Erik Joelsson
On Tue, 5 Sep 2023 22:49:41 GMT, Erik Joelsson wrote: > There are a number of files in the `test` directory that have an incorrect > copyright header, which includes the "classpath" exception text. This patch > removes that text from all test files that I could find it in. I did this > using a

Re: RFR: 8267174: Many test files have the wrong Copyright header

2023-09-12 Thread Erik Joelsson
On Tue, 5 Sep 2023 22:49:41 GMT, Erik Joelsson wrote: > There are a number of files in the `test` directory that have an incorrect > copyright header, which includes the "classpath" exception text. This patch > removes that text from all test files that I could find it in. I did this > using a

Re: RFR: 8315786: [AIX] Build Disk Local Detection Issue with GNU-utils df on AIX

2023-09-12 Thread Tyler Steele
On Tue, 12 Sep 2023 16:51:05 GMT, Erik Joelsson wrote: >> I recall there were some issues (I believe in some older versions of bash) >> when an empty shell variable was expanded in a if statement. I no longer >> remember the details, but it has become my habit to always quote shell >> variable

Re: RFR: 8315786: [AIX] Build Disk Local Detection Issue with GNU-utils df on AIX

2023-09-12 Thread Erik Joelsson
On Tue, 12 Sep 2023 15:58:44 GMT, Tyler Steele wrote: > I recall there were some issues (I believe in some older versions of bash) > when an empty shell variable was expanded in a if statement. I no longer > remember the details, but it has become my habit to always quote shell > variable [exp

Re: RFR: 8315786: [AIX] Build Disk Local Detection Issue with GNU-utils df on AIX

2023-09-12 Thread Erik Joelsson
On Wed, 6 Sep 2023 13:46:01 GMT, Deepa Kumari wrote: > Previously [JDK-8304364](https://github.com/openjdk/jdk/pull/13066/files) , > the AIX build process raised complaints about the disk location detection, > incorrectly determining that the build wasn't on a local disk. However, a > partial

Re: RFR: 8315786: [AIX] Build Disk Local Detection Issue with GNU-utils df on AIX

2023-09-12 Thread Tyler Steele
On Wed, 6 Sep 2023 13:46:01 GMT, Deepa Kumari wrote: > Previously [JDK-8304364](https://github.com/openjdk/jdk/pull/13066/files) , > the AIX build process raised complaints about the disk location detection, > incorrectly determining that the build wasn't on a local disk. However, a > partial

Re: RFR: 8315786: [AIX] Build Disk Local Detection Issue with GNU-utils df on AIX

2023-09-12 Thread Erik Joelsson
On Wed, 6 Sep 2023 13:46:01 GMT, Deepa Kumari wrote: > Previously [JDK-8304364](https://github.com/openjdk/jdk/pull/13066/files) , > the AIX build process raised complaints about the disk location detection, > incorrectly determining that the build wasn't on a local disk. However, a > partial

Re: RFR: 8312522: Implementation of Foreign Function & Memory API [v21]

2023-09-12 Thread Jorn Vernee
> This patch contains the implementation of the foreign linker & memory API JEP > for Java 22. The initial patch is composed of commits brought over directly > from the [panama-foreign repo](https://github.com/openjdk/panama-foreign). > The main changes found in this patch come from the followin