8138732: Rename @HotSpotIntrinsicCandidate to @IntrinsicCandidate and move it to the jdk.internal.vm.annotation package

Reviewed-by: dholmes, alanb, psandoz, kvn, egahlin
This commit is contained in:
Philippe Marschall 2020-09-30 20:05:07 +00:00 committed by Vladimir Kozlov
parent 4b16f8ab94
commit 2a406f3ce5
64 changed files with 488 additions and 488 deletions

View file

@ -25,7 +25,7 @@
package java.lang;
import jdk.internal.HotSpotIntrinsicCandidate;
import jdk.internal.vm.annotation.IntrinsicCandidate;
import java.io.IOException;
@ -97,7 +97,7 @@ public final class StringBuilder
* Constructs a string builder with no characters in it and an
* initial capacity of 16 characters.
*/
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public StringBuilder() {
super(16);
}
@ -110,7 +110,7 @@ public final class StringBuilder
* @throws NegativeArraySizeException if the {@code capacity}
* argument is less than {@code 0}.
*/
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public StringBuilder(int capacity) {
super(capacity);
}
@ -122,7 +122,7 @@ public final class StringBuilder
*
* @param str the initial contents of the buffer.
*/
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public StringBuilder(String str) {
super(str);
}
@ -170,7 +170,7 @@ public final class StringBuilder
}
@Override
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public StringBuilder append(String str) {
super.append(str);
return this;
@ -237,14 +237,14 @@ public final class StringBuilder
}
@Override
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public StringBuilder append(char c) {
super.append(c);
return this;
}
@Override
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public StringBuilder append(int i) {
super.append(i);
return this;
@ -443,7 +443,7 @@ public final class StringBuilder
}
@Override
@HotSpotIntrinsicCandidate
@IntrinsicCandidate
public String toString() {
// Create a copy, don't share the array
return isLatin1() ? StringLatin1.newString(value, 0, count)