Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8335922: Incorrect @Stable usage of LambdaForm$Name.index #20178

Closed
wants to merge 8 commits into from
7 changes: 4 additions & 3 deletions src/java.base/share/classes/java/lang/invoke/LambdaForm.java
Original file line number Diff line number Diff line change
@@ -1339,7 +1339,7 @@ public static String shortenSignature(String signature) {

static final class Name {
final BasicType type;
@Stable short offsetIndex; // slot + 1, reserves 0 for unset
private @Stable short offsetIndex; // slot + 1, reserves 0 for unset
final NamedFunction function;
final Object constraint; // additional type information, if not null
@Stable final Object[] arguments;
@@ -1395,9 +1395,10 @@ private Name(Name that, Object constraint) {
BasicType type() { return type; }
int index() { return offsetIndex - 1; }
boolean initIndex(int i) {
if (offsetIndex != i + 1) {
short index = (short) (i + 1);
if (offsetIndex != index) {
if (offsetIndex != 0) return false;
offsetIndex = (short) (i + 1);
offsetIndex = index;
}
return true;
}