RFR: 8327964: Simplify BigInteger.implMultiplyToLen intrinsic [v6]
Bhavana Kilambi
bkilambi at openjdk.org
Thu May 23 10:30:08 UTC 2024
On Wed, 22 May 2024 14:47:43 GMT, Yudi Zheng <yzheng at openjdk.org> wrote:
>> Moving array construction within BigInteger.implMultiplyToLen intrinsic candidate to its caller simplifies the intrinsic implementation in JIT compiler.
>
> Yudi Zheng has updated the pull request incrementally with one additional commit since the last revision:
>
> address comments.
src/java.base/share/classes/java/math/BigInteger.java line 1836:
> 1834:
> 1835: if (z == null || z.length < (xlen + ylen))
> 1836: z = new int[xlen + ylen];
Style: only 4 spaces indentation
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/18226#discussion_r1611422191
More information about the core-libs-dev
mailing list