Skip to content

Commit ba39321

Browse files
committedNov 15, 2024
8343881: java.lang.classfile.Attribute attributeName() method should return Utf8Entry
Reviewed-by: liach
1 parent 75c651f commit ba39321

29 files changed

+415
-45
lines changed
 

‎src/java.base/share/classes/java/lang/classfile/Attribute.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
package java.lang.classfile;
2626

2727
import java.lang.classfile.attribute.*;
28+
import java.lang.classfile.constantpool.Utf8Entry;
2829

2930
import jdk.internal.classfile.impl.BoundAttribute;
3031
import jdk.internal.classfile.impl.UnboundAttribute;
@@ -65,7 +66,7 @@ public sealed interface Attribute<A extends Attribute<A>>
6566
/**
6667
* {@return the name of the attribute}
6768
*/
68-
String attributeName();
69+
Utf8Entry attributeName();
6970

7071
/**
7172
* {@return the {@link AttributeMapper} associated with this attribute}

‎src/java.base/share/classes/java/lang/classfile/CustomAttribute.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
*/
2525
package java.lang.classfile;
2626

27+
import java.lang.classfile.constantpool.Utf8Entry;
28+
import jdk.internal.classfile.impl.TemporaryConstantPool;
2729
import jdk.internal.javac.PreviewFeature;
2830

2931
/**
@@ -55,8 +57,8 @@ public final AttributeMapper<T> attributeMapper() {
5557
}
5658

5759
@Override
58-
public final String attributeName() {
59-
return mapper.name();
60+
public Utf8Entry attributeName() {
61+
return TemporaryConstantPool.INSTANCE.utf8Entry(mapper.name());
6062
}
6163

6264
@Override

‎src/java.base/share/classes/jdk/internal/classfile/impl/AbstractAttributeMapper.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public final String name() {
6464
@Override
6565
public final void writeAttribute(BufWriter writer, T attr) {
6666
BufWriterImpl buf = (BufWriterImpl) writer;
67-
buf.writeIndex(buf.constantPool().utf8Entry(name));
67+
buf.writeIndex(attr.attributeName());
6868
int lengthIndex = buf.skip(4);
6969
writeBody(buf, attr);
7070
int written = buf.size() - lengthIndex - 4;

‎src/java.base/share/classes/jdk/internal/classfile/impl/BoundAttribute.java

+6-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public abstract sealed class BoundAttribute<T extends Attribute<T>>
4747
private final AttributeMapper<T> mapper;
4848
final ClassReaderImpl classReader;
4949
final int payloadStart;
50+
Utf8Entry name;
5051

5152
BoundAttribute(ClassReader classReader, AttributeMapper<T> mapper, int payloadStart) {
5253
this.mapper = mapper;
@@ -59,8 +60,11 @@ public int payloadLen() {
5960
}
6061

6162
@Override
62-
public String attributeName() {
63-
return mapper.name();
63+
public Utf8Entry attributeName() {
64+
if (name == null) {
65+
name = classReader.readEntry(payloadStart - 6, Utf8Entry.class);
66+
}
67+
return name;
6468
}
6569

6670
@Override

‎src/java.base/share/classes/jdk/internal/classfile/impl/ClassPrinterImpl.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ private static MapNode classToTree(ClassModel clm, Verbosity verbosity) {
574574
list("flags", "flag", clm.flags().flags().stream().map(AccessFlag::name)),
575575
leaf("superclass", clm.superclass().map(ClassEntry::asInternalName).orElse("")),
576576
list("interfaces", "interface", clm.interfaces().stream().map(ClassEntry::asInternalName)),
577-
list("attributes", "attribute", clm.attributes().stream().map(Attribute::attributeName)))
577+
list("attributes", "attribute", clm.attributes().stream().map(Attribute::attributeName).map(Utf8Entry::stringValue)))
578578
.with(constantPoolToTree(clm.constantPool(), verbosity))
579579
.with(attributesToTree(clm.attributes(), verbosity))
580580
.with(new ListNodeImpl(BLOCK, "fields", clm.fields().stream().map(f ->
@@ -672,7 +672,7 @@ private static MapNode fieldToTree(FieldModel f, Verbosity verbosity) {
672672
"flag", f.flags().flags().stream().map(AccessFlag::name)),
673673
leaf("field type", f.fieldType().stringValue()),
674674
list("attributes",
675-
"attribute", f.attributes().stream().map(Attribute::attributeName)))
675+
"attribute", f.attributes().stream().map(Attribute::attributeName).map(Utf8Entry::stringValue)))
676676
.with(attributesToTree(f.attributes(), verbosity));
677677
}
678678

@@ -683,7 +683,7 @@ public static MapNode methodToTree(MethodModel m, Verbosity verbosity) {
683683
"flag", m.flags().flags().stream().map(AccessFlag::name)),
684684
leaf("method type", m.methodType().stringValue()),
685685
list("attributes",
686-
"attribute", m.attributes().stream().map(Attribute::attributeName)))
686+
"attribute", m.attributes().stream().map(Attribute::attributeName).map(Utf8Entry::stringValue)))
687687
.with(attributesToTree(m.attributes(), verbosity))
688688
.with(codeToTree((CodeAttribute)m.code().orElse(null), verbosity));
689689
}
@@ -694,7 +694,7 @@ private static MapNode codeToTree(CodeAttribute com, Verbosity verbosity) {
694694
codeNode.with(leaf("max stack", com.maxStack()));
695695
codeNode.with(leaf("max locals", com.maxLocals()));
696696
codeNode.with(list("attributes",
697-
"attribute", com.attributes().stream().map(Attribute::attributeName)));
697+
"attribute", com.attributes().stream().map(Attribute::attributeName).map(Utf8Entry::stringValue)));
698698
var stackMap = new MapNodeImpl(BLOCK, "stack map frames");
699699
var visibleTypeAnnos = new LinkedHashMap<Integer, List<TypeAnnotation>>();
700700
var invisibleTypeAnnos = new LinkedHashMap<Integer, List<TypeAnnotation>>();
@@ -996,7 +996,7 @@ private static Node[] attributesToTree(List<Attribute<?>> attributes, Verbosity
996996
"name", rc.name().stringValue(),
997997
"type", rc.descriptor().stringValue()))
998998
.with(list("attributes", "attribute", rc.attributes().stream()
999-
.map(Attribute::attributeName)))
999+
.map(Attribute::attributeName).map(Utf8Entry::stringValue)))
10001000
.with(attributesToTree(rc.attributes(), verbosity)))));
10011001
case AnnotationDefaultAttribute ada ->
10021002
nodes.add(new MapNodeImpl(FLOW, "annotation default").with(elementValueToTree(ada.defaultValue())));

‎src/java.base/share/classes/jdk/internal/classfile/impl/DirectCodeBuilder.java

+25
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,11 @@ public void writeBody(BufWriterImpl b) {
241241
if (crSize < characterRangesCount)
242242
b.patchU2(pos, crSize);
243243
}
244+
245+
@Override
246+
public Utf8Entry attributeName() {
247+
return constantPool.utf8Entry(Attributes.NAME_CHARACTER_RANGE_TABLE);
248+
}
244249
};
245250
attributes.withAttribute(a);
246251
}
@@ -265,6 +270,11 @@ public void writeBody(BufWriterImpl b) {
265270
if (lvSize < localVariablesCount)
266271
b.patchU2(pos, lvSize);
267272
}
273+
274+
@Override
275+
public Utf8Entry attributeName() {
276+
return constantPool.utf8Entry(Attributes.NAME_LOCAL_VARIABLE_TABLE);
277+
}
268278
};
269279
attributes.withAttribute(a);
270280
}
@@ -289,6 +299,11 @@ public void writeBody(BufWriterImpl b) {
289299
if (lvtSize < localVariableTypesCount)
290300
b.patchU2(pos, lvtSize);
291301
}
302+
303+
@Override
304+
public Utf8Entry attributeName() {
305+
return constantPool.utf8Entry(Attributes.NAME_LOCAL_VARIABLE_TYPE_TABLE);
306+
}
292307
};
293308
attributes.withAttribute(a);
294309
}
@@ -371,6 +386,11 @@ public void writeBody(BufWriterImpl buf) {
371386
dcb.attributes.writeTo(buf);
372387
buf.setLabelContext(null);
373388
}
389+
390+
@Override
391+
public Utf8Entry attributeName() {
392+
return constantPool.utf8Entry(Attributes.NAME_CODE);
393+
}
374394
};
375395
}
376396

@@ -416,6 +436,11 @@ public void writeTo(BufWriterImpl b) {
416436
b.writeU2(buf.size() / 4);
417437
b.writeBytes(buf);
418438
}
439+
440+
@Override
441+
public Utf8Entry attributeName() {
442+
return buf.constantPool().utf8Entry(Attributes.NAME_LINE_NUMBER_TABLE);
443+
}
419444
}
420445

421446
private boolean codeAndExceptionsMatch(int codeLength) {

‎src/java.base/share/classes/jdk/internal/classfile/impl/SplitConstantPool.java

+5
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,11 @@ public void writeBody(BufWriterImpl b) {
146146
for (int i = 0; i < bsmSize; i++)
147147
bootstrapMethodEntry(i).writeTo(buf);
148148
}
149+
150+
@Override
151+
public Utf8Entry attributeName() {
152+
return utf8Entry(Attributes.NAME_BOOTSTRAP_METHODS);
153+
}
149154
};
150155
a.writeTo(buf);
151156
}

‎src/java.base/share/classes/jdk/internal/classfile/impl/StackMapGenerator.java

+6
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
import java.lang.classfile.constantpool.ConstantPoolBuilder;
3636
import java.lang.classfile.constantpool.InvokeDynamicEntry;
3737
import java.lang.classfile.constantpool.MemberRefEntry;
38+
import java.lang.classfile.constantpool.Utf8Entry;
3839
import java.lang.constant.ClassDesc;
3940
import java.lang.constant.MethodTypeDesc;
4041
import java.util.ArrayList;
@@ -401,6 +402,11 @@ public void writeBody(BufWriterImpl b) {
401402
prevFrame = fr;
402403
}
403404
}
405+
406+
@Override
407+
public Utf8Entry attributeName() {
408+
return cp.utf8Entry(Attributes.NAME_STACK_MAP_TABLE);
409+
}
404410
};
405411
}
406412

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Nov 15, 2024

@openjdk-notifier[bot]
Please sign in to comment.