Skip to content

Commit afe957c

Browse files
committedJul 13, 2021
8268698: Use Objects.check{Index,FromToIndex,FromIndexSize} for java.base
Reviewed-by: mchung, rriggs
1 parent a4e5f08 commit afe957c

File tree

40 files changed

+186
-284
lines changed

40 files changed

+186
-284
lines changed
 

‎src/java.base/share/classes/java/lang/AbstractStringBuilder.java

+11-28
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import java.util.stream.IntStream;
3333
import java.util.stream.StreamSupport;
3434
import jdk.internal.util.ArraysSupport;
35+
import jdk.internal.util.Preconditions;
3536

3637
import static java.lang.String.COMPACT_STRINGS;
3738
import static java.lang.String.UTF16;
@@ -409,9 +410,7 @@ public int codePointAt(int index) {
409410
*/
410411
public int codePointBefore(int index) {
411412
int i = index - 1;
412-
if (i < 0 || i >= count) {
413-
throw new StringIndexOutOfBoundsException(index);
414-
}
413+
checkIndex(i, count);
415414
if (isLatin1()) {
416415
return value[i] & 0xff;
417416
}
@@ -505,9 +504,9 @@ public int offsetByCodePoints(int index, int codePointOffset) {
505504
*/
506505
public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
507506
{
508-
checkRangeSIOOBE(srcBegin, srcEnd, count); // compatible to old version
507+
Preconditions.checkFromToIndex(srcBegin, srcEnd, count, Preconditions.SIOOBE_FORMATTER); // compatible to old version
509508
int n = srcEnd - srcBegin;
510-
checkRange(dstBegin, dstBegin + n, dst.length);
509+
Preconditions.checkFromToIndex(dstBegin, dstBegin + n, dst.length, Preconditions.IOOBE_FORMATTER);
511510
if (isLatin1()) {
512511
StringLatin1.getChars(value, srcBegin, srcEnd, dst, dstBegin);
513512
} else {
@@ -677,7 +676,7 @@ public AbstractStringBuilder append(CharSequence s, int start, int end) {
677676
if (s == null) {
678677
s = "null";
679678
}
680-
checkRange(start, end, s.length());
679+
Preconditions.checkFromToIndex(start, end, s.length(), Preconditions.IOOBE_FORMATTER);
681680
int len = end - start;
682681
ensureCapacityInternal(count + len);
683682
if (s instanceof String) {
@@ -736,7 +735,7 @@ public AbstractStringBuilder append(char[] str) {
736735
*/
737736
public AbstractStringBuilder append(char[] str, int offset, int len) {
738737
int end = offset + len;
739-
checkRange(offset, end, str.length);
738+
Preconditions.checkFromToIndex(offset, end, str.length, Preconditions.IOOBE_FORMATTER);
740739
ensureCapacityInternal(count + len);
741740
appendChars(str, offset, end);
742741
return this;
@@ -914,7 +913,7 @@ public AbstractStringBuilder delete(int start, int end) {
914913
if (end > count) {
915914
end = count;
916915
}
917-
checkRangeSIOOBE(start, end, count);
916+
Preconditions.checkFromToIndex(start, end, count, Preconditions.SIOOBE_FORMATTER);
918917
int len = end - start;
919918
if (len > 0) {
920919
shift(end, -len);
@@ -997,7 +996,7 @@ public AbstractStringBuilder replace(int start, int end, String str) {
997996
if (end > count) {
998997
end = count;
999998
}
1000-
checkRangeSIOOBE(start, end, count);
999+
Preconditions.checkFromToIndex(start, end, count, Preconditions.SIOOBE_FORMATTER);
10011000
int len = str.length();
10021001
int newCount = count + len - (end - start);
10031002
ensureCapacityInternal(newCount);
@@ -1067,7 +1066,7 @@ public CharSequence subSequence(int start, int end) {
10671066
* greater than {@code end}.
10681067
*/
10691068
public String substring(int start, int end) {
1070-
checkRangeSIOOBE(start, end, count);
1069+
Preconditions.checkFromToIndex(start, end, count, Preconditions.SIOOBE_FORMATTER);
10711070
if (isLatin1()) {
10721071
return StringLatin1.newString(value, start, end - start);
10731072
}
@@ -1104,7 +1103,7 @@ public AbstractStringBuilder insert(int index, char[] str, int offset,
11041103
int len)
11051104
{
11061105
checkOffset(index, count);
1107-
checkRangeSIOOBE(offset, offset + len, str.length);
1106+
Preconditions.checkFromToIndex(offset, offset + len, str.length, Preconditions.SIOOBE_FORMATTER);
11081107
ensureCapacityInternal(count + len);
11091108
shift(index, len);
11101109
count += len;
@@ -1292,7 +1291,7 @@ public AbstractStringBuilder insert(int dstOffset, CharSequence s,
12921291
s = "null";
12931292
}
12941293
checkOffset(dstOffset, count);
1295-
checkRange(start, end, s.length());
1294+
Preconditions.checkFromToIndex(start, end, s.length(), Preconditions.IOOBE_FORMATTER);
12961295
int len = end - start;
12971296
ensureCapacityInternal(count + len);
12981297
shift(dstOffset, len);
@@ -1795,20 +1794,4 @@ private final void appendChars(CharSequence s, int off, int end) {
17951794
}
17961795
count += end - off;
17971796
}
1798-
1799-
/* IndexOutOfBoundsException, if out of bounds */
1800-
private static void checkRange(int start, int end, int len) {
1801-
if (start < 0 || start > end || end > len) {
1802-
throw new IndexOutOfBoundsException(
1803-
"start " + start + ", end " + end + ", length " + len);
1804-
}
1805-
}
1806-
1807-
/* StringIndexOutOfBoundsException, if out of bounds */
1808-
private static void checkRangeSIOOBE(int start, int end, int len) {
1809-
if (start < 0 || start > end || end > len) {
1810-
throw new StringIndexOutOfBoundsException(
1811-
"start " + start + ", end " + end + ", length " + len);
1812-
}
1813-
}
18141797
}

‎src/java.base/share/classes/java/lang/Character.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import java.util.HashMap;
3535
import java.util.Locale;
3636
import java.util.Map;
37+
import java.util.Objects;
3738
import java.util.Optional;
3839

3940
import static java.lang.constant.ConstantDescs.BSM_EXPLICIT_CAST;
@@ -9249,10 +9250,7 @@ static void toSurrogates(int codePoint, char[] dst, int index) {
92499250
* @since 1.5
92509251
*/
92519252
public static int codePointCount(CharSequence seq, int beginIndex, int endIndex) {
9252-
int length = seq.length();
9253-
if (beginIndex < 0 || endIndex > length || beginIndex > endIndex) {
9254-
throw new IndexOutOfBoundsException();
9255-
}
9253+
Objects.checkFromToIndex(beginIndex, endIndex, seq.length());
92569254
int n = endIndex - beginIndex;
92579255
for (int i = beginIndex; i < endIndex; ) {
92589256
if (isHighSurrogate(seq.charAt(i++)) && i < endIndex &&
@@ -9284,9 +9282,7 @@ public static int codePointCount(CharSequence seq, int beginIndex, int endIndex)
92849282
* @since 1.5
92859283
*/
92869284
public static int codePointCount(char[] a, int offset, int count) {
9287-
if (count > a.length - offset || offset < 0 || count < 0) {
9288-
throw new IndexOutOfBoundsException();
9289-
}
9285+
Objects.checkFromIndexSize(count, offset, a.length);
92909286
return codePointCountImpl(a, offset, count);
92919287
}
92929288

‎src/java.base/share/classes/java/lang/Integer.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -709,10 +709,8 @@ public static int parseInt(String s, int radix)
709709
public static int parseInt(CharSequence s, int beginIndex, int endIndex, int radix)
710710
throws NumberFormatException {
711711
Objects.requireNonNull(s);
712+
Objects.checkFromToIndex(beginIndex, endIndex, s.length());
712713

713-
if (beginIndex < 0 || beginIndex > endIndex || endIndex > s.length()) {
714-
throw new IndexOutOfBoundsException();
715-
}
716714
if (radix < Character.MIN_RADIX) {
717715
throw new NumberFormatException("radix " + radix +
718716
" less than Character.MIN_RADIX");
@@ -892,10 +890,8 @@ public static int parseUnsignedInt(String s, int radix)
892890
public static int parseUnsignedInt(CharSequence s, int beginIndex, int endIndex, int radix)
893891
throws NumberFormatException {
894892
Objects.requireNonNull(s);
893+
Objects.checkFromToIndex(beginIndex, endIndex, s.length());
895894

896-
if (beginIndex < 0 || beginIndex > endIndex || endIndex > s.length()) {
897-
throw new IndexOutOfBoundsException();
898-
}
899895
int start = beginIndex, len = endIndex - beginIndex;
900896

901897
if (len > 0) {

‎src/java.base/share/classes/java/lang/Long.java

+2-6
Original file line numberDiff line numberDiff line change
@@ -752,10 +752,8 @@ public static long parseLong(String s, int radix)
752752
public static long parseLong(CharSequence s, int beginIndex, int endIndex, int radix)
753753
throws NumberFormatException {
754754
Objects.requireNonNull(s);
755+
Objects.checkFromToIndex(beginIndex, endIndex, s.length());
755756

756-
if (beginIndex < 0 || beginIndex > endIndex || endIndex > s.length()) {
757-
throw new IndexOutOfBoundsException();
758-
}
759757
if (radix < Character.MIN_RADIX) {
760758
throw new NumberFormatException("radix " + radix +
761759
" less than Character.MIN_RADIX");
@@ -998,10 +996,8 @@ public static long parseUnsignedLong(String s, int radix)
998996
public static long parseUnsignedLong(CharSequence s, int beginIndex, int endIndex, int radix)
999997
throws NumberFormatException {
1000998
Objects.requireNonNull(s);
999+
Objects.checkFromToIndex(beginIndex, endIndex, s.length());
10011000

1002-
if (beginIndex < 0 || beginIndex > endIndex || endIndex > s.length()) {
1003-
throw new IndexOutOfBoundsException();
1004-
}
10051001
int start = beginIndex, len = endIndex - beginIndex;
10061002

10071003
if (len > 0) {

‎src/java.base/share/classes/java/lang/String.java

+7-23
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
import java.util.stream.Stream;
5252
import java.util.stream.StreamSupport;
5353

54+
import jdk.internal.util.Preconditions;
5455
import jdk.internal.vm.annotation.ForceInline;
5556
import jdk.internal.vm.annotation.IntrinsicCandidate;
5657
import jdk.internal.vm.annotation.Stable;
@@ -1571,9 +1572,7 @@ public int codePointAt(int index) {
15711572
*/
15721573
public int codePointBefore(int index) {
15731574
int i = index - 1;
1574-
if (i < 0 || i >= length()) {
1575-
throw new StringIndexOutOfBoundsException(index);
1576-
}
1575+
checkIndex(i, length());
15771576
if (isLatin1()) {
15781577
return (value[i] & 0xff);
15791578
}
@@ -1602,10 +1601,7 @@ public int codePointBefore(int index) {
16021601
* @since 1.5
16031602
*/
16041603
public int codePointCount(int beginIndex, int endIndex) {
1605-
if (beginIndex < 0 || beginIndex > endIndex ||
1606-
endIndex > length()) {
1607-
throw new IndexOutOfBoundsException();
1608-
}
1604+
Objects.checkFromToIndex(beginIndex, endIndex, length());
16091605
if (isLatin1()) {
16101606
return endIndex - beginIndex;
16111607
}
@@ -4556,21 +4552,15 @@ boolean isLatin1() {
45564552
* negative or greater than or equal to {@code length}.
45574553
*/
45584554
static void checkIndex(int index, int length) {
4559-
if (index < 0 || index >= length) {
4560-
throw new StringIndexOutOfBoundsException("index " + index +
4561-
", length " + length);
4562-
}
4555+
Preconditions.checkIndex(index, length, Preconditions.SIOOBE_FORMATTER);
45634556
}
45644557

45654558
/*
45664559
* StringIndexOutOfBoundsException if {@code offset}
45674560
* is negative or greater than {@code length}.
45684561
*/
45694562
static void checkOffset(int offset, int length) {
4570-
if (offset < 0 || offset > length) {
4571-
throw new StringIndexOutOfBoundsException("offset " + offset +
4572-
", length " + length);
4573-
}
4563+
Preconditions.checkFromToIndex(offset, length, length, Preconditions.SIOOBE_FORMATTER);
45744564
}
45754565

45764566
/*
@@ -4582,10 +4572,7 @@ static void checkOffset(int offset, int length) {
45824572
* or {@code offset} is greater than {@code length - count}
45834573
*/
45844574
static void checkBoundsOffCount(int offset, int count, int length) {
4585-
if (offset < 0 || count < 0 || offset > length - count) {
4586-
throw new StringIndexOutOfBoundsException(
4587-
"offset " + offset + ", count " + count + ", length " + length);
4588-
}
4575+
Preconditions.checkFromIndexSize(offset, count, length, Preconditions.SIOOBE_FORMATTER);
45894576
}
45904577

45914578
/*
@@ -4597,10 +4584,7 @@ static void checkBoundsOffCount(int offset, int count, int length) {
45974584
* {@code end}, or {@code end} is greater than {@code length}.
45984585
*/
45994586
static void checkBoundsBeginEnd(int begin, int end, int length) {
4600-
if (begin < 0 || begin > end || end > length) {
4601-
throw new StringIndexOutOfBoundsException(
4602-
"begin " + begin + ", end " + end + ", length " + length);
4603-
}
4587+
Preconditions.checkFromToIndex(begin, end, length, Preconditions.SIOOBE_FORMATTER);
46044588
}
46054589

46064590
/**

‎src/java.base/share/classes/java/lang/StringLatin1.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,13 @@
3939

4040
import static java.lang.String.LATIN1;
4141
import static java.lang.String.UTF16;
42+
import static java.lang.String.checkIndex;
4243
import static java.lang.String.checkOffset;
4344

4445
final class StringLatin1 {
4546

4647
public static char charAt(byte[] value, int index) {
47-
if (index < 0 || index >= value.length) {
48-
throw new StringIndexOutOfBoundsException(index);
49-
}
48+
checkIndex(index, value.length);
5049
return (char)(value[index] & 0xff);
5150
}
5251

‎src/java.base/share/classes/java/lang/constant/MethodTypeDescImpl.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import java.security.PrivilegedAction;
3131
import java.util.Arrays;
3232
import java.util.List;
33+
import java.util.Objects;
3334

3435
import static java.util.Objects.requireNonNull;
3536

@@ -113,8 +114,9 @@ public MethodTypeDesc changeParameterType(int index, ClassDesc paramType) {
113114

114115
@Override
115116
public MethodTypeDesc dropParameterTypes(int start, int end) {
116-
if (start < 0 || start >= argTypes.length || end < 0 || end > argTypes.length || start > end)
117-
throw new IndexOutOfBoundsException();
117+
Objects.checkIndex(start, argTypes.length);
118+
Objects.checkFromToIndex(start, end, argTypes.length);
119+
118120
ClassDesc[] newArgs = new ClassDesc[argTypes.length - (end - start)];
119121
System.arraycopy(argTypes, 0, newArgs, 0, start);
120122
System.arraycopy(argTypes, end, newArgs, start, argTypes.length - end);

‎src/java.base/share/classes/java/lang/invoke/AbstractConstantGroup.java

+8-11
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
import java.util.*;
2929
import jdk.internal.vm.annotation.Stable;
3030

31-
import static java.lang.invoke.MethodHandleStatics.rangeCheck1;
32-
import static java.lang.invoke.MethodHandleStatics.rangeCheck2;
33-
3431
/** Utility class for implementing ConstantGroup. */
3532
/*non-public*/
3633
abstract class AbstractConstantGroup implements ConstantGroup {
@@ -119,11 +116,11 @@ static class SubGroup extends AbstractConstantGroup {
119116
super(end - start);
120117
this.self = self;
121118
this.offset = start;
122-
rangeCheck2(start, end, size);
119+
Objects.checkFromToIndex(start, end, size);
123120
}
124121

125122
private int mapIndex(int index) {
126-
return rangeCheck1(index, size) + offset;
123+
return Objects.checkIndex(index, size) + offset;
127124
}
128125

129126
@Override
@@ -143,7 +140,7 @@ public boolean isPresent(int index) {
143140

144141
@Override
145142
public ConstantGroup subGroup(int start, int end) {
146-
rangeCheck2(start, end, size);
143+
Objects.checkFromToIndex(start, end, size);
147144
return new SubGroup(self, offset + start, offset + end);
148145
}
149146

@@ -160,7 +157,7 @@ public List<Object> asList(Object ifNotPresent) {
160157
@Override
161158
public int copyConstants(int start, int end,
162159
Object[] buf, int pos) throws LinkageError {
163-
rangeCheck2(start, end, size);
160+
Objects.checkFromToIndex(start, end, size);
164161
return self.copyConstants(offset + start, offset + end,
165162
buf, pos);
166163
}
@@ -169,7 +166,7 @@ public int copyConstants(int start, int end,
169166
public int copyConstants(int start, int end,
170167
Object[] buf, int pos,
171168
Object ifNotPresent) {
172-
rangeCheck2(start, end, size);
169+
Objects.checkFromToIndex(start, end, size);
173170
return self.copyConstants(offset + start, offset + end,
174171
buf, pos, ifNotPresent);
175172
}
@@ -189,7 +186,7 @@ private AsList(ConstantGroup self, int start, int end,
189186
this.offset = start;
190187
this.resolving = resolving;
191188
this.ifNotPresent = ifNotPresent;
192-
rangeCheck2(start, end, self.size());
189+
Objects.checkFromToIndex(start, end, self.size());
193190
}
194191
AsList(ConstantGroup self, int start, int end) {
195192
this(self, start, end, true, null);
@@ -200,7 +197,7 @@ private AsList(ConstantGroup self, int start, int end,
200197
}
201198

202199
private int mapIndex(int index) {
203-
return rangeCheck1(index, size) + offset;
200+
return Objects.checkIndex(index, size) + offset;
204201
}
205202

206203
@Override public final int size() {
@@ -223,7 +220,7 @@ public Iterator<Object> iterator() {
223220
}
224221

225222
@Override public List<Object> subList(int start, int end) {
226-
rangeCheck2(start, end, size);
223+
Objects.checkFromToIndex(start, end, size);
227224
return new AsList(self, offset + start, offset + end,
228225
resolving, ifNotPresent);
229226
}

‎src/java.base/share/classes/java/lang/invoke/MethodHandleStatics.java

-11
Original file line numberDiff line numberDiff line change
@@ -189,15 +189,4 @@ private static String message(String message, Object obj, Object obj2) {
189189
if (obj != null || obj2 != null) message = message + ": " + obj + ", " + obj2;
190190
return message;
191191
}
192-
/*non-public*/
193-
static void rangeCheck2(int start, int end, int size) {
194-
if (0 > start || start > end || end > size)
195-
throw new IndexOutOfBoundsException(start+".."+end);
196-
}
197-
/*non-public*/
198-
static int rangeCheck1(int index, int size) {
199-
if (0 > index || index >= size)
200-
throw new IndexOutOfBoundsException(index);
201-
return index;
202-
}
203192
}

‎src/java.base/share/classes/java/lang/invoke/VarHandle.java

-9
Original file line numberDiff line numberDiff line change
@@ -2179,15 +2179,6 @@ final void updateVarForm(VarForm newVForm) {
21792179
UNSAFE.fullFence();
21802180
}
21812181

2182-
static final BiFunction<String, List<Number>, ArrayIndexOutOfBoundsException>
2183-
AIOOBE_SUPPLIER = Preconditions.outOfBoundsExceptionFormatter(
2184-
new Function<String, ArrayIndexOutOfBoundsException>() {
2185-
@Override
2186-
public ArrayIndexOutOfBoundsException apply(String s) {
2187-
return new ArrayIndexOutOfBoundsException(s);
2188-
}
2189-
});
2190-
21912182
private static final long VFORM_OFFSET;
21922183

21932184
static {

‎src/java.base/share/classes/java/lang/invoke/X-VarHandle.java.template

+29-29
Large diffs are not rendered by default.

‎src/java.base/share/classes/java/lang/invoke/X-VarHandleByteArrayView.java.template

+1-4
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,9 @@ final class VarHandleByteArrayAs$Type$s extends VarHandleByteArrayBase {
109109
return at.accessModeType(byte[].class, $type$.class, int.class);
110110
}
111111

112-
private static final BiFunction<String, List<Number>, ArrayIndexOutOfBoundsException>
113-
OOBEF = Preconditions.outOfBoundsExceptionFormatter(ArrayIndexOutOfBoundsException::new);
114-
115112
@ForceInline
116113
static int index(byte[] ba, int index) {
117-
return Preconditions.checkIndex(index, ba.length - ALIGN, OOBEF);
114+
return Preconditions.checkIndex(index, ba.length - ALIGN, Preconditions.AIOOBE_FORMATTER);
118115
}
119116

120117
@ForceInline

‎src/java.base/share/classes/java/util/Base64.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
import java.nio.ByteBuffer;
3333

3434
import sun.nio.cs.ISO_8859_1;
35-
35+
import jdk.internal.util.Preconditions;
3636
import jdk.internal.vm.annotation.IntrinsicCandidate;
3737

3838
/**
@@ -932,8 +932,7 @@ private void writeb4(char b1, char b2, char b3, char b4) throws IOException {
932932
public void write(byte[] b, int off, int len) throws IOException {
933933
if (closed)
934934
throw new IOException("Stream is closed");
935-
if (off < 0 || len < 0 || len > b.length - off)
936-
throw new ArrayIndexOutOfBoundsException();
935+
Preconditions.checkFromIndexSize(len, off, b.length, Preconditions.AIOOBE_FORMATTER);
937936
if (len == 0)
938937
return;
939938
if (leftover != 0) {

‎src/java.base/share/classes/java/util/Collections.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -5178,9 +5178,7 @@ public int lastIndexOf(Object o) {
51785178
}
51795179

51805180
public E get(int index) {
5181-
if (index < 0 || index >= n)
5182-
throw new IndexOutOfBoundsException("Index: "+index+
5183-
", Size: "+n);
5181+
Objects.checkIndex(index, n);
51845182
return element;
51855183
}
51865184

‎src/java.base/share/classes/java/util/zip/Adler32.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
import java.lang.ref.Reference;
2929
import java.nio.ByteBuffer;
3030
import sun.nio.ch.DirectBuffer;
31-
31+
import jdk.internal.util.Preconditions;
3232
import jdk.internal.vm.annotation.IntrinsicCandidate;
3333

3434
/**
@@ -74,9 +74,7 @@ public void update(byte[] b, int off, int len) {
7474
if (b == null) {
7575
throw new NullPointerException();
7676
}
77-
if (off < 0 || len < 0 || off > b.length - len) {
78-
throw new ArrayIndexOutOfBoundsException();
79-
}
77+
Preconditions.checkFromIndexSize(len, off, b.length, Preconditions.AIOOBE_FORMATTER);
8078
adler = updateBytes(adler, b, off, len);
8179
}
8280

‎src/java.base/share/classes/java/util/zip/CRC32.java

+4-12
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import java.util.Objects;
3131

3232
import sun.nio.ch.DirectBuffer;
33+
import jdk.internal.util.Preconditions;
3334
import jdk.internal.vm.annotation.IntrinsicCandidate;
3435

3536
/**
@@ -73,9 +74,7 @@ public void update(byte[] b, int off, int len) {
7374
if (b == null) {
7475
throw new NullPointerException();
7576
}
76-
if (off < 0 || len < 0 || off > b.length - len) {
77-
throw new ArrayIndexOutOfBoundsException();
78-
}
77+
Preconditions.checkFromIndexSize(len, off, b.length, Preconditions.AIOOBE_FORMATTER);
7978
crc = updateBytes(crc, b, off, len);
8079
}
8180

@@ -148,15 +147,8 @@ private static void updateBytesCheck(byte[] b, int off, int len) {
148147
}
149148

150149
Objects.requireNonNull(b);
151-
152-
if (off < 0 || off >= b.length) {
153-
throw new ArrayIndexOutOfBoundsException(off);
154-
}
155-
156-
int endIndex = off + len - 1;
157-
if (endIndex < 0 || endIndex >= b.length) {
158-
throw new ArrayIndexOutOfBoundsException(endIndex);
159-
}
150+
Preconditions.checkIndex(off, b.length, Preconditions.AIOOBE_FORMATTER);
151+
Preconditions.checkIndex(off + len - 1, b.length, Preconditions.AIOOBE_FORMATTER);
160152
}
161153

162154
private static int updateByteBuffer(int alder, long addr,

‎src/java.base/share/classes/java/util/zip/CRC32C.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.nio.ByteOrder;
3030

3131
import jdk.internal.misc.Unsafe;
32+
import jdk.internal.util.Preconditions;
3233
import jdk.internal.vm.annotation.IntrinsicCandidate;
3334
import sun.nio.ch.DirectBuffer;
3435

@@ -148,9 +149,7 @@ public void update(byte[] b, int off, int len) {
148149
if (b == null) {
149150
throw new NullPointerException();
150151
}
151-
if (off < 0 || len < 0 || off > b.length - len) {
152-
throw new ArrayIndexOutOfBoundsException();
153-
}
152+
Preconditions.checkFromIndexSize(len, off, b.length, Preconditions.AIOOBE_FORMATTER);
154153
crc = updateBytes(crc, b, off, (off + len));
155154
}
156155

‎src/java.base/share/classes/java/util/zip/Deflater.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import java.util.Objects;
3333

3434
import jdk.internal.ref.CleanerFactory;
35+
import jdk.internal.util.Preconditions;
3536
import sun.nio.ch.DirectBuffer;
3637

3738
/**
@@ -230,9 +231,7 @@ public Deflater() {
230231
* @see Deflater#needsInput
231232
*/
232233
public void setInput(byte[] input, int off, int len) {
233-
if (off < 0 || len < 0 || off > input.length - len) {
234-
throw new ArrayIndexOutOfBoundsException();
235-
}
234+
Preconditions.checkFromIndexSize(len, off, input.length, Preconditions.AIOOBE_FORMATTER);
236235
synchronized (zsRef) {
237236
this.input = null;
238237
this.inputArray = input;
@@ -297,9 +296,7 @@ public void setInput(ByteBuffer input) {
297296
* @see Inflater#getAdler
298297
*/
299298
public void setDictionary(byte[] dictionary, int off, int len) {
300-
if (off < 0 || len < 0 || off > dictionary.length - len) {
301-
throw new ArrayIndexOutOfBoundsException();
302-
}
299+
Preconditions.checkFromIndexSize(len, off, dictionary.length, Preconditions.AIOOBE_FORMATTER);
303300
synchronized (zsRef) {
304301
ensureOpen();
305302
setDictionary(zsRef.address(), dictionary, off, len);
@@ -556,9 +553,7 @@ public int deflate(ByteBuffer output) {
556553
* @since 1.7
557554
*/
558555
public int deflate(byte[] output, int off, int len, int flush) {
559-
if (off < 0 || len < 0 || off > output.length - len) {
560-
throw new ArrayIndexOutOfBoundsException();
561-
}
556+
Preconditions.checkFromIndexSize(len, off, output.length, Preconditions.AIOOBE_FORMATTER);
562557
if (flush != NO_FLUSH && flush != SYNC_FLUSH && flush != FULL_FLUSH) {
563558
throw new IllegalArgumentException();
564559
}

‎src/java.base/share/classes/java/util/zip/Inflater.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import java.util.Objects;
3333

3434
import jdk.internal.ref.CleanerFactory;
35+
import jdk.internal.util.Preconditions;
3536
import sun.nio.ch.DirectBuffer;
3637

3738
/**
@@ -151,9 +152,7 @@ public Inflater() {
151152
* @see Inflater#needsInput
152153
*/
153154
public void setInput(byte[] input, int off, int len) {
154-
if (off < 0 || len < 0 || off > input.length - len) {
155-
throw new ArrayIndexOutOfBoundsException();
156-
}
155+
Preconditions.checkFromIndexSize(len, off, input.length, Preconditions.AIOOBE_FORMATTER);
157156
synchronized (zsRef) {
158157
this.input = null;
159158
this.inputArray = input;
@@ -218,9 +217,7 @@ public void setInput(ByteBuffer input) {
218217
* @see Inflater#getAdler
219218
*/
220219
public void setDictionary(byte[] dictionary, int off, int len) {
221-
if (off < 0 || len < 0 || off > dictionary.length - len) {
222-
throw new ArrayIndexOutOfBoundsException();
223-
}
220+
Preconditions.checkFromIndexSize(len, off, dictionary.length, Preconditions.AIOOBE_FORMATTER);
224221
synchronized (zsRef) {
225222
ensureOpen();
226223
setDictionary(zsRef.address(), dictionary, off, len);
@@ -363,9 +360,7 @@ public boolean finished() {
363360
public int inflate(byte[] output, int off, int len)
364361
throws DataFormatException
365362
{
366-
if (off < 0 || len < 0 || off > output.length - len) {
367-
throw new ArrayIndexOutOfBoundsException();
368-
}
363+
Preconditions.checkFromIndexSize(len, off, output.length, Preconditions.AIOOBE_FORMATTER);
369364
synchronized (zsRef) {
370365
ensureOpen();
371366
ByteBuffer input = this.input;

‎src/java.base/share/classes/jdk/internal/util/Preconditions.java

+36
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,42 @@
3636
*/
3737
public class Preconditions {
3838

39+
/**
40+
* Utility exception formatters which can be used in {@code Preconditions}
41+
* check functions below.
42+
*
43+
* These anonymous inner classes can be syntactically replaced by lambda
44+
* expression or method reference, but it's not feasible in practices,
45+
* because {@code Preconditions} is used in many fundamental classes such
46+
* as {@code java.lang.String}, lambda expressions or method references
47+
* exercise many other code at VM startup, this could lead a recursive
48+
* calls when fundamental classes is used in lambda expressions or method
49+
* references.
50+
*/
51+
public static final BiFunction<String, List<Number>, StringIndexOutOfBoundsException>
52+
SIOOBE_FORMATTER = Preconditions.outOfBoundsExceptionFormatter(new Function<>() {
53+
@Override
54+
public StringIndexOutOfBoundsException apply(String s) {
55+
return new StringIndexOutOfBoundsException(s);
56+
}
57+
});
58+
59+
public static final BiFunction<String, List<Number>, ArrayIndexOutOfBoundsException>
60+
AIOOBE_FORMATTER = Preconditions.outOfBoundsExceptionFormatter(new Function<>() {
61+
@Override
62+
public ArrayIndexOutOfBoundsException apply(String s) {
63+
return new ArrayIndexOutOfBoundsException(s);
64+
}
65+
});
66+
67+
public static final BiFunction<String,List<Number>, IndexOutOfBoundsException>
68+
IOOBE_FORMATTER = Preconditions.outOfBoundsExceptionFormatter(new Function<>() {
69+
@Override
70+
public IndexOutOfBoundsException apply(String s) {
71+
return new IndexOutOfBoundsException(s);
72+
}
73+
});
74+
3975
/**
4076
* Maps out-of-bounds values to a runtime exception.
4177
*

‎src/java.base/share/classes/sun/nio/ch/AsynchronousSocketChannelImpl.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import java.io.FileDescriptor;
3636
import java.util.Set;
3737
import java.util.HashSet;
38+
import java.util.Objects;
3839
import java.util.Collections;
3940
import java.util.concurrent.*;
4041
import java.util.concurrent.locks.*;
@@ -308,8 +309,7 @@ public final <A> void read(ByteBuffer[] dsts,
308309
{
309310
if (handler == null)
310311
throw new NullPointerException("'handler' is null");
311-
if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
312-
throw new IndexOutOfBoundsException();
312+
Objects.checkFromIndexSize(offset, length, dsts.length);
313313
ByteBuffer[] bufs = Util.subsequence(dsts, offset, length);
314314
for (int i=0; i<bufs.length; i++) {
315315
if (bufs[i].isReadOnly())
@@ -410,8 +410,7 @@ public final <A> void write(ByteBuffer[] srcs,
410410
{
411411
if (handler == null)
412412
throw new NullPointerException("'handler' is null");
413-
if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
414-
throw new IndexOutOfBoundsException();
413+
Objects.checkFromIndexSize(offset, length, srcs.length);
415414
srcs = Util.subsequence(srcs, offset, length);
416415
write(true, null, srcs, timeout, unit, attachment, handler);
417416
}

‎src/java.base/share/classes/sun/nio/cs/ISO_8859_1.java

+5-17
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
import jdk.internal.access.JavaLangAccess;
3737
import jdk.internal.access.SharedSecrets;
38+
import jdk.internal.util.Preconditions;
3839
import jdk.internal.vm.annotation.IntrinsicCandidate;
3940

4041
public class ISO_8859_1
@@ -169,24 +170,11 @@ private static void encodeISOArrayCheck(char[] sa, int sp,
169170
byte[] da, int dp, int len) {
170171
Objects.requireNonNull(sa);
171172
Objects.requireNonNull(da);
173+
Preconditions.checkIndex(sp, sa.length, Preconditions.AIOOBE_FORMATTER);
174+
Preconditions.checkIndex(dp, da.length, Preconditions.AIOOBE_FORMATTER);
172175

173-
if (sp < 0 || sp >= sa.length) {
174-
throw new ArrayIndexOutOfBoundsException(sp);
175-
}
176-
177-
if (dp < 0 || dp >= da.length) {
178-
throw new ArrayIndexOutOfBoundsException(dp);
179-
}
180-
181-
int endIndexSP = sp + len - 1;
182-
if (endIndexSP < 0 || endIndexSP >= sa.length) {
183-
throw new ArrayIndexOutOfBoundsException(endIndexSP);
184-
}
185-
186-
int endIndexDP = dp + len - 1;
187-
if (endIndexDP < 0 || endIndexDP >= da.length) {
188-
throw new ArrayIndexOutOfBoundsException(endIndexDP);
189-
}
176+
Preconditions.checkIndex(sp + len - 1, sa.length, Preconditions.AIOOBE_FORMATTER);
177+
Preconditions.checkIndex(dp + len - 1, da.length, Preconditions.AIOOBE_FORMATTER);
190178
}
191179

192180
private CoderResult encodeArrayLoop(CharBuffer src,

‎src/java.base/share/classes/sun/security/provider/DigestBase.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import java.util.Arrays;
3232
import java.util.Objects;
3333

34+
import jdk.internal.util.Preconditions;
3435
import jdk.internal.vm.annotation.IntrinsicCandidate;
3536

3637
/**
@@ -105,9 +106,7 @@ protected final void engineUpdate(byte[] b, int ofs, int len) {
105106
if (len == 0) {
106107
return;
107108
}
108-
if ((ofs < 0) || (len < 0) || (ofs > b.length - len)) {
109-
throw new ArrayIndexOutOfBoundsException();
110-
}
109+
Preconditions.checkFromIndexSize(ofs, len, b.length, Preconditions.AIOOBE_FORMATTER);
111110
if (bytesProcessed < 0) {
112111
engineReset();
113112
}
@@ -159,10 +158,7 @@ private void implCompressMultiBlockCheck(byte[] b, int ofs, int limit) {
159158
}
160159

161160
Objects.requireNonNull(b);
162-
163-
if (ofs < 0 || ofs >= b.length) {
164-
throw new ArrayIndexOutOfBoundsException(ofs);
165-
}
161+
Preconditions.checkIndex(ofs, b.length, Preconditions.AIOOBE_FORMATTER);
166162

167163
int endIndex = (limit / blockSize) * blockSize + blockSize - 1;
168164
if (endIndex >= b.length) {

‎src/java.base/share/classes/sun/security/provider/MD5.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
import java.util.Objects;
3333

3434
import static sun.security.provider.ByteArrayAccess.*;
35+
36+
import jdk.internal.util.Preconditions;
3537
import jdk.internal.vm.annotation.IntrinsicCandidate;
3638

3739
/**
@@ -152,9 +154,7 @@ private void implCompressCheck(byte[] buf, int ofs) {
152154
// These checks are sufficient for the case when the method
153155
// 'implCompressImpl' is replaced with a compiler
154156
// intrinsic.
155-
if ((ofs < 0) || ((buf.length - ofs) < 64)) {
156-
throw new ArrayIndexOutOfBoundsException();
157-
}
157+
Preconditions.checkFromIndexSize(ofs, 64, buf.length, Preconditions.AIOOBE_FORMATTER);
158158
}
159159

160160
// The method 'implCompress0 seems not to use its parameters.

‎src/java.base/share/classes/sun/security/provider/SHA.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
import java.util.Objects;
3030

3131
import static sun.security.provider.ByteArrayAccess.*;
32+
33+
import jdk.internal.util.Preconditions;
3234
import jdk.internal.vm.annotation.IntrinsicCandidate;
3335

3436
/**
@@ -136,9 +138,7 @@ private void implCompressCheck(byte[] buf, int ofs) {
136138
// Checks similar to those performed by the method 'b2iBig64'
137139
// are sufficient for the case when the method 'implCompress0' is
138140
// replaced with a compiler intrinsic.
139-
if (ofs < 0 || (buf.length - ofs) < 64) {
140-
throw new ArrayIndexOutOfBoundsException();
141-
}
141+
Preconditions.checkFromIndexSize(ofs, 64, buf.length, Preconditions.AIOOBE_FORMATTER);
142142
}
143143

144144
// The method 'implCompress0 seems not to use its parameters.

‎src/java.base/share/classes/sun/security/provider/SHA2.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.util.Arrays;
2929
import java.util.Objects;
3030

31+
import jdk.internal.util.Preconditions;
3132
import jdk.internal.vm.annotation.IntrinsicCandidate;
3233
import static sun.security.provider.ByteArrayAccess.*;
3334

@@ -128,9 +129,7 @@ private void implCompressCheck(byte[] buf, int ofs) {
128129
// Checks similar to those performed by the method 'b2iBig64'
129130
// are sufficient for the case when the method 'implCompress0' is
130131
// replaced with a compiler intrinsic.
131-
if (ofs < 0 || (buf.length - ofs) < 64) {
132-
throw new ArrayIndexOutOfBoundsException();
133-
}
132+
Preconditions.checkFromIndexSize(ofs, 64, buf.length, Preconditions.AIOOBE_FORMATTER);
134133
}
135134

136135
// The method 'implCompressImpl' seems not to use its parameters.

‎src/java.base/share/classes/sun/security/provider/SHA5.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.util.Arrays;
2929
import java.util.Objects;
3030

31+
import jdk.internal.util.Preconditions;
3132
import jdk.internal.vm.annotation.IntrinsicCandidate;
3233
import static sun.security.provider.ByteArrayAccess.*;
3334

@@ -229,9 +230,7 @@ private void implCompressCheck(byte[] buf, int ofs) {
229230
// Checks similar to those performed by the method 'b2lBig128'
230231
// are sufficient for the case when the method 'implCompress0' is
231232
// replaced with a compiler intrinsic.
232-
if (ofs < 0 || (buf.length - ofs) < 128) {
233-
throw new ArrayIndexOutOfBoundsException();
234-
}
233+
Preconditions.checkFromIndexSize(ofs, 128, buf.length, Preconditions.AIOOBE_FORMATTER);
235234
}
236235

237236
// The method 'implCompressImpl' seems not to use its parameters.

‎src/java.base/share/classes/sun/security/util/ArrayUtil.java

+1-6
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,6 @@
3737

3838
public final class ArrayUtil {
3939

40-
private static final BiFunction<String, List<Number>,
41-
ArrayIndexOutOfBoundsException> AIOOBE_SUPPLIER =
42-
Preconditions.outOfBoundsExceptionFormatter
43-
(ArrayIndexOutOfBoundsException::new);
44-
4540
public static void blockSizeCheck(int len, int blockSize) {
4641
if ((len % blockSize) != 0) {
4742
throw new ProviderException("Internal error in input buffering");
@@ -50,7 +45,7 @@ public static void blockSizeCheck(int len, int blockSize) {
5045

5146
public static void nullAndBoundsCheck(byte[] array, int offset, int len) {
5247
// NPE is thrown when array is null
53-
Preconditions.checkFromIndexSize(offset, len, array.length, AIOOBE_SUPPLIER);
48+
Preconditions.checkFromIndexSize(offset, len, array.length, Preconditions.AIOOBE_FORMATTER);
5449
}
5550

5651
private static void swap(byte[] arr, int i, int j) {

‎src/java.base/share/classes/sun/security/util/BitArray.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
import java.io.ByteArrayOutputStream;
2929
import java.util.Arrays;
3030

31+
import jdk.internal.util.Preconditions;
32+
3133
/**
3234
* A packed array of booleans.
3335
*
@@ -125,9 +127,7 @@ private BitArray(BitArray ba) {
125127
* Returns the indexed bit in this BitArray.
126128
*/
127129
public boolean get(int index) throws ArrayIndexOutOfBoundsException {
128-
if (index < 0 || index >= length) {
129-
throw new ArrayIndexOutOfBoundsException(Integer.toString(index));
130-
}
130+
Preconditions.checkIndex(index, length, Preconditions.AIOOBE_FORMATTER);
131131

132132
return (repn[subscript(index)] & position(index)) != 0;
133133
}
@@ -137,9 +137,7 @@ public boolean get(int index) throws ArrayIndexOutOfBoundsException {
137137
*/
138138
public void set(int index, boolean value)
139139
throws ArrayIndexOutOfBoundsException {
140-
if (index < 0 || index >= length) {
141-
throw new ArrayIndexOutOfBoundsException(Integer.toString(index));
142-
}
140+
Preconditions.checkIndex(index, length, Preconditions.AIOOBE_FORMATTER);
143141
int idx = subscript(index);
144142
int bit = position(index);
145143

‎src/java.base/windows/classes/sun/nio/ch/SinkChannelImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
import java.nio.ByteBuffer;
3535
import java.nio.channels.*;
3636
import java.nio.channels.spi.*;
37+
import java.util.Objects;
3738

3839

3940
/**
@@ -139,8 +140,7 @@ public long write(ByteBuffer[] srcs) throws IOException {
139140
public long write(ByteBuffer[] srcs, int offset, int length)
140141
throws IOException
141142
{
142-
if ((offset < 0) || (length < 0) || (offset > srcs.length - length))
143-
throw new IndexOutOfBoundsException();
143+
Objects.checkFromIndexSize(offset, length, srcs.length);
144144
try {
145145
return write(Util.subsequence(srcs, offset, length));
146146
} catch (AsynchronousCloseException x) {

‎src/java.base/windows/classes/sun/nio/ch/SourceChannelImpl.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
import java.nio.ByteBuffer;
3434
import java.nio.channels.*;
3535
import java.nio.channels.spi.*;
36+
import java.util.Objects;
3637

3738
/**
3839
* Pipe.SourceChannel implementation based on socket connection.
@@ -120,8 +121,7 @@ public int read(ByteBuffer dst) throws IOException {
120121
public long read(ByteBuffer[] dsts, int offset, int length)
121122
throws IOException
122123
{
123-
if ((offset < 0) || (length < 0) || (offset > dsts.length - length))
124-
throw new IndexOutOfBoundsException();
124+
Objects.checkFromIndexSize(offset, length, dsts.length);
125125
try {
126126
return read(Util.subsequence(dsts, offset, length));
127127
} catch (AsynchronousCloseException x) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/CommandProcessor.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
import java.util.HashMap;
4040
import java.util.HashSet;
4141
import java.util.Iterator;
42+
import java.util.Objects;
4243
import java.util.Stack;
4344
import java.util.regex.Matcher;
4445
import java.util.regex.Pattern;
@@ -236,9 +237,7 @@ String join(String sep) {
236237
}
237238

238239
String at(int i) {
239-
if (i < 0 || i >= length) {
240-
throw new IndexOutOfBoundsException(String.valueOf(i));
241-
}
240+
Objects.checkIndex(i, length);
242241
return tokens[i];
243242
}
244243
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/win32/coff/COFFFileParser.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ class DebugDirectoryImpl implements DebugDirectory {
753753

754754
public int getNumEntries() { return numEntries; }
755755
public DebugDirectoryEntry getEntry(int i) {
756-
if ((i < 0) || (i >= getNumEntries())) throw new IndexOutOfBoundsException();
756+
Objects.checkIndex(i, getNumEntries());
757757
return new DebugDirectoryEntryImpl(offset + i * DEBUG_DIRECTORY_ENTRY_SIZE);
758758
}
759759
}
@@ -809,9 +809,7 @@ public DebugVC50 getDebugVC50() {
809809
}
810810

811811
public byte getRawDataByte(int i) {
812-
if (i < 0 || i >= getSizeOfData()) {
813-
throw new IndexOutOfBoundsException();
814-
}
812+
Objects.checkIndex(i, getSizeOfData());
815813
seek(getPointerToRawData() + i);
816814
return readByte();
817815
}

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/ConstantPoolCache.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public long getSize() {
7979
}
8080

8181
public ConstantPoolCacheEntry getEntryAt(int i) {
82-
if (i < 0 || i >= getLength()) throw new IndexOutOfBoundsException(i + " " + getLength());
82+
Objects.checkIndex(i, getLength());
8383
return new ConstantPoolCacheEntry(this, i);
8484
}
8585

‎src/jdk.httpserver/share/classes/sun/net/httpserver/Request.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
import java.nio.*;
2929
import java.io.*;
3030
import java.nio.channels.*;
31+
import java.util.Objects;
32+
3133
import com.sun.net.httpserver.*;
3234

3335
/**
@@ -265,9 +267,7 @@ public synchronized int read (byte[] b, int off, int srclen) throws IOException
265267

266268
assert channel.isBlocking();
267269

268-
if (off < 0 || srclen < 0|| srclen > (b.length-off)) {
269-
throw new IndexOutOfBoundsException ();
270-
}
270+
Objects.checkFromIndexSize(srclen, off, b.length);
271271

272272
if (reset) { /* satisfy from markBuf */
273273
canreturn = markBuf.remaining ();

‎src/jdk.internal.vm.ci/share/classes/jdk.vm.ci.code/src/jdk/vm/ci/code/BytecodeFrame.java

+6-15
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
package jdk.vm.ci.code;
2424

2525
import java.util.Arrays;
26+
import java.util.Objects;
2627

2728
import jdk.vm.ci.meta.JavaKind;
2829
import jdk.vm.ci.meta.JavaValue;
@@ -233,9 +234,7 @@ public boolean validateFormat() {
233234
* @throw {@link IndexOutOfBoundsException} if {@code i < 0 || i >= this.numLocals}
234235
*/
235236
public JavaKind getLocalValueKind(int i) {
236-
if (i < 0 || i >= numLocals) {
237-
throw new IndexOutOfBoundsException();
238-
}
237+
Objects.checkIndex(i, numLocals);
239238
return slotKinds[i];
240239
}
241240

@@ -247,9 +246,7 @@ public JavaKind getLocalValueKind(int i) {
247246
* @throw {@link IndexOutOfBoundsException} if {@code i < 0 || i >= this.numStack}
248247
*/
249248
public JavaKind getStackValueKind(int i) {
250-
if (i < 0 || i >= numStack) {
251-
throw new IndexOutOfBoundsException();
252-
}
249+
Objects.checkIndex(i, numStack);
253250
return slotKinds[i + numLocals];
254251
}
255252

@@ -261,9 +258,7 @@ public JavaKind getStackValueKind(int i) {
261258
* @throw {@link IndexOutOfBoundsException} if {@code i < 0 || i >= this.numLocals}
262259
*/
263260
public JavaValue getLocalValue(int i) {
264-
if (i < 0 || i >= numLocals) {
265-
throw new IndexOutOfBoundsException();
266-
}
261+
Objects.checkIndex(i, numLocals);
267262
return values[i];
268263
}
269264

@@ -275,9 +270,7 @@ public JavaValue getLocalValue(int i) {
275270
* @throw {@link IndexOutOfBoundsException} if {@code i < 0 || i >= this.numStack}
276271
*/
277272
public JavaValue getStackValue(int i) {
278-
if (i < 0 || i >= numStack) {
279-
throw new IndexOutOfBoundsException();
280-
}
273+
Objects.checkIndex(i, numStack);
281274
return values[i + numLocals];
282275
}
283276

@@ -289,9 +282,7 @@ public JavaValue getStackValue(int i) {
289282
* @throw {@link IndexOutOfBoundsException} if {@code i < 0 || i >= this.numLocks}
290283
*/
291284
public JavaValue getLockValue(int i) {
292-
if (i < 0 || i >= numLocks) {
293-
throw new IndexOutOfBoundsException();
294-
}
285+
Objects.checkIndex(i, numLocks);
295286
return values[i + numLocals + numStack];
296287
}
297288

‎test/jdk/java/lang/StringBuffer/Exceptions.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public class Exceptions {
3131
private static boolean ok = true;
3232

33-
private static void fail(Throwable ex, String s, Throwable got) {
33+
private static void fail(Throwable ex, String s, Throwable got) {
3434
ok = false;
3535
System.err.println("expected "
3636
+ ex.getClass().getName() + ": " + ex.getMessage()
@@ -49,7 +49,6 @@ private static void tryCatch(String s, Throwable ex, Runnable thunk) {
4949
try {
5050
thunk.run();
5151
} catch (Throwable x) {
52-
// x.printStackTrace();
5352
if (ex.getClass().isAssignableFrom(x.getClass()))
5453
t = x;
5554
else
@@ -94,31 +93,32 @@ public void run() {
9493

9594
System.out.println("StringBuffer.replace(int start, int end, String str)");
9695
tryCatch(" -1, 2, \" \"",
97-
new StringIndexOutOfBoundsException("start -1, end 2, length 7"),
96+
new StringIndexOutOfBoundsException("Range [-1, 2) out of bounds for length 7"),
9897
new Runnable() {
9998
public void run() {
10099
StringBuffer sb = new StringBuffer("hilbert");
101100
sb.replace(-1, 2, " ");
102101
}});
103102

104103
tryCatch(" 7, 8, \" \"",
105-
new StringIndexOutOfBoundsException("start 7, end 6, length 6"),
104+
new StringIndexOutOfBoundsException("Range [7, 6) out of bounds for length 6"),
106105
new Runnable() {
107106
public void run() {
108107
StringBuffer sb = new StringBuffer("banach");
109108
sb.replace(7, 8, " ");
110109
}});
111110
tryCatch(" 2, 1, \" \"",
112-
new StringIndexOutOfBoundsException("start 2, end 1, length 7"),
111+
new StringIndexOutOfBoundsException("Range [2, 1) out of bounds for length 7"),
113112
new Runnable() {
114113
public void run() {
115114
StringBuffer sb = new StringBuffer("riemann");
116115
sb.replace(2, 1, " ");
117116
}});
118117

119-
if (!ok)
118+
if (!ok) {
120119
throw new RuntimeException("Some tests FAILED");
121-
else
120+
} else {
122121
System.out.println("All tests PASSED");
122+
}
123123
}
124124
}

‎test/jdk/java/lang/StringBuilder/Exceptions.java

+7-7
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ private static void tryCatch(String s, Throwable ex, Runnable thunk) {
4949
try {
5050
thunk.run();
5151
} catch (Throwable x) {
52-
// x.printStackTrace();
5352
if (ex.getClass().isAssignableFrom(x.getClass()))
5453
t = x;
5554
else
@@ -94,30 +93,31 @@ public void run() {
9493

9594
System.out.println("StringBuilder.replace(int start, int end, String str)");
9695
tryCatch(" -1, 2, \" \"",
97-
new StringIndexOutOfBoundsException("start -1, end 2, length 7"),
96+
new StringIndexOutOfBoundsException("Range [-1, 2) out of bounds for length 7"),
9897
new Runnable() {
9998
public void run() {
10099
StringBuilder sb = new StringBuilder("hilbert");
101100
sb.replace(-1, 2, " ");
102101
}});
103102
tryCatch(" 7, 8, \" \"",
104-
new StringIndexOutOfBoundsException("start 7, end 6, length 6"),
103+
new StringIndexOutOfBoundsException("Range [7, 6) out of bounds for length 6"),
105104
new Runnable() {
106105
public void run() {
107106
StringBuilder sb = new StringBuilder("banach");
108107
sb.replace(7, 8, " ");
109108
}});
110109
tryCatch(" 2, 1, \" \"",
111-
new StringIndexOutOfBoundsException("start 2, end 1, length 7"),
110+
new StringIndexOutOfBoundsException("Range [2, 1) out of bounds for length 7"),
112111
new Runnable() {
113112
public void run() {
114113
StringBuilder sb = new StringBuilder("riemann");
115114
sb.replace(2, 1, " ");
116115
}});
117116

118-
if (!ok)
117+
if (!ok) {
119118
throw new RuntimeException("Some tests FAILED");
120-
else
119+
} else {
121120
System.out.println("All tests PASSED");
121+
}
122122
}
123-
}
123+
}

‎test/lib/jdk/test/lib/hprof/model/JavaValueArray.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
import jdk.test.lib.hprof.parser.ReadBuffer;
3636
import java.io.IOException;
37+
import java.util.Objects;
3738

3839
/**
3940
* An array of values, that is, an array of ints, boolean, floats or the like.
@@ -263,9 +264,7 @@ public byte getElementType() {
263264
}
264265

265266
private void checkIndex(int index) {
266-
if (index < 0 || index >= getLength()) {
267-
throw new ArrayIndexOutOfBoundsException(index);
268-
}
267+
Objects.checkIndex(index, getLength());
269268
}
270269

271270
private void requireType(char type) {

‎test/micro/org/openjdk/bench/vm/compiler/CopyLoop.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import org.openjdk.jmh.annotations.Setup;
3131
import org.openjdk.jmh.annotations.State;
3232

33+
import java.util.Objects;
3334
import java.util.concurrent.TimeUnit;
3435

3536
/**
@@ -138,9 +139,7 @@ public int length() {
138139
}
139140

140141
public char charAt(int index) {
141-
if ((index < 0) || (index >= count)) {
142-
throw new StringIndexOutOfBoundsException(index);
143-
}
142+
Objects.checkIndex(index, count);
144143
return value[index + offset];
145144
}
146145

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Jul 13, 2021

@openjdk-notifier[bot]
Please sign in to comment.