Skip to content

Commit aabec4a

Browse files
committedJul 22, 2024
8335922: Incorrect @stable usage of LambdaForm$Name.index
Reviewed-by: jvernee, shade
1 parent 96e4a18 commit aabec4a

File tree

1 file changed

+23
-47
lines changed

1 file changed

+23
-47
lines changed
 

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

+23-47
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2011, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2011, 2024, 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
@@ -395,7 +395,7 @@ private static Name[] buildEmptyNames(int arity, MethodType mt, boolean isVoid)
395395
Name[] names = arguments(isVoid ? 0 : 1, mt);
396396
if (!isVoid) {
397397
Name zero = new Name(constantZero(basicType(mt.returnType())));
398-
names[arity] = zero.newIndex(arity);
398+
names[arity] = zero.withIndex(arity);
399399
}
400400
assert(namesOK(arity, names));
401401
return names;
@@ -495,28 +495,18 @@ LambdaForm uncustomize() {
495495
* @return true if we can interpret
496496
*/
497497
private static boolean normalizeNames(int arity, Name[] names) {
498-
Name[] oldNames = null;
498+
Name[] oldNames = names.clone();
499499
int maxOutArity = 0;
500-
int changesStart = 0;
501500
for (int i = 0; i < names.length; i++) {
502501
Name n = names[i];
503-
if (!n.initIndex(i)) {
504-
if (oldNames == null) {
505-
oldNames = names.clone();
506-
changesStart = i;
507-
}
508-
names[i] = n.cloneWithIndex(i);
509-
}
502+
names[i] = n.withIndex(i);
510503
if (n.arguments != null && maxOutArity < n.arguments.length)
511504
maxOutArity = n.arguments.length;
512505
}
513506
if (oldNames != null) {
514-
int startFixing = arity;
515-
if (startFixing <= changesStart)
516-
startFixing = changesStart+1;
517-
for (int i = startFixing; i < names.length; i++) {
518-
Name fixed = names[i].replaceNames(oldNames, names, changesStart, i);
519-
names[i] = fixed.newIndex(i);
507+
for (int i = Math.max(1, arity); i < names.length; i++) {
508+
Name fixed = names[i].replaceNames(oldNames, names, 0, i);
509+
names[i] = fixed.withIndex(i);
520510
}
521511
}
522512
int maxInterned = Math.min(arity, INTERNED_ARGUMENT_LIMIT);
@@ -1339,30 +1329,24 @@ public static String shortenSignature(String signature) {
13391329

13401330
static final class Name {
13411331
final BasicType type;
1342-
@Stable short index;
1332+
final short index;
13431333
final NamedFunction function;
13441334
final Object constraint; // additional type information, if not null
13451335
@Stable final Object[] arguments;
13461336

13471337
private static final Object[] EMPTY_ARGS = new Object[0];
13481338

1349-
private Name(int index, BasicType type, NamedFunction function, Object[] arguments) {
1339+
private Name(int index, BasicType type, NamedFunction function, Object[] arguments, Object constraint) {
13501340
this.index = (short)index;
13511341
this.type = type;
13521342
this.function = function;
13531343
this.arguments = arguments;
1354-
this.constraint = null;
1355-
assert(this.index == index && typesMatch(function, this.arguments));
1356-
}
1357-
private Name(Name that, Object constraint) {
1358-
this.index = that.index;
1359-
this.type = that.type;
1360-
this.function = that.function;
1361-
this.arguments = that.arguments;
13621344
this.constraint = constraint;
1345+
assert(this.index == index && typesMatch(function, arguments));
13631346
assert(constraint == null || isParam()); // only params have constraints
13641347
assert(constraint == null || constraint instanceof ClassSpecializer.SpeciesData || constraint instanceof Class);
13651348
}
1349+
13661350
Name(MethodHandle function, Object... arguments) {
13671351
this(new NamedFunction(function), arguments);
13681352
}
@@ -1374,49 +1358,41 @@ private Name(Name that, Object constraint) {
13741358
this(new NamedFunction(function), arguments);
13751359
}
13761360
Name(NamedFunction function) {
1377-
this(-1, function.returnType(), function, EMPTY_ARGS);
1361+
this(-1, function.returnType(), function, EMPTY_ARGS, null);
13781362
}
13791363
Name(NamedFunction function, Object arg) {
1380-
this(-1, function.returnType(), function, new Object[] { arg });
1364+
this(-1, function.returnType(), function, new Object[] { arg }, null);
13811365
}
13821366
Name(NamedFunction function, Object arg0, Object arg1) {
1383-
this(-1, function.returnType(), function, new Object[] { arg0, arg1 });
1367+
this(-1, function.returnType(), function, new Object[] { arg0, arg1 }, null);
13841368
}
13851369
Name(NamedFunction function, Object... arguments) {
1386-
this(-1, function.returnType(), function, Arrays.copyOf(arguments, arguments.length, Object[].class));
1370+
this(-1, function.returnType(), function, Arrays.copyOf(arguments, arguments.length, Object[].class), null);
13871371
}
13881372
/** Create a raw parameter of the given type, with an expected index. */
13891373
Name(int index, BasicType type) {
1390-
this(index, type, null, null);
1374+
this(index, type, null, null, null);
13911375
}
13921376
/** Create a raw parameter of the given type. */
13931377
Name(BasicType type) { this(-1, type); }
13941378

13951379
BasicType type() { return type; }
13961380
int index() { return index; }
1397-
boolean initIndex(int i) {
1398-
if (index != i) {
1399-
if (index != -1) return false;
1400-
index = (short)i;
1401-
}
1402-
return true;
1403-
}
1381+
14041382
char typeChar() {
14051383
return type.btChar;
14061384
}
14071385

1408-
Name newIndex(int i) {
1409-
if (initIndex(i)) return this;
1410-
return cloneWithIndex(i);
1411-
}
1412-
Name cloneWithIndex(int i) {
1413-
Object[] newArguments = (arguments == null) ? null : arguments.clone();
1414-
return new Name(i, type, function, newArguments).withConstraint(constraint);
1386+
Name withIndex(int i) {
1387+
if (i == this.index) return this;
1388+
return new Name(i, type, function, arguments, constraint);
14151389
}
1390+
14161391
Name withConstraint(Object constraint) {
14171392
if (constraint == this.constraint) return this;
1418-
return new Name(this, constraint);
1393+
return new Name(index, type, function, arguments, constraint);
14191394
}
1395+
14201396
Name replaceName(Name oldName, Name newName) { // FIXME: use replaceNames uniformly
14211397
if (oldName == newName) return this;
14221398
@SuppressWarnings("LocalVariableHidesMemberVariable")

0 commit comments

Comments
 (0)
Please sign in to comment.