- The `throw()` (i.e., no throw) specifications are removed from the instances
of `operator new` where _do not_ return `nullptr`.
- The `-fcheck-new` is removed from the gcc compile flags.
- The `operator new` and `operator delete` are deleted from `StackObj`.
- The `GrowableArrayCHeap::operato
Greetings,
With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
refactoring was done to the JVMTI code concerning agents. However, some
platforms do not have JVMTI support, and tier5 of testing builds an embedded
build, linux-arm32-open-cmp-baseline, which failed because the r
On Tue, 18 Apr 2023 14:22:21 GMT, Markus Grönlund wrote:
> Greetings,
>
> With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
> refactoring was done to the JVMTI code concerning agents. However, some
> platforms do not have JVMTI support, and tier5 of testing builds an embedd
> Greetings,
>
> With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
> refactoring was done to the JVMTI code concerning agents. However, some
> platforms do not have JVMTI support, and tier5 of testing builds an embedded
> build, linux-arm32-open-cmp-baseline, which failed b
> Greetings,
>
> With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
> refactoring was done to the JVMTI code concerning agents. However, some
> platforms do not have JVMTI support, and tier5 of testing builds an embedded
> build, linux-arm32-open-cmp-baseline, which failed b
On Mon, 17 Apr 2023 17:09:44 GMT, Afshin Zafari wrote:
> - The `throw()` (i.e., no throw) specifications are removed from the
> instances of `operator new` where _do not_ return `nullptr`.
>
> - The `-fcheck-new` is removed from the gcc compile flags.
>
> - The `operator new` and `operator del
On Tue, 18 Apr 2023 15:22:02 GMT, Markus Grönlund wrote:
>> Greetings,
>>
>> With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
>> refactoring was done to the JVMTI code concerning agents. However, some
>> platforms do not have JVMTI support, and tier5 of testing builds an e
On Tue, 18 Apr 2023 14:22:21 GMT, Markus Grönlund wrote:
> Greetings,
>
> With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
> refactoring was done to the JVMTI code concerning agents. However, some
> platforms do not have JVMTI support, and tier5 of testing builds an embedd
Greetings,
For most platforms, os::dll_address_to_library_name() only sets offset = -1 in
case of errors. If there is an error, the function returns false. This is fine.
On AIX, the offset, being optional, is invariantly set to -1, even in the case
of non-errors.
Easiest to remove the assertio
On Tue, 18 Apr 2023 16:59:29 GMT, Markus Grönlund wrote:
> Greetings,
>
> For most platforms, os::dll_address_to_library_name() only sets offset = -1
> in case of errors. If there is an error, the function returns false. This is
> fine.
>
> On AIX, the offset, being optional, is invariantly s
Please review this patch to move the writeable Klass AccessFlags to
InstanceKlassFlags.
Tested with tier1-4.
-
Commit messages:
- 8306123: Move InstanceKlass writeable flags
Changes: https://git.openjdk.org/jdk/pull/13515/files
Webrev: https://webrevs.openjdk.org/?repo=jdk&pr=1351
On Mon, 17 Apr 2023 16:56:31 GMT, Jiangli Zhou wrote:
> - Make functions 'static' when feasible:
> - throwByName() in
> src/java.security.jgss/share/native/libj2gss/NativeUtil.c.
> - throwByName(), throwIOException() and throwNullPointerException() in
> src/java.smartcardio/unix/native/libj
On Tue, 18 Apr 2023 15:18:34 GMT, Coleen Phillimore wrote:
>> - The `throw()` (i.e., no throw) specifications are removed from the
>> instances of `operator new` where _do not_ return `nullptr`.
>>
>> - The `-fcheck-new` is removed from the gcc compile flags.
>>
>> - The `operator new` and `op
On Mon, 17 Apr 2023 17:09:44 GMT, Afshin Zafari wrote:
> - The `throw()` (i.e., no throw) specifications are removed from the
> instances of `operator new` where _do not_ return `nullptr`.
>
> - The `-fcheck-new` is removed from the gcc compile flags.
>
> - The `operator new` and `operator del
> This PR combines the "open" and "closed" regions of the CDS archive heap into
> a single region. This significantly simplifies the implementation, making it
> more compatible with non-G1 collectors. There's a net removal of ~1000 lines
> in src code and another ~1200 lines of tests.
>
> **Not
On Fri, 14 Apr 2023 13:27:37 GMT, Fredrik Bredberg wrote:
> Added the missing java.lang.Thread.beforeSleep and java.lang.afterSleep to
> expectedSystemTrace.
> Tested on my local machine.
We current have a total of 20 sightings of this failure in both CI and Adhoc
jobs and it's happening in qui
On Mon, 17 Apr 2023 20:59:06 GMT, Roger Riggs wrote:
>> Define an internal jdk.internal.util.Architecture enumeration and static
>> methods to replace uses of the system property `os.arch`.
>> The enumeration values are defined to match those used in the build.
>> The initial values are: `X64, X
On Tue, 18 Apr 2023 17:11:25 GMT, Coleen Phillimore wrote:
> Please review this patch to move the writeable Klass AccessFlags to
> InstanceKlassFlags.
> Tested with tier1-4.
LGTM.
-
Marked as reviewed by iklam (Reviewer).
PR Review: https://git.openjdk.org/jdk/pull/13515#pullrequ
On Mon, 17 Apr 2023 20:59:06 GMT, Roger Riggs wrote:
>> Define an internal jdk.internal.util.Architecture enumeration and static
>> methods to replace uses of the system property `os.arch`.
>> The enumeration values are defined to match those used in the build.
>> The initial values are: `X64, X
Hi.
Following last month’s email about changing the default of
EnableDynamicAgentLoading [1], we’ve now published two JEP drafts.
The first is an informational JEP describing what integrity is and why we need
it,
and motivates what changes are required to get it (which include the
restriction of
On Tue, 21 Mar 2023 21:39:48 GMT, Chen Liang wrote:
>> Summaries:
>> 1. A few recommendations about updating the constant API is made at
>> https://mail.openjdk.org/pipermail/classfile-api-dev/2023-March/000233.html
>> and I may update this patch shall the API changes be integrated before
>> 2.
On Tue, 18 Apr 2023 16:59:29 GMT, Markus Grönlund wrote:
> Greetings,
>
> For most platforms, os::dll_address_to_library_name() only sets offset = -1
> in case of errors. If there is an error, the function returns false. This is
> fine.
>
> On AIX, the offset, being optional, is invariantly s
On Tue, 18 Apr 2023 15:22:02 GMT, Markus Grönlund wrote:
>> Greetings,
>>
>> With [JDK-8257967](https://bugs.openjdk.org/browse/JDK-8257967), much
>> refactoring was done to the JVMTI code concerning agents. However, some
>> platforms do not have JVMTI support, and tier5 of testing builds an e
23 matches
Mail list logo