Skip to content

Commit e63418e

Browse files
committedAug 26, 2024
8338979: Avoid bootstrapped switches in the classfile API
Reviewed-by: liach, asotona
1 parent 20d8f58 commit e63418e

File tree

2 files changed

+30
-18
lines changed

2 files changed

+30
-18
lines changed
 

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

+23-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2022, 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
@@ -83,17 +83,28 @@ public ClassFileImpl withOptions(Option... options) {
8383
var chro = classHierarchyResolverOption;
8484
var amo = attributeMapperOption;
8585
for (var o : options) {
86-
switch (o) {
87-
case StackMapsOption oo -> smo = oo;
88-
case DebugElementsOption oo -> deo = oo;
89-
case LineNumbersOption oo -> lno = oo;
90-
case AttributesProcessingOption oo -> apo = oo;
91-
case ConstantPoolSharingOption oo -> cpso = oo;
92-
case ShortJumpsOption oo -> sjo = oo;
93-
case DeadCodeOption oo -> dco = oo;
94-
case DeadLabelsOption oo -> dlo = oo;
95-
case ClassHierarchyResolverOption oo -> chro = oo;
96-
case AttributeMapperOption oo -> amo = oo;
86+
if (o instanceof StackMapsOption oo) {
87+
smo = oo;
88+
} else if (o instanceof DebugElementsOption oo) {
89+
deo = oo;
90+
} else if (o instanceof LineNumbersOption oo) {
91+
lno = oo;
92+
} else if (o instanceof AttributesProcessingOption oo) {
93+
apo = oo;
94+
} else if (o instanceof ConstantPoolSharingOption oo) {
95+
cpso = oo;
96+
} else if (o instanceof ShortJumpsOption oo) {
97+
sjo = oo;
98+
} else if (o instanceof DeadCodeOption oo) {
99+
dco = oo;
100+
} else if (o instanceof DeadLabelsOption oo) {
101+
dlo = oo;
102+
} else if (o instanceof ClassHierarchyResolverOption oo) {
103+
chro = oo;
104+
} else if (o instanceof AttributeMapperOption oo) {
105+
amo = oo;
106+
} else { // null or unknown Option type
107+
throw new IllegalArgumentException("Invalid option: " + o);
97108
}
98109
}
99110
return new ClassFileImpl(smo, deo, lno, apo, cpso, sjo, dco, dlo, chro, amo);

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

+7-6
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,14 @@ private static boolean equals(List<VerificationTypeInfo> l1, List<VerificationTy
161161

162162
private static void writeTypeInfo(BufWriterImpl bw, VerificationTypeInfo vti) {
163163
bw.writeU1(vti.tag());
164-
switch (vti) {
165-
case SimpleVerificationTypeInfo svti ->
164+
switch (vti.tag()) {
165+
case VT_TOP, VT_INTEGER, VT_FLOAT, VT_DOUBLE, VT_LONG, VT_NULL, VT_UNINITIALIZED_THIS ->
166166
{}
167-
case ObjectVerificationTypeInfo ovti ->
168-
bw.writeIndex(ovti.className());
169-
case UninitializedVerificationTypeInfo uvti ->
170-
bw.writeU2(bw.labelContext().labelToBci(uvti.newTarget()));
167+
case VT_OBJECT ->
168+
bw.writeIndex(((ObjectVerificationTypeInfo)vti).className());
169+
case VT_UNINITIALIZED ->
170+
bw.writeU2(bw.labelContext().labelToBci(((UninitializedVerificationTypeInfo)vti).newTarget()));
171+
default -> throw new IllegalArgumentException("Invalid verification type tag: " + vti.tag());
171172
}
172173
}
173174

0 commit comments

Comments
 (0)
Please sign in to comment.