Skip to content

Commit 7ad74d8

Browse files
author
Peter Levart
committedOct 5, 2021
8274299: Make Method/Constructor/Field accessors @stable
Reviewed-by: redestad, mchung
1 parent 1459180 commit 7ad74d8

13 files changed

+747
-84
lines changed
 

‎src/java.base/share/classes/java/lang/reflect/Constructor.java

+9-4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import jdk.internal.reflect.ConstructorAccessor;
3131
import jdk.internal.reflect.Reflection;
3232
import jdk.internal.vm.annotation.ForceInline;
33+
import jdk.internal.vm.annotation.Stable;
3334
import sun.reflect.annotation.TypeAnnotation;
3435
import sun.reflect.annotation.TypeAnnotationParser;
3536
import sun.reflect.generics.repository.ConstructorRepository;
@@ -62,10 +63,12 @@
6263
* @since 1.1
6364
*/
6465
public final class Constructor<T> extends Executable {
66+
@Stable
6567
private Class<T> clazz;
6668
private int slot;
6769
private Class<?>[] parameterTypes;
6870
private Class<?>[] exceptionTypes;
71+
@Stable
6972
private int modifiers;
7073
// Generics and annotations support
7174
private transient String signature;
@@ -94,7 +97,8 @@ ConstructorRepository getGenericInfo() {
9497
return genericInfo; //return cached repository
9598
}
9699

97-
private volatile ConstructorAccessor constructorAccessor;
100+
@Stable
101+
private ConstructorAccessor constructorAccessor;
98102
// For sharing of ConstructorAccessors. This branching structure
99103
// is currently only two levels deep (i.e., one root Constructor
100104
// and potentially many Constructor objects pointing to it.)
@@ -491,7 +495,7 @@ T newInstanceWithCaller(Object[] args, boolean checkAccess, Class<?> caller)
491495
if ((clazz.getModifiers() & Modifier.ENUM) != 0)
492496
throw new IllegalArgumentException("Cannot reflectively create enum objects");
493497

494-
ConstructorAccessor ca = constructorAccessor; // read volatile
498+
ConstructorAccessor ca = constructorAccessor; // read @Stable
495499
if (ca == null) {
496500
ca = acquireConstructorAccessor();
497501
}
@@ -532,8 +536,8 @@ public boolean isSynthetic() {
532536
private ConstructorAccessor acquireConstructorAccessor() {
533537
// First check to see if one has been created yet, and take it
534538
// if so.
535-
ConstructorAccessor tmp = null;
536-
if (root != null) tmp = root.getConstructorAccessor();
539+
Constructor<?> root = this.root;
540+
ConstructorAccessor tmp = root == null ? null : root.getConstructorAccessor();
537541
if (tmp != null) {
538542
constructorAccessor = tmp;
539543
} else {
@@ -556,6 +560,7 @@ ConstructorAccessor getConstructorAccessor() {
556560
void setConstructorAccessor(ConstructorAccessor accessor) {
557561
constructorAccessor = accessor;
558562
// Propagate up
563+
Constructor<?> root = this.root;
559564
if (root != null) {
560565
root.setConstructorAccessor(accessor);
561566
}

0 commit comments

Comments
 (0)
Please sign in to comment.