Skip to content

Commit 8523880

Browse files
committedNov 14, 2024
8342693: Use byte[] as parameter in a FDBigInteger constructor and as field
Reviewed-by: darcy
1 parent 2b57f40 commit 8523880

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed
 

‎src/java.base/share/classes/jdk/internal/math/FDBigInteger.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -217,7 +217,7 @@ private FDBigInteger(int[] data, int offset) {
217217
@ requires (\forall int i; 0 <= i && i < nDigits; '0' <= digits[i] && digits[i] <= '9');
218218
@ ensures this.value() == \old(lValue * pow10(nDigits - kDigits) + (\sum int i; kDigits <= i && i < nDigits; (digits[i] - '0') * pow10(nDigits - i - 1)));
219219
@*/
220-
public FDBigInteger(long lValue, char[] digits, int kDigits, int nDigits) {
220+
public FDBigInteger(long lValue, byte[] digits, int kDigits, int nDigits) {
221221
int n = Math.max((nDigits + 8) / 9, 2); // estimate size needed.
222222
data = new int[n]; // allocate enough space
223223
data[0] = (int) lValue; // starting value

‎src/java.base/share/classes/jdk/internal/math/FloatingDecimal.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -1034,10 +1034,10 @@ public float floatValue() {
10341034
static class ASCIIToBinaryBuffer implements ASCIIToBinaryConverter {
10351035
boolean isNegative;
10361036
int decExponent;
1037-
char digits[];
1037+
byte[] digits;
10381038
int nDigits;
10391039

1040-
ASCIIToBinaryBuffer( boolean negSign, int decExponent, char[] digits, int n)
1040+
ASCIIToBinaryBuffer( boolean negSign, int decExponent, byte[] digits, int n)
10411041
{
10421042
this.isNegative = negSign;
10431043
this.decExponent = decExponent;
@@ -1872,7 +1872,7 @@ static ASCIIToBinaryConverter readJavaFormatString( String in ) throws NumberFor
18721872
}
18731873
} // look for and process decimal floating-point string
18741874

1875-
char[] digits = new char[ len ];
1875+
byte[] digits = new byte[ len ];
18761876
boolean decSeen = false;
18771877
int nDigits = 0;
18781878
int decPt = 0;
@@ -1903,10 +1903,10 @@ static ASCIIToBinaryConverter readJavaFormatString( String in ) throws NumberFor
19031903
while (i < len) {
19041904
c = in.charAt(i);
19051905
if (c >= '1' && c <= '9') {
1906-
digits[nDigits++] = c;
1906+
digits[nDigits++] = (byte) c;
19071907
nTrailZero = 0;
19081908
} else if (c == '0') {
1909-
digits[nDigits++] = c;
1909+
digits[nDigits++] = (byte) c;
19101910
nTrailZero++;
19111911
} else if (c == '.') {
19121912
if (decSeen) {

‎test/jdk/jdk/internal/math/FloatingDecimal/TestFDBigInteger.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2024, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -22,13 +22,13 @@
2222
*/
2323

2424
import java.math.BigInteger;
25-
import java.util.Random;
25+
import java.nio.charset.StandardCharsets;
2626
import jdk.internal.math.FDBigInteger;
2727

2828
/**
2929
* @test
30-
* @bug 7032154
31-
* @summary unit testys of FDBigInteger
30+
* @bug 7032154 8342693
31+
* @summary unit tests of FDBigInteger
3232
* @modules java.base/jdk.internal.math
3333
* @author Dmitry Nadezhin
3434
*/
@@ -52,7 +52,7 @@ public class TestFDBigInteger {
5252
}
5353

5454
private static FDBigInteger mutable(String hex, int offset) {
55-
char[] chars = new BigInteger(hex, 16).toString().toCharArray();
55+
byte[] chars = new BigInteger(hex, 16).toString().getBytes(StandardCharsets.US_ASCII);
5656
return new FDBigInteger(0, chars, 0, chars.length).multByPow52(0, offset * 32);
5757
}
5858

0 commit comments

Comments
 (0)
Please sign in to comment.