Skip to content

Commit 26048ea

Browse files
author
Andrey Turbanov
committedJun 2, 2022
8287695: Use String.contains() instead of String.indexOf() in jdk.hotspot.agent
Reviewed-by: cjplummer
1 parent 37e1835 commit 26048ea

File tree

4 files changed

+12
-19
lines changed

4 files changed

+12
-19
lines changed
 

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ void printNode(SimpleTreeNode node) {
279279
}
280280

281281
void quote(String s) {
282-
if (s.indexOf(" ") == -1) {
282+
if (!s.contains(" ")) {
283283
out.print(s);
284284
} else {
285285
out.print("\"");
@@ -342,7 +342,7 @@ void dumpFields(Type type, boolean allowStatic) {
342342

343343

344344
Address lookup(String symbol) {
345-
if (symbol.indexOf("::") != -1) {
345+
if (symbol.contains("::")) {
346346
String[] parts = symbol.split("::");
347347
StringBuilder mangled = new StringBuilder("__1c");
348348
for (int i = 0; i < parts.length; i++) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/tools/jcore/ByteCodeRewriter.java

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2022, 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
@@ -27,13 +27,9 @@
2727
import sun.jvm.hotspot.oops.*;
2828
import sun.jvm.hotspot.interpreter.*;
2929
import sun.jvm.hotspot.utilities.*;
30-
import sun.jvm.hotspot.debugger.*;
3130
import sun.jvm.hotspot.runtime.*;
3231
import java.security.AccessController;
3332
import java.security.PrivilegedAction;
34-
import java.security.AccessControlContext;
35-
import java.security.PrivilegedExceptionAction;
36-
import java.security.PrivilegedActionException;
3733

3834
public class ByteCodeRewriter
3935
{
@@ -92,7 +88,7 @@ protected short getConstantPoolIndex(int rawcode, int bci) {
9288
case 2: cpCacheIndex = method.getBytecodeByteArg(bci); break;
9389
case 3: cpCacheIndex = method.getBytecodeShortArg(bci); break;
9490
case 5:
95-
if (fmt.indexOf("__") >= 0)
91+
if (fmt.contains("__"))
9692
cpCacheIndex = method.getBytecodeShortArg(bci);
9793
else
9894
cpCacheIndex = method.getBytecodeIntArg(bci);
@@ -102,15 +98,15 @@ protected short getConstantPoolIndex(int rawcode, int bci) {
10298

10399
if (cpCache == null) {
104100
return (short) cpCacheIndex;
105-
} else if (fmt.indexOf("JJJJ") >= 0) {
101+
} else if (fmt.contains("JJJJ")) {
106102
// Invokedynamic require special handling
107103
cpCacheIndex = ~cpCacheIndex;
108104
cpCacheIndex = bytes.swapInt(cpCacheIndex);
109105
return (short) cpCache.getEntryAt(cpCacheIndex).getConstantPoolIndex();
110-
} else if (fmt.indexOf("JJ") >= 0) {
106+
} else if (fmt.contains("JJ")) {
111107
// change byte-ordering and go via cache
112108
return (short) cpCache.getEntryAt((int) (0xFFFF & bytes.swapShort((short)cpCacheIndex))).getConstantPoolIndex();
113-
} else if (fmt.indexOf("j") >= 0) {
109+
} else if (fmt.contains("j")) {
114110
// go via cache
115111
return (short) cpCache.getEntryAt((int) (0xFF & cpCacheIndex)).getConstantPoolIndex();
116112
} else {

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, 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
@@ -63,7 +63,7 @@ class Trigger {
6363

6464
boolean matches(String str) {
6565
for (int i = 0; i < triggerStrings.length; i++) {
66-
if (str.indexOf(triggerStrings[i]) == -1) {
66+
if (!str.contains(triggerStrings[i])) {
6767
return false;
6868
}
6969
}
@@ -198,7 +198,7 @@ public void run() {
198198

199199
// Check wait string
200200
if ((waitString != null) &&
201-
(str.indexOf(waitString) != -1)) {
201+
str.contains(waitString)) {
202202
waitStringSeen = true;
203203
notifyAll();
204204
}

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

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2022, 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
@@ -27,10 +27,7 @@
2727
import java.util.*;
2828
import sun.jvm.hotspot.classfile.*;
2929
import sun.jvm.hotspot.oops.*;
30-
import sun.jvm.hotspot.memory.*;
3130
import sun.jvm.hotspot.runtime.*;
32-
import sun.jvm.hotspot.utilities.Observable;
33-
import sun.jvm.hotspot.utilities.Observer;
3431

3532
public class SystemDictionaryHelper {
3633
static {
@@ -84,7 +81,7 @@ public static InstanceKlass[] findInstanceKlasses(String namePart) {
8481
Vector<InstanceKlass> tmp = new Vector<>();
8582
for (int i = 0; i < tmpKlasses.length; i++) {
8683
String name = tmpKlasses[i].getName().asString();
87-
if (name.indexOf(namePart) != -1) {
84+
if (name.contains(namePart)) {
8885
tmp.add(tmpKlasses[i]);
8986
}
9087
}

0 commit comments

Comments
 (0)
Please sign in to comment.