Skip to content

Commit 6cf1095

Browse files
turbanoffYaSuenag
authored andcommittedApr 1, 2021
8264484: Replace uses of StringBuffer with StringBuilder in jdk.hotspot.agent
Reviewed-by: kevinw, amenkov, ysuenaga
1 parent d2df9a7 commit 6cf1095

37 files changed

+109
-116
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ private void detach() {
255255
exceed the given number of characters per line. Strips
256256
extraneous whitespace. */
257257
private String formatMessage(String message, int charsPerLine) {
258-
StringBuffer buf = new StringBuffer(message.length());
258+
StringBuilder buf = new StringBuilder(message.length());
259259
StringTokenizer tokenizer = new StringTokenizer(message);
260260
int curLineLength = 0;
261261
while (tokenizer.hasMoreTokens()) {

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ void trim(int n) {
227227
}
228228
}
229229
String join(String sep) {
230-
StringBuffer result = new StringBuffer();
230+
StringBuilder result = new StringBuilder();
231231
for (int w = i; w < length; w++) {
232232
result.append(tokens[w]);
233233
if (w + 1 < length) {
@@ -350,7 +350,7 @@ void dumpFields(Type type, boolean allowStatic) {
350350
Address lookup(String symbol) {
351351
if (symbol.indexOf("::") != -1) {
352352
String[] parts = symbol.split("::");
353-
StringBuffer mangled = new StringBuffer("__1c");
353+
StringBuilder mangled = new StringBuilder("__1c");
354354
for (int i = 0; i < parts.length; i++) {
355355
int len = parts[i].length();
356356
if (len >= 26) {
@@ -1755,7 +1755,7 @@ public void doit(Tokens t) {
17551755
}
17561756

17571757
/* Compute filename for class. */
1758-
StringBuffer buf = new StringBuffer();
1758+
StringBuilder buf = new StringBuilder();
17591759
if (tokenCount > 1) {
17601760
buf.append(t.nextToken());
17611761
} else {
@@ -1967,7 +1967,7 @@ public void executeCommand(String ln, boolean putInHistory) {
19671967
ln = "";
19681968
err.println("History is empty");
19691969
} else {
1970-
StringBuffer result = new StringBuffer();
1970+
StringBuilder result = new StringBuilder();
19711971
Matcher m = historyPattern.matcher(ln);
19721972
int start = 0;
19731973
while (m.find()) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1811,7 +1811,7 @@ private static JMenuItem createMenuItem(String name, ActionListener l) {
18111811
exceed the given number of characters per line. Strips
18121812
extraneous whitespace. */
18131813
private String formatMessage(String message, int charsPerLine) {
1814-
StringBuffer buf = new StringBuffer(message.length());
1814+
StringBuilder buf = new StringBuilder(message.length());
18151815
StringTokenizer tokenizer = new StringTokenizer(message);
18161816
int curLineLength = 0;
18171817
while (tokenizer.hasMoreTokens()) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2021, 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
@@ -93,7 +93,7 @@ public static Remote lookup(String debugServerID) throws DebuggerException {
9393
// we have to transform this as //host[:port]/<serverNamePrefix>['_'<unique_id>]
9494

9595
int index = debugServerID.indexOf('@');
96-
StringBuffer nameBuf = new StringBuffer("//");
96+
StringBuilder nameBuf = new StringBuilder("//");
9797
String uniqueID = null;
9898
if (index != -1) {
9999
nameBuf.append(debugServerID.substring(index + 1));

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -36,7 +36,7 @@ public DebuggerUtilities(long addressSize, boolean isBigEndian) {
3636
}
3737

3838
public String addressValueToString(long address) {
39-
StringBuffer buf = new StringBuffer();
39+
StringBuilder buf = new StringBuilder();
4040
buf.append("0x");
4141
String val;
4242
// Make negative addresses have the correct size

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/BasicFunctionSym.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -53,7 +53,7 @@ public String toString() {
5353
return null;
5454
}
5555

56-
StringBuffer res = new StringBuffer();
56+
StringBuilder res = new StringBuilder();
5757
res.append(getName());
5858
res.append("(");
5959
FunctionType type = (FunctionType) getType();

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/dummy/DummyDebugger.java

+2-2
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, 2021, 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
@@ -136,7 +136,7 @@ public void writeBytesToProcess(long a, long b, byte[] buf)
136136
//
137137

138138
String addressToString(DummyAddress addr) {
139-
StringBuffer buf = new StringBuffer();
139+
StringBuilder buf = new StringBuilder();
140140
buf.append("0x");
141141
String val;
142142
if (addr == null) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -105,7 +105,7 @@ public int getJavaLength() {
105105
}
106106

107107
public String toString() {
108-
StringBuffer buf = new StringBuffer(getJavaBytecodeName());
108+
StringBuilder buf = new StringBuilder(getJavaBytecodeName());
109109
if (code() != javaCode()) {
110110
buf.append(spaces);
111111
buf.append('[');

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -65,10 +65,10 @@ public static BytecodeBipush at(BytecodeStream bcs) {
6565
}
6666

6767
public String toString() {
68-
StringBuffer buf = new StringBuffer();
68+
StringBuilder buf = new StringBuilder();
6969
buf.append("bipush");
7070
buf.append(spaces);
71-
buf.append(Byte.toString(getValue()));
71+
buf.append(getValue());
7272
return buf.toString();
7373
}
7474
}

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -51,11 +51,11 @@ public Field getField() {
5151
}
5252

5353
public String toString() {
54-
StringBuffer buf = new StringBuffer();
54+
StringBuilder buf = new StringBuilder();
5555
buf.append(getJavaBytecodeName());
5656
buf.append(spaces);
5757
buf.append('#');
58-
buf.append(Integer.toString(indexForFieldOrMethod()));
58+
buf.append(indexForFieldOrMethod());
5959
buf.append(" [Field ");
6060
StringBuffer sigBuf = new StringBuffer();
6161
new SignatureConverter(signature(), sigBuf).dispatchField();

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2005, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -66,13 +66,13 @@ public static BytecodeIinc at(BytecodeStream bcs) {
6666
}
6767

6868
public String toString() {
69-
StringBuffer buf = new StringBuffer();
69+
StringBuilder buf = new StringBuilder();
7070
buf.append("iinc");
7171
buf.append(spaces);
7272
buf.append('#');
73-
buf.append(Integer.toString(getLocalVarIndex()));
73+
buf.append(getLocalVarIndex());
7474
buf.append(" by ");
75-
buf.append(Integer.toString(getIncrement()));
75+
buf.append(getIncrement());
7676
return buf.toString();
7777
}
7878
}

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -106,16 +106,16 @@ public void verify() {
106106
}
107107

108108
public String toString() {
109-
StringBuffer buf = new StringBuffer();
109+
StringBuilder buf = new StringBuilder();
110110
buf.append(getJavaBytecodeName());
111111
buf.append(spaces);
112112
buf.append('#');
113-
buf.append(Integer.toString(indexForFieldOrMethod()));
113+
buf.append(indexForFieldOrMethod());
114114
if (isInvokedynamic()) {
115115
ConstantPool cp = method.getConstants();
116116
buf.append('(');
117117
int poolIndex = cp.invokeDynamicNameAndTypeRefIndexAt(indexForFieldOrMethod());
118-
buf.append(Integer.toString(poolIndex));
118+
buf.append(poolIndex);
119119
buf.append(')');
120120
buf.append(" [Name and Type ");
121121
buf.append(name().asString());

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -35,10 +35,10 @@ public abstract class BytecodeJmp extends Bytecode {
3535
public abstract int getTargetBCI();
3636

3737
public String toString() {
38-
StringBuffer buf = new StringBuffer();
38+
StringBuilder buf = new StringBuilder();
3939
buf.append(getJavaBytecodeName());
4040
buf.append(spaces);
41-
buf.append(Integer.toString(getTargetBCI()));
41+
buf.append(getTargetBCI());
4242
return buf.toString();
4343
}
4444
}

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -195,14 +195,14 @@ public String getConstantValue() {
195195
}
196196

197197
public String toString() {
198-
StringBuffer buf = new StringBuffer();
198+
StringBuilder buf = new StringBuilder();
199199
buf.append(getJavaBytecodeName());
200200
buf.append(spaces);
201201
buf.append('#');
202-
buf.append(Integer.toString(poolIndex()));
202+
buf.append(poolIndex());
203203
if (hasCacheIndex()) {
204204
buf.append('(');
205-
buf.append(Integer.toString(cacheIndex()));
205+
buf.append(cacheIndex());
206206
buf.append(')');
207207
}
208208
buf.append(spaces);

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -32,11 +32,11 @@ public abstract class BytecodeLoadStore extends BytecodeWideable {
3232
}
3333

3434
public String toString() {
35-
StringBuffer buf = new StringBuffer();
35+
StringBuilder buf = new StringBuilder();
3636
buf.append(getJavaBytecodeName());
3737
buf.append(spaces);
3838
buf.append('#');
39-
buf.append(Integer.toString(getLocalVarIndex()));
39+
buf.append(getLocalVarIndex());
4040
return buf.toString();
4141
}
4242
}

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -78,19 +78,19 @@ public static BytecodeLookupswitch at(BytecodeStream bcs) {
7878
}
7979

8080
public String toString() {
81-
StringBuffer buf = new StringBuffer();
81+
StringBuilder buf = new StringBuilder();
8282
buf.append("lookupswitch");
8383
buf.append(spaces);
8484
buf.append("default: ");
85-
buf.append(Integer.toString(bci() + defaultOffset()));
85+
buf.append(bci() + defaultOffset());
8686
buf.append(comma);
8787
int i = numberOfPairs() - 1;
8888
while (i-- > 0) {
8989
LookupswitchPair pair = pairAt(i);
9090
buf.append("case ");
91-
buf.append(Integer.toString(pair.match()));
91+
buf.append(pair.match());
9292
buf.append(':');
93-
buf.append(Integer.toString(bci() + pair.offset()));
93+
buf.append(bci() + pair.offset());
9494
buf.append(comma);
9595
}
9696

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -69,10 +69,10 @@ public static BytecodeMultiANewArray at(BytecodeStream bcs) {
6969
}
7070

7171
public String toString() {
72-
StringBuffer buf = new StringBuffer();
72+
StringBuilder buf = new StringBuilder();
7373
buf.append(super.toString());
7474
buf.append(spaces);
75-
buf.append(Integer.toString(getDimension()));
75+
buf.append(getDimension());
7676
return buf.toString();
7777
}
7878
}

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -124,7 +124,7 @@ public static BytecodeNewArray at(BytecodeStream bcs) {
124124
}
125125

126126
public String toString() {
127-
StringBuffer buf = new StringBuffer();
127+
StringBuilder buf = new StringBuilder();
128128
buf.append("newarray");
129129
buf.append(spaces);
130130
buf.append(getTypeName());

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -61,11 +61,11 @@ public static BytecodeRet at(BytecodeStream bcs) {
6161
}
6262

6363
public String toString() {
64-
StringBuffer buf = new StringBuffer();
64+
StringBuilder buf = new StringBuilder();
6565
buf.append("ret");
6666
buf.append(spaces);
6767
buf.append('#');
68-
buf.append(Integer.toString(getLocalVarIndex()));
68+
buf.append(getLocalVarIndex());
6969
return buf.toString();
7070
}
7171
}

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -65,10 +65,10 @@ public static BytecodeSipush at(BytecodeStream bcs) {
6565
}
6666

6767
public String toString() {
68-
StringBuffer buf = new StringBuffer();
68+
StringBuilder buf = new StringBuilder();
6969
buf.append("sipush");
7070
buf.append(spaces);
71-
buf.append(Short.toString(getValue()));
71+
buf.append(getValue());
7272
return buf.toString();
7373
}
7474
}

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -84,20 +84,20 @@ public static BytecodeTableswitch at(BytecodeStream bcs) {
8484
}
8585

8686
public String toString() {
87-
StringBuffer buf = new StringBuffer();
87+
StringBuilder buf = new StringBuilder();
8888
buf.append("tableswitch");
8989
buf.append(spaces);
9090
buf.append("default: ");
91-
buf.append(Integer.toString(bci() + defaultOffset()));
91+
buf.append(bci() + defaultOffset());
9292
buf.append(comma);
9393
int lo = lowKey();
9494
int hi = highKey();
9595
int i = hi - lo - 1 ;
9696
while (i-- > 0) {
9797
buf.append("case ");
98-
buf.append(Integer.toString(lo + i));
98+
buf.append(lo + i);
9999
buf.append(':');
100-
buf.append(Integer.toString(bci() + destOffsetAt(i)));
100+
buf.append(bci() + destOffsetAt(i));
101101
buf.append(comma);
102102
}
103103
return buf.toString();

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -41,11 +41,11 @@ public Symbol getClassName() {
4141
}
4242

4343
public String toString() {
44-
StringBuffer buf = new StringBuffer();
44+
StringBuilder buf = new StringBuilder();
4545
buf.append(getJavaBytecodeName());
4646
buf.append(spaces);
4747
buf.append('#');
48-
buf.append(Integer.toString(index()));
48+
buf.append(index());
4949
buf.append(spaces);
5050
buf.append("[Class ");
5151
buf.append(getClassName().asString().replace('/', '.'));

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public String getDescription() {
8686
ObjArrayKlass oak = (ObjArrayKlass) ak;
8787
Klass bottom = oak.getBottomKlass();
8888
int dim = (int) oak.getDimension();
89-
StringBuffer buf = new StringBuffer();
89+
StringBuilder buf = new StringBuilder();
9090
if (bottom instanceof TypeArrayKlass) {
9191
buf.append(((TypeArrayKlass) bottom).getElementTypeName());
9292
} else if (bottom instanceof InstanceKlass) {

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/oops/OopUtilities.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, 2021, 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
@@ -99,7 +99,7 @@ public static String charArrayToString(TypeArray charArray) {
9999
return null;
100100
}
101101
int length = (int)charArray.getLength();
102-
StringBuffer buf = new StringBuffer(length);
102+
StringBuilder buf = new StringBuilder(length);
103103
for (int i = 0; i < length; i++) {
104104
buf.append(charArray.getCharAt(i));
105105
}
@@ -111,7 +111,7 @@ public static String byteArrayToString(TypeArray byteArray, byte coder) {
111111
return null;
112112
}
113113
int length = (int)byteArray.getLength() >> coder;
114-
StringBuffer buf = new StringBuffer(length);
114+
StringBuilder buf = new StringBuilder(length);
115115
if (coder == 0) {
116116
// Latin1 encoded
117117
for (int i = 0; i < length; i++) {

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

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2021, 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
@@ -352,10 +352,10 @@ public String valueAsString() {
352352
} else { // vector
353353
if (dataType == BasicType.getTBoolean()) {
354354
boolean[] res = booleanArrayValue();
355-
StringBuffer buf = new StringBuffer();
355+
StringBuilder buf = new StringBuilder();
356356
buf.append('[');
357357
for (int i = 0; i < res.length; i++) {
358-
buf.append(Boolean.toString(res[i]));
358+
buf.append(res[i]);
359359
buf.append(", ");
360360
}
361361
buf.append(']');
@@ -369,50 +369,50 @@ public String valueAsString() {
369369
StandardCharsets.US_ASCII);
370370
} else if (dataType == BasicType.getTShort()) {
371371
short[] res = shortArrayValue();
372-
StringBuffer buf = new StringBuffer();
372+
StringBuilder buf = new StringBuilder();
373373
buf.append('[');
374374
for (int i = 0; i < res.length; i++) {
375-
buf.append(Short.toString(res[i]));
375+
buf.append(res[i]);
376376
buf.append(", ");
377377
}
378378
buf.append(']');
379379
str = buf.toString();
380380
} else if (dataType == BasicType.getTInt()) {
381381
int[] res = intArrayValue();
382-
StringBuffer buf = new StringBuffer();
382+
StringBuilder buf = new StringBuilder();
383383
buf.append('[');
384384
for (int i = 0; i < res.length; i++) {
385-
buf.append(Integer.toString(res[i]));
385+
buf.append(res[i]);
386386
buf.append(", ");
387387
}
388388
buf.append(']');
389389
str = buf.toString();
390390
} else if (dataType == BasicType.getTLong()) {
391391
long[] res = longArrayValue();
392-
StringBuffer buf = new StringBuffer();
392+
StringBuilder buf = new StringBuilder();
393393
buf.append('[');
394394
for (int i = 0; i < res.length; i++) {
395-
buf.append(Long.toString(res[i]));
395+
buf.append(res[i]);
396396
buf.append(", ");
397397
}
398398
buf.append(']');
399399
str = buf.toString();
400400
} else if (dataType == BasicType.getTFloat()) {
401401
float[] res = floatArrayValue();
402-
StringBuffer buf = new StringBuffer();
402+
StringBuilder buf = new StringBuilder();
403403
buf.append('[');
404404
for (int i = 0; i < res.length; i++) {
405-
buf.append(Float.toString(res[i]));
405+
buf.append(res[i]);
406406
buf.append(", ");
407407
}
408408
buf.append(']');
409409
str = buf.toString();
410410
} else if (dataType == BasicType.getTDouble()) {
411411
double[] res = doubleArrayValue();
412-
StringBuffer buf = new StringBuffer();
412+
StringBuilder buf = new StringBuilder();
413413
buf.append('[');
414414
for (int i = 0; i < res.length; i++) {
415-
buf.append(Double.toString(res[i]));
415+
buf.append(res[i]);
416416
buf.append(", ");
417417
}
418418
buf.append(']');

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

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2021, 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
@@ -34,12 +34,8 @@ public VMVersionMismatchException(String supported, String target) {
3434
}
3535

3636
public String getMessage() {
37-
StringBuffer msg = new StringBuffer();
38-
msg.append("Supported versions are ");
39-
msg.append(supportedVersions);
40-
msg.append(". Target VM is ");
41-
msg.append(targetVersion);
42-
return msg.toString();
37+
return "Supported versions are " + supportedVersions +
38+
". Target VM is " + targetVersion;
4339
}
4440

4541
public String getSupportedVersions() {

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -256,19 +256,19 @@ private String[] getJavaNames(ThreadProxy th, Address fp) {
256256
JavaVFrame vf = jvframes[fCount];
257257
Frame f = vf.getFrame();
258258
if (fp.equals(f.getFP())) {
259-
StringBuffer sb = new StringBuffer();
259+
StringBuilder sb = new StringBuilder();
260260
Method method = vf.getMethod();
261261
// a special char to identify java frames in output
262262
sb.append("* ");
263263
sb.append(method.externalNameAndSignature());
264-
sb.append(" bci:" + vf.getBCI());
264+
sb.append(" bci:").append(vf.getBCI());
265265
int lineNumber = method.getLineNumberFromBCI(vf.getBCI());
266266
if (lineNumber != -1) {
267-
sb.append(" line:" + lineNumber);
267+
sb.append(" line:").append(lineNumber);
268268
}
269269

270270
if (verbose) {
271-
sb.append(" Method*:" + method.getAddress());
271+
sb.append(" Method*:").append(method.getAddress());
272272
}
273273

274274
if (vf.isCompiledFrame()) {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ private void setupScrollBar() {
402402
}
403403

404404
private String bigIntToHexString(BigInteger bi) {
405-
StringBuffer buf = new StringBuffer();
405+
StringBuilder buf = new StringBuilder();
406406
buf.append("0x");
407407
String val = bi.toString(16);
408408
for (int i = 0; i < ((2 * addressSize) - val.length()); i++) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public boolean isCellEditable(int row, int col) {
146146
protected Transferable createTransferable(JComponent c) {
147147
JTable table = (JTable)c;
148148
if (haveSelection()) {
149-
StringBuffer buf = new StringBuffer();
149+
StringBuilder buf = new StringBuilder();
150150
int iDir = (getRowAnchor() < getRowLead() ? 1 : -1);
151151
int jDir = (getColAnchor() < getColLead() ? 1 : -1);
152152

@@ -553,7 +553,7 @@ private void recomputeNumVisibleRows() {
553553
}
554554

555555
private String bigIntToHexString(BigInteger bi) {
556-
StringBuffer buf = new StringBuffer();
556+
StringBuilder buf = new StringBuilder();
557557
buf.append("0x");
558558
String val = bi.toString(16);
559559
for (int i = 0; i < ((2 * addressSize) - val.length()); i++) {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2021, 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
@@ -48,7 +48,7 @@ public SAEditorPane() {
4848
*/
4949

5050
public String getSelectedText() {
51-
StringBuffer result = new StringBuffer();
51+
StringBuilder result = new StringBuilder();
5252
Document doc = getDocument();
5353

5454
int start = getSelectionStart();

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2001, 2021, 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
@@ -219,7 +219,7 @@ public boolean openFile(String filename) {
219219
this.filename = filename;
220220
File file = new File(filename);
221221
int len = (int) file.length();
222-
StringBuffer buf = new StringBuffer(len); // Approximation
222+
StringBuilder buf = new StringBuilder(len); // Approximation
223223
char[] tmp = new char[4096];
224224
FileReader in = new FileReader(file);
225225
int res = 0;

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2004, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -48,7 +48,7 @@ private void initUI() {
4848
}
4949

5050
private String getFlags() {
51-
final StringBuffer buf = new StringBuffer();
51+
final StringBuilder buf = new StringBuilder();
5252
buf.append("<html><head><title>System Properties</title></head><body>");
5353
buf.append("<table border='1'>");
5454

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -50,7 +50,7 @@ private void initUI() {
5050

5151
private String getFlags() {
5252
VM.Flag[] flags = VM.getVM().getCommandLineFlags();
53-
StringBuffer buf = new StringBuffer();
53+
StringBuilder buf = new StringBuilder();
5454
buf.append("<html><head><title>VM Command Line Flags</title></head><body>");
5555
if (flags == null) {
5656
buf.append("<b>Command Flag info not available (use 1.4.1_03 or later)!</b>");

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -50,7 +50,7 @@ private void initUI() {
5050

5151
private String getVersionInfo() {
5252
VM vm = VM.getVM();
53-
StringBuffer buf = new StringBuffer();
53+
StringBuilder buf = new StringBuilder();
5454
buf.append("<html><head><title>VM Version Info</title></head>");
5555
buf.append("<body><table border='1'>");
5656

‎src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/HTMLGenerator.java

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -883,10 +883,7 @@ protected String genPCHref(long targetPc) {
883883
}
884884

885885
protected String genMultPCHref(String pcs) {
886-
StringBuffer buf = new StringBuffer(genBaseHref());
887-
buf.append("pc_multiple=");
888-
buf.append(pcs);
889-
return buf.toString();
886+
return genBaseHref() + "pc_multiple=" + pcs;
890887
}
891888

892889
protected String genPCHref(Address addr) {
@@ -1542,7 +1539,7 @@ protected String genDumpKlassesTitle(InstanceKlass[] klasses) {
15421539
}
15431540

15441541
protected String genDumpKlassesHref(InstanceKlass[] klasses) {
1545-
StringBuffer buf = new StringBuffer(genBaseHref());
1542+
StringBuilder buf = new StringBuilder(genBaseHref());
15461543
buf.append("jcore_multiple=");
15471544
for (int k = 0; k < klasses.length; k++) {
15481545
buf.append(klasses[k].getAddress().toString());

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2004, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2004, 2021, 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
@@ -286,7 +286,7 @@ private static String identifierToXMLName(String name) {
286286
// escapes XML meta-characters and illegal characters
287287
private static String escapeXMLChars(String s) {
288288
// FIXME: is there a better way or API?
289-
StringBuffer result = null;
289+
StringBuilder result = null;
290290
for(int i = 0, max = s.length(), delta = 0; i < max; i++) {
291291
char c = s.charAt(i);
292292
String replacement = null;
@@ -311,7 +311,7 @@ private static String escapeXMLChars(String s) {
311311

312312
if (replacement != null) {
313313
if (result == null) {
314-
result = new StringBuffer(s);
314+
result = new StringBuilder(s);
315315
}
316316
result.replace(i + delta, i + delta + 1, replacement);
317317
delta += (replacement.length() - 1);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2002, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2002, 2021, 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
@@ -774,7 +774,7 @@ protected Class getClass(int begin, int end) {
774774
}
775775

776776
protected String getClassName(int begin, int end) {
777-
StringBuffer buf = new StringBuffer();
777+
StringBuilder buf = new StringBuilder();
778778
for (int i = begin; i < end; i++) {
779779
char c = (char) (_signature.getByteAt(i) & 0xFF);
780780
if (c == '/') {

0 commit comments

Comments
 (0)
Please sign in to comment.