File tree 7 files changed +48
-4
lines changed
src/java.base/share/classes/jdk/internal/classfile
7 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 26
26
27
27
import jdk .internal .classfile .TypeKind ;
28
28
import jdk .internal .classfile .impl .Util ;
29
+
30
+ import java .lang .constant .ClassDesc ;
29
31
import java .lang .constant .ConstantDesc ;
30
32
import java .lang .constant .DynamicConstantDesc ;
31
33
@@ -40,6 +42,13 @@ public sealed interface ConstantDynamicEntry
40
42
extends DynamicConstantPoolEntry , LoadableConstantEntry
41
43
permits AbstractPoolEntry .ConstantDynamicEntryImpl {
42
44
45
+ /**
46
+ * {@return a symbolic descriptor for the dynamic constant's type}
47
+ */
48
+ default ClassDesc typeSymbol () {
49
+ return Util .fieldTypeSymbol (nameAndType ());
50
+ }
51
+
43
52
@ Override
44
53
default ConstantDesc constantValue () {
45
54
return asSymbol ();
@@ -51,7 +60,7 @@ default ConstantDesc constantValue() {
51
60
default DynamicConstantDesc <?> asSymbol () {
52
61
return DynamicConstantDesc .ofNamed (bootstrap ().bootstrapMethod ().asSymbol (),
53
62
name ().stringValue (),
54
- Util . fieldTypeSymbol ( nameAndType () ),
63
+ typeSymbol ( ),
55
64
bootstrap ().arguments ().stream ()
56
65
.map (LoadableConstantEntry ::constantValue )
57
66
.toArray (ConstantDesc []::new ));
Original file line number Diff line number Diff line change 25
25
package jdk .internal .classfile .constantpool ;
26
26
27
27
import jdk .internal .classfile .impl .AbstractPoolEntry ;
28
+ import jdk .internal .classfile .impl .Util ;
29
+
30
+ import java .lang .constant .ClassDesc ;
28
31
29
32
/**
30
33
* Models a {@code CONSTANT_Fieldref_info} constant in the constant pool of a
34
37
public sealed interface FieldRefEntry extends MemberRefEntry
35
38
permits AbstractPoolEntry .FieldRefEntryImpl {
36
39
40
+ /**
41
+ * {@return a symbolic descriptor for the field's type}
42
+ */
43
+ default ClassDesc typeSymbol () {
44
+ return Util .fieldTypeSymbol (nameAndType ());
45
+ }
37
46
}
Original file line number Diff line number Diff line change 25
25
package jdk .internal .classfile .constantpool ;
26
26
27
27
import jdk .internal .classfile .impl .AbstractPoolEntry ;
28
+ import jdk .internal .classfile .impl .Util ;
29
+
30
+ import java .lang .constant .MethodTypeDesc ;
28
31
29
32
/**
30
33
* Models a {@code CONSTANT_InterfaceMethodRef_info} constant in the constant pool of a
@@ -35,4 +38,10 @@ public sealed interface InterfaceMethodRefEntry
35
38
extends MemberRefEntry
36
39
permits AbstractPoolEntry .InterfaceMethodRefEntryImpl {
37
40
41
+ /**
42
+ * {@return a symbolic descriptor for the interface method's type}
43
+ */
44
+ default MethodTypeDesc typeSymbol () {
45
+ return Util .methodTypeSymbol (nameAndType ());
46
+ }
38
47
}
Original file line number Diff line number Diff line change 26
26
27
27
import java .lang .constant .ConstantDesc ;
28
28
import java .lang .constant .DynamicCallSiteDesc ;
29
+ import java .lang .constant .MethodTypeDesc ;
29
30
30
31
import jdk .internal .classfile .impl .AbstractPoolEntry ;
31
32
import jdk .internal .classfile .impl .Util ;
@@ -38,13 +39,20 @@ public sealed interface InvokeDynamicEntry
38
39
extends DynamicConstantPoolEntry
39
40
permits AbstractPoolEntry .InvokeDynamicEntryImpl {
40
41
42
+ /**
43
+ * {@return a symbolic descriptor for the call site's invocation type}
44
+ */
45
+ default MethodTypeDesc typeSymbol () {
46
+ return Util .methodTypeSymbol (nameAndType ());
47
+ }
48
+
41
49
/**
42
50
* {@return a symbolic descriptor for the dynamic call site}
43
51
*/
44
52
default DynamicCallSiteDesc asSymbol () {
45
53
return DynamicCallSiteDesc .of (bootstrap ().bootstrapMethod ().asSymbol (),
46
54
name ().stringValue (),
47
- Util . methodTypeSymbol ( nameAndType () ),
55
+ typeSymbol ( ),
48
56
bootstrap ().arguments ().stream ()
49
57
.map (LoadableConstantEntry ::constantValue )
50
58
.toArray (ConstantDesc []::new ));
Original file line number Diff line number Diff line change 25
25
package jdk .internal .classfile .constantpool ;
26
26
27
27
import jdk .internal .classfile .impl .AbstractPoolEntry ;
28
+ import jdk .internal .classfile .impl .Util ;
29
+
30
+ import java .lang .constant .MethodTypeDesc ;
28
31
29
32
/**
30
33
* Models a {@code CONSTANT_MethodRef_info} constant in the constant pool of a
34
37
public sealed interface MethodRefEntry extends MemberRefEntry
35
38
permits AbstractPoolEntry .MethodRefEntryImpl {
36
39
40
+ /**
41
+ * {@return a symbolic descriptor for the method's type}
42
+ */
43
+ default MethodTypeDesc typeSymbol () {
44
+ return Util .methodTypeSymbol (nameAndType ());
45
+ }
37
46
}
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ default Utf8Entry type() {
77
77
* {@return a symbolic descriptor for the type of the field}
78
78
*/
79
79
default ClassDesc typeSymbol () {
80
- return Util . fieldTypeSymbol ( field ().nameAndType () );
80
+ return field ().typeSymbol ( );
81
81
}
82
82
83
83
/**
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ default Utf8Entry type() {
70
70
* {@return the invocation type of the call site, as a symbolic descriptor}
71
71
*/
72
72
default MethodTypeDesc typeSymbol () {
73
- return Util . methodTypeSymbol ( invokedynamic ().nameAndType () );
73
+ return invokedynamic ().typeSymbol ( );
74
74
}
75
75
76
76
/**
You can’t perform that action at this time.
0 commit comments