30
30
import jdk .internal .reflect .ConstructorAccessor ;
31
31
import jdk .internal .reflect .Reflection ;
32
32
import jdk .internal .vm .annotation .ForceInline ;
33
+ import jdk .internal .vm .annotation .Stable ;
33
34
import sun .reflect .annotation .TypeAnnotation ;
34
35
import sun .reflect .annotation .TypeAnnotationParser ;
35
36
import sun .reflect .generics .repository .ConstructorRepository ;
62
63
* @since 1.1
63
64
*/
64
65
public final class Constructor <T > extends Executable {
66
+ @ Stable
65
67
private Class <T > clazz ;
66
68
private int slot ;
67
69
private Class <?>[] parameterTypes ;
68
70
private Class <?>[] exceptionTypes ;
71
+ @ Stable
69
72
private int modifiers ;
70
73
// Generics and annotations support
71
74
private transient String signature ;
@@ -94,7 +97,8 @@ ConstructorRepository getGenericInfo() {
94
97
return genericInfo ; //return cached repository
95
98
}
96
99
97
- private volatile ConstructorAccessor constructorAccessor ;
100
+ @ Stable
101
+ private ConstructorAccessor constructorAccessor ;
98
102
// For sharing of ConstructorAccessors. This branching structure
99
103
// is currently only two levels deep (i.e., one root Constructor
100
104
// and potentially many Constructor objects pointing to it.)
@@ -491,7 +495,7 @@ T newInstanceWithCaller(Object[] args, boolean checkAccess, Class<?> caller)
491
495
if ((clazz .getModifiers () & Modifier .ENUM ) != 0 )
492
496
throw new IllegalArgumentException ("Cannot reflectively create enum objects" );
493
497
494
- ConstructorAccessor ca = constructorAccessor ; // read volatile
498
+ ConstructorAccessor ca = constructorAccessor ; // read @Stable
495
499
if (ca == null ) {
496
500
ca = acquireConstructorAccessor ();
497
501
}
@@ -532,8 +536,8 @@ public boolean isSynthetic() {
532
536
private ConstructorAccessor acquireConstructorAccessor () {
533
537
// First check to see if one has been created yet, and take it
534
538
// 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 ();
537
541
if (tmp != null ) {
538
542
constructorAccessor = tmp ;
539
543
} else {
@@ -556,6 +560,7 @@ ConstructorAccessor getConstructorAccessor() {
556
560
void setConstructorAccessor (ConstructorAccessor accessor ) {
557
561
constructorAccessor = accessor ;
558
562
// Propagate up
563
+ Constructor <?> root = this .root ;
559
564
if (root != null ) {
560
565
root .setConstructorAccessor (accessor );
561
566
}
0 commit comments