Skip to content

Commit 676fe48

Browse files
author
Mandy Chung
committedMar 6, 2024
8327498: [lworld] Remove Q-descriptor change from ASM and other clean up
1 parent 509b4ea commit 676fe48

27 files changed

+36
-94
lines changed
 

‎src/java.base/share/classes/java/lang/constant/ClassDesc.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ default boolean isPrimitive() {
297297
* @return whether this {@linkplain ClassDesc} describes a class or interface type
298298
*/
299299
default boolean isClassOrInterface() {
300-
return descriptorString().startsWith("L") || descriptorString().startsWith("Q");
300+
return descriptorString().startsWith("L");
301301
}
302302

303303
/**

‎src/java.base/share/classes/java/lang/constant/ClassDescImpl.java

-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
*/
3737
final class ClassDescImpl implements ClassDesc {
3838
private final String descriptor;
39-
private final boolean isValue;
4039

4140
/**
4241
* Creates a {@linkplain ClassDesc} from a descriptor string for a class or
@@ -54,7 +53,6 @@ final class ClassDescImpl implements ClassDesc {
5453
|| len != descriptor.length())
5554
throw new IllegalArgumentException(String.format("not a valid reference type descriptor: %s", descriptor));
5655
this.descriptor = descriptor;
57-
this.isValue = ConstantUtils.basicType(descriptor, 0, descriptor.length(), false) == 'Q';
5856
}
5957

6058
@Override

‎src/java.base/share/classes/java/lang/invoke/DirectMethodHandle.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -548,9 +548,9 @@ static Object checkBase(Object obj) {
548548

549549
/** This subclass handles static field references. */
550550
static final class StaticAccessor extends DirectMethodHandle {
551-
final Class<?> fieldType;
552-
final Object staticBase;
553-
final long staticOffset;
551+
private final Class<?> fieldType;
552+
private final Object staticBase;
553+
private final long staticOffset;
554554

555555
private StaticAccessor(MethodType mtype, LambdaForm form, MemberName member,
556556
boolean crackable, Object staticBase, long staticOffset) {

‎src/java.base/share/classes/java/lang/invoke/MethodHandleInfo.java

-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,6 @@ public interface MethodHandleInfo {
163163
* This is {@value java.lang.constant.ConstantDescs#INIT_NAME}
164164
* if the underlying member was a constructor,
165165
* else it is a simple method name or field name.
166-
* was a constructor, else it is a simple method name or field name.
167166
* @return the simple name of the underlying member
168167
*/
169168
public String getName();

‎src/java.base/share/classes/java/lang/invoke/MethodHandleNatives.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -602,12 +602,12 @@ static String getVarHandleGuardMethodName(MethodType guardType) {
602602
sb.append(prefix);
603603
for (int i = 1; i < guardType.parameterCount() - 1; i++) {
604604
Class<?> pt = guardType.parameterType(i);
605-
sb.append(getCharErasedType(pt));
605+
sb.append(getCharType(pt));
606606
}
607-
sb.append('_').append(getCharErasedType(guardType.returnType()));
607+
sb.append('_').append(getCharType(guardType.returnType()));
608608
return sb.toString();
609609
}
610-
static char getCharErasedType(Class<?> pt) {
610+
static char getCharType(Class<?> pt) {
611611
return Wrapper.forBasicType(pt).basicTypeChar();
612612
}
613613
static NoSuchMethodError newNoSuchMethodErrorOnVarHandle(String name, MethodType mtype) {

‎src/java.base/share/classes/java/lang/invoke/MethodHandles.java

-1
Original file line numberDiff line numberDiff line change
@@ -3797,7 +3797,6 @@ MemberName resolveOrNull(byte refKind, Class<?> refc, String name, MethodType ty
37973797
if (name.startsWith("<") && refKind != REF_newInvokeSpecial) {
37983798
return null;
37993799
}
3800-
38013800
return IMPL_NAMES.resolveOrNull(refKind, new MemberName(refc, name, type, refKind), lookupClassOrNull(), allowedModes);
38023801
}
38033802

‎src/java.base/share/classes/jdk/internal/classfile/Classfile.java

-1
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,6 @@ default byte[] transform(ClassModel model, ClassDesc newClassName, ClassTransfor
10741074

10751075
/** 0x0040 */
10761076
int ACC_VOLATILE = 0x0040;
1077-
int ACC_VALUE = 0x0040;
10781077

10791078
/** 0x0080 */
10801079
int ACC_TRANSIENT = 0x0080;

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/ClassReader.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -1854,8 +1854,6 @@ private void readCode(
18541854
case Opcodes.PUTSTATIC:
18551855
case Opcodes.GETFIELD:
18561856
case Opcodes.PUTFIELD:
1857-
case Opcodes.DEFAULT:
1858-
case Opcodes.WITHFIELD:
18591857
case Opcodes.INVOKEVIRTUAL:
18601858
case Opcodes.INVOKESPECIAL:
18611859
case Opcodes.INVOKESTATIC:
@@ -2468,19 +2466,18 @@ private void readCode(
24682466
case Opcodes.INVOKESPECIAL:
24692467
case Opcodes.INVOKESTATIC:
24702468
case Opcodes.INVOKEINTERFACE:
2471-
case Opcodes.WITHFIELD:
24722469
{
24732470
int cpInfoOffset = cpInfoOffsets[readUnsignedShort(currentOffset + 1)];
24742471
int nameAndTypeCpInfoOffset = cpInfoOffsets[readUnsignedShort(cpInfoOffset + 2)];
24752472
String owner = readClass(cpInfoOffset, charBuffer);
24762473
String name = readUTF8(nameAndTypeCpInfoOffset, charBuffer);
24772474
String descriptor = readUTF8(nameAndTypeCpInfoOffset + 2, charBuffer);
2478-
if (opcode >= Opcodes.INVOKEVIRTUAL && opcode <= Opcodes.INVOKEINTERFACE) {
2475+
if (opcode < Opcodes.INVOKEVIRTUAL) {
2476+
methodVisitor.visitFieldInsn(opcode, owner, name, descriptor);
2477+
} else {
24792478
boolean isInterface =
24802479
classBuffer[cpInfoOffset - 1] == Symbol.CONSTANT_INTERFACE_METHODREF_TAG;
24812480
methodVisitor.visitMethodInsn(opcode, owner, name, descriptor, isInterface);
2482-
} else {
2483-
methodVisitor.visitFieldInsn(opcode, owner, name, descriptor);
24842481
}
24852482
if (opcode == Opcodes.INVOKEINTERFACE) {
24862483
currentOffset += 5;
@@ -2515,7 +2512,6 @@ private void readCode(
25152512
case Opcodes.ANEWARRAY:
25162513
case Opcodes.CHECKCAST:
25172514
case Opcodes.INSTANCEOF:
2518-
case Opcodes.DEFAULT:
25192515
methodVisitor.visitTypeInsn(opcode, readClass(currentOffset + 1, charBuffer));
25202516
currentOffset += 3;
25212517
break;
@@ -3267,8 +3263,7 @@ private void computeImplicitFrame(final Context context) {
32673263
while (methodDescriptor.charAt(currentMethodDescritorOffset) == '[') {
32683264
++currentMethodDescritorOffset;
32693265
}
3270-
char descType = methodDescriptor.charAt(currentMethodDescritorOffset);
3271-
if (descType == 'L' || descType == 'Q') {
3266+
if (methodDescriptor.charAt(currentMethodDescritorOffset) == 'L') {
32723267
++currentMethodDescritorOffset;
32733268
while (methodDescriptor.charAt(currentMethodDescritorOffset) != ';') {
32743269
++currentMethodDescritorOffset;

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/Constants.java

+5-9
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,10 @@ final class Constants {
185185

186186
// The delta between the ASM_IFEQ, ..., ASM_IF_ACMPNE, ASM_GOTO and ASM_JSR opcodes
187187
// and IFEQ, ..., IF_ACMPNE, GOTO and JSR.
188-
// Offset to next available opcode after WITHFIELD from IFEQ
189-
static final int ASM_OPCODE_DELTA = (Opcodes.WITHFIELD + 1) - Opcodes.IFEQ;
188+
static final int ASM_OPCODE_DELTA = 49;
189+
190+
// The delta between the ASM_IFNULL and ASM_IFNONNULL opcodes and IFNULL and IFNONNULL.
191+
static final int ASM_IFNULL_OPCODE_DELTA = 20;
190192

191193
// ASM specific opcodes, used for long forward jump instructions.
192194

@@ -206,14 +208,9 @@ final class Constants {
206208
static final int ASM_IF_ACMPNE = Opcodes.IF_ACMPNE + ASM_OPCODE_DELTA;
207209
static final int ASM_GOTO = Opcodes.GOTO + ASM_OPCODE_DELTA;
208210
static final int ASM_JSR = Opcodes.JSR + ASM_OPCODE_DELTA;
209-
210-
// The delta between the ASM_IFNULL and ASM_IFNONNULL opcodes and IFNULL and IFNONNULL.
211-
// Offset to next available opcode after ASM_JSR from IFNULL.
212-
static final int ASM_IFNULL_OPCODE_DELTA = (ASM_JSR + 1) - Opcodes.IFNULL;
213-
214211
static final int ASM_IFNULL = Opcodes.IFNULL + ASM_IFNULL_OPCODE_DELTA;
215212
static final int ASM_IFNONNULL = Opcodes.IFNONNULL + ASM_IFNULL_OPCODE_DELTA;
216-
static final int ASM_GOTO_W = GOTO_W + ASM_IFNULL_OPCODE_DELTA;
213+
static final int ASM_GOTO_W = 220;
217214

218215
private Constants() {}
219216

@@ -254,4 +251,3 @@ static void checkIsPreview(final InputStream classInputStream) {
254251
}
255252
}
256253
}
257-

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/Frame.java

-2
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,6 @@ private static int getAbstractTypeFromDescriptor(
361361
case 'D':
362362
return DOUBLE;
363363
case 'L':
364-
case 'Q':
365364
internalName = buffer.substring(offset + 1, buffer.length() - 1);
366365
return REFERENCE_KIND | symbolTable.addType(internalName);
367366
case '[':
@@ -396,7 +395,6 @@ private static int getAbstractTypeFromDescriptor(
396395
typeValue = DOUBLE;
397396
break;
398397
case 'L':
399-
case 'Q':
400398
internalName = buffer.substring(elementDescriptorOffset + 1, buffer.length() - 1);
401399
typeValue = REFERENCE_KIND | symbolTable.addType(internalName);
402400
break;

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/MethodWriter.java

+2-8
Original file line numberDiff line numberDiff line change
@@ -312,10 +312,7 @@ final class MethodWriter extends MethodVisitor {
312312
-1, // ifnull = 198 (0xc6)
313313
-1, // ifnonnull = 199 (0xc7)
314314
NA, // goto_w = 200 (0xc8)
315-
NA, // jsr_w = 201 (0xc9)
316-
NA, // breakpoint = 202 (0xca)
317-
NA, // default = 203 (0xcb)
318-
NA, // withfield = 204 (0xcc)
315+
NA // jsr_w = 201 (0xc9)
319316
};
320317

321318
/** Where the constants used in this MethodWriter must be stored. */
@@ -1011,7 +1008,7 @@ public void visitTypeInsn(final int opcode, final String type) {
10111008
if (currentBasicBlock != null) {
10121009
if (compute == COMPUTE_ALL_FRAMES || compute == COMPUTE_INSERTED_FRAMES) {
10131010
currentBasicBlock.frame.execute(opcode, lastBytecodeOffset, typeSymbol, symbolTable);
1014-
} else if (opcode == Opcodes.NEW || opcode == Opcodes.DEFAULT) {
1011+
} else if (opcode == Opcodes.NEW) {
10151012
// The stack size delta is 1 for NEW, and 0 for ANEWARRAY, CHECKCAST, or INSTANCEOF.
10161013
int size = relativeStackSize + 1;
10171014
if (size > maxRelativeStackSize) {
@@ -1037,9 +1034,6 @@ public void visitFieldInsn(
10371034
int size;
10381035
char firstDescChar = descriptor.charAt(0);
10391036
switch (opcode) {
1040-
case Opcodes.WITHFIELD:
1041-
size = relativeStackSize + (firstDescChar == 'D' || firstDescChar == 'J' ? -2 : -1);
1042-
break;
10431037
case Opcodes.GETSTATIC:
10441038
size = relativeStackSize + (firstDescChar == 'D' || firstDescChar == 'J' ? 2 : 1);
10451039
break;

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/Opcodes.java

-5
Original file line numberDiff line numberDiff line change
@@ -338,16 +338,13 @@ public interface Opcodes {
338338
int ACC_OPEN = 0x0020; // module
339339
int ACC_TRANSITIVE = 0x0020; // module requires
340340
int ACC_VOLATILE = 0x0040; // field
341-
int ACC_VALUE = 0x0040; // class
342341
int ACC_BRIDGE = 0x0040; // method
343342
int ACC_STATIC_PHASE = 0x0040; // module requires
344343
int ACC_VARARGS = 0x0080; // method
345344
int ACC_TRANSIENT = 0x0080; // field
346345
int ACC_NATIVE = 0x0100; // method
347-
int ACC_INLINE = 0x0100; // inline class
348346
int ACC_INTERFACE = 0x0200; // class
349347
int ACC_ABSTRACT = 0x0400; // class, method
350-
int ACC_PRIMITIVE = 0x0800; // class
351348
int ACC_STRICT = 0x0800; // method
352349
int ACC_SYNTHETIC = 0x1000; // class, field, method, parameter, module *
353350
int ACC_ANNOTATION = 0x2000; // class
@@ -590,7 +587,5 @@ public interface Opcodes {
590587
int MULTIANEWARRAY = 197; // visitMultiANewArrayInsn
591588
int IFNULL = 198; // visitJumpInsn
592589
int IFNONNULL = 199; // -
593-
int DEFAULT = 203; // visitTypeInsn
594-
int WITHFIELD = 204; // visitFieldInsn
595590
}
596591

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/Type.java

+5-16
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,7 @@
6060
package jdk.internal.org.objectweb.asm;
6161

6262
import java.lang.reflect.Constructor;
63-
import java.lang.reflect.InvocationTargetException;
6463
import java.lang.reflect.Method;
65-
import java.lang.reflect.Modifier;
6664

6765
/**
6866
* A Java field or method type. This class can be used to make it easier to manipulate type and
@@ -337,8 +335,7 @@ public static Type[] getArgumentTypes(final String methodDescriptor) {
337335
while (methodDescriptor.charAt(currentOffset) == '[') {
338336
currentOffset++;
339337
}
340-
char c = methodDescriptor.charAt(currentOffset++);
341-
if (c == 'L' || c == 'Q') {
338+
if (methodDescriptor.charAt(currentOffset++) == 'L') {
342339
// Skip the argument descriptor content.
343340
int semiColumnOffset = methodDescriptor.indexOf(';', currentOffset);
344341
currentOffset = Math.max(currentOffset, semiColumnOffset + 1);
@@ -357,8 +354,7 @@ public static Type[] getArgumentTypes(final String methodDescriptor) {
357354
while (methodDescriptor.charAt(currentOffset) == '[') {
358355
currentOffset++;
359356
}
360-
char c = methodDescriptor.charAt(currentOffset++);
361-
if (c == 'L' || c == 'Q') {
357+
if (methodDescriptor.charAt(currentOffset++) == 'L') {
362358
// Skip the argument descriptor content.
363359
int semiColumnOffset = methodDescriptor.indexOf(';', currentOffset);
364360
currentOffset = Math.max(currentOffset, semiColumnOffset + 1);
@@ -429,8 +425,7 @@ static int getReturnTypeOffset(final String methodDescriptor) {
429425
while (methodDescriptor.charAt(currentOffset) == '[') {
430426
currentOffset++;
431427
}
432-
char c = methodDescriptor.charAt(currentOffset++);
433-
if (c == 'L' || c == 'Q') {
428+
if (methodDescriptor.charAt(currentOffset++) == 'L') {
434429
// Skip the argument descriptor content.
435430
int semiColumnOffset = methodDescriptor.indexOf(';', currentOffset);
436431
currentOffset = Math.max(currentOffset, semiColumnOffset + 1);
@@ -473,7 +468,6 @@ private static Type getTypeInternal(
473468
case '[':
474469
return new Type(ARRAY, descriptorBuffer, descriptorBegin, descriptorEnd);
475470
case 'L':
476-
case 'Q':
477471
return new Type(OBJECT, descriptorBuffer, descriptorBegin + 1, descriptorEnd - 1);
478472
case '(':
479473
return new Type(METHOD, descriptorBuffer, descriptorBegin, descriptorEnd);
@@ -679,14 +673,10 @@ private static void appendDescriptor(final Class<?> clazz, final StringBuilder s
679673
}
680674
stringBuilder.append(descriptor);
681675
} else {
682-
stringBuilder.append(isPrimitiveClass(currentClass) ? 'Q' : 'L').append(getInternalName(currentClass)).append(';');
676+
stringBuilder.append('L').append(getInternalName(currentClass)).append(';');
683677
}
684678
}
685679

686-
static boolean isPrimitiveClass(Class<?> clazz) {
687-
return (clazz.getModifiers() & Opcodes.ACC_PRIMITIVE) != 0;
688-
}
689-
690680
// -----------------------------------------------------------------------------------------------
691681
// Methods to get the sort, dimension, size, and opcodes corresponding to a Type or descriptor.
692682
// -----------------------------------------------------------------------------------------------
@@ -780,8 +770,7 @@ public static int getArgumentsAndReturnSizes(final String methodDescriptor) {
780770
while (methodDescriptor.charAt(currentOffset) == '[') {
781771
currentOffset++;
782772
}
783-
char c = methodDescriptor.charAt(currentOffset++);
784-
if (c == 'L' || c == 'Q') {
773+
if (methodDescriptor.charAt(currentOffset++) == 'L') {
785774
// Skip the argument descriptor content.
786775
int semiColumnOffset = methodDescriptor.indexOf(';', currentOffset);
787776
currentOffset = Math.max(currentOffset, semiColumnOffset + 1);

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/AnalyzerAdapter.java

-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,6 @@ private void pushDescriptor(final String fieldOrMethodDescriptor) {
533533
push(descriptor);
534534
break;
535535
case 'L':
536-
case 'Q':
537536
push(descriptor.substring(1, descriptor.length() - 1));
538537
break;
539538
default:

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/Method.java

-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,6 @@ private static String getDescriptorInternal(final String type, final boolean def
223223
if (descriptor != null) {
224224
stringBuilder.append(descriptor);
225225
} else {
226-
// FIXME: support Q-type
227226
stringBuilder.append('L');
228227
if (elementType.indexOf('.') < 0) {
229228
if (!defaultPackage) {

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/Remapper.java

-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ public abstract class Remapper {
8484
*/
8585
public String mapDesc(final String descriptor) {
8686
return mapType(Type.getType(descriptor)).getDescriptor();
87-
// FIXME: support Q-type
8887
}
8988

9089
/**

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/signature/SignatureReader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void accept(final SignatureVisitor signatureVistor) {
115115
// ReferenceTypeSignature, it means the class bound is empty (which is a valid case).
116116
offset = classBoundStartOffset + 1;
117117
currentChar = signature.charAt(offset);
118-
if (currentChar == 'L' || currentChar == 'Q' || currentChar == '[' || currentChar == 'T') {
118+
if (currentChar == 'L' || currentChar == '[' || currentChar == 'T') {
119119
offset = parseType(signature, offset, signatureVistor.visitClassBound());
120120
}
121121

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/CheckClassAdapter.java

+4-9
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ public static void checkClassSignature(final String signature) {
639639
pos = checkTypeParameters(signature, pos);
640640
}
641641
pos = checkClassTypeSignature(signature, pos);
642-
while (getChar(signature, pos) == 'L' || getChar(signature, pos) == 'Q') {
642+
while (getChar(signature, pos) == 'L') {
643643
pos = checkClassTypeSignature(signature, pos);
644644
}
645645
if (pos != signature.length()) {
@@ -667,7 +667,7 @@ public static void checkMethodSignature(final String signature) {
667667
pos = checkTypeParameters(signature, pos);
668668
}
669669
pos = checkChar('(', signature, pos);
670-
while ("ZCBSIFJDLQ[T".indexOf(getChar(signature, pos)) != -1) {
670+
while ("ZCBSIFJDL[T".indexOf(getChar(signature, pos)) != -1) {
671671
pos = checkJavaTypeSignature(signature, pos);
672672
}
673673
pos = checkChar(')', signature, pos);
@@ -678,7 +678,7 @@ public static void checkMethodSignature(final String signature) {
678678
}
679679
while (getChar(signature, pos) == '^') {
680680
++pos;
681-
if (getChar(signature, pos) == 'L' || getChar(signature, pos) == 'Q') {
681+
if (getChar(signature, pos) == 'L') {
682682
pos = checkClassTypeSignature(signature, pos);
683683
} else {
684684
pos = checkTypeVariableSignature(signature, pos);
@@ -794,12 +794,7 @@ private static int checkClassTypeSignature(final String signature, final int sta
794794
// ClassTypeSignatureSuffix:
795795
// . SimpleClassTypeSignature
796796
int pos = startPos;
797-
if (getChar(signature, pos) == 'L' || getChar(signature, pos) == 'Q') {
798-
pos = pos + 1;
799-
} else {
800-
throw new IllegalArgumentException(signature + ": 'L' or 'Q' expected at index " + pos);
801-
}
802-
797+
pos = checkChar('L', signature, pos);
803798
pos = checkSignatureIdentifier(signature, pos);
804799
while (getChar(signature, pos) == '/') {
805800
pos = checkSignatureIdentifier(signature, pos + 1);

‎src/java.base/share/classes/jdk/internal/org/objectweb/asm/util/CheckMethodAdapter.java

-1
Original file line numberDiff line numberDiff line change
@@ -1418,7 +1418,6 @@ private static int checkDescriptor(
14181418
throw new IllegalArgumentException(INVALID_DESCRIPTOR + descriptor);
14191419
}
14201420
case 'L':
1421-
case 'Q':
14221421
int endPos = descriptor.indexOf(';', startPos);
14231422
if (startPos == -1 || endPos - startPos < 2) {
14241423
throw new IllegalArgumentException(INVALID_DESCRIPTOR + descriptor);

‎src/java.base/share/classes/jdk/internal/reflect/AccessorGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ protected boolean isPrivate() {
419419
return "[" + getClassName(c.getComponentType(), true);
420420
} else {
421421
if (addPrefixAndSuffixForNonPrimitiveTypes) {
422-
return c.descriptorString();
422+
return internalize("L" + c.getName() + ";");
423423
} else {
424424
return internalize(c.getName());
425425
}

‎src/java.base/share/classes/jdk/internal/reflect/SerializationConstructorAccessorGenerator.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ private MagicAccessorImpl generate(final Class<?> declaringClass,
299299
for (int i = 0; i < parameterTypes.length; i++) {
300300
Class<?> c = parameterTypes[i];
301301
if (!isPrimitive(c)) {
302-
asm.emitConstantPoolUTF8(getClassName(c, true));
302+
asm.emitConstantPoolUTF8(getClassName(c, false));
303303
asm.emitConstantPoolClass(asm.cpi());
304304
}
305305
}

‎src/java.base/share/classes/sun/invoke/util/VerifyAccess.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2008, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2008, 2021, 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
@@ -27,7 +27,6 @@
2727

2828
import java.lang.reflect.Modifier;
2929
import static java.lang.reflect.Modifier.*;
30-
3130
import jdk.internal.reflect.Reflection;
3231

3332
/**

‎test/jdk/TEST.groups

-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ jdk_lang = \
112112
jdk/internal/ref \
113113
jdk/internal/jimage \
114114
jdk/internal/math \
115-
jdk/modules \
116115
jdk/internal/vm \
117116
jdk/modules \
118117
jni/nullCaller \

‎test/jdk/java/lang/Class/ArrayMethods.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public void testGetInterfaces() {
102102
if (thisFailed) {
103103
failed++;
104104
System.out.println(Arrays.asList(is));
105-
System.out.println("Should contain exactly Cloneable and Serializable in that order.");
105+
System.out.println("Should contain exactly Cloneable, Serializable in that order.");
106106
}
107107
}
108108
}

‎test/jdk/java/lang/Class/GenericStringTest.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* @summary Check Class.toGenericString()
2828
* @author Joseph D. Darcy
2929
* @compile GenericStringTest.java
30-
* @run main/othervm -XX:+EnableValhalla -XX:+EnablePrimitiveClasses GenericStringTest
30+
* @run main/othervm -XX:+EnableValhalla GenericStringTest
3131
*/
3232

3333
import java.lang.reflect.*;
@@ -73,8 +73,7 @@ public static void main(String... args) throws ReflectiveOperationException {
7373
LocalMap.class,
7474
AnEnum.class,
7575
AnotherEnum.class,
76-
AValueClass.class,
77-
APrimitiveClass.class)) {
76+
AValueClass.class)) {
7877
failures += checkToGenericString(clazz, clazz.getAnnotation(ExpectedGenericString.class).value());
7978
}
8079

@@ -117,7 +116,4 @@ enum AnotherEnum {
117116
}
118117

119118
@ExpectedGenericString("final value class AValueClass<E>")
120-
value class AValueClass<E> {}
121-
122-
@ExpectedGenericString("final primitive class APrimitiveClass<E>")
123-
primitive class APrimitiveClass<E> {}
119+
value class AValueClass<E> {}

‎test/jdk/java/lang/invoke/TEST.properties

-5
This file was deleted.

‎test/langtools/tools/javac/classfiles/InnerClasses/SyntheticClasses.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ private void run() throws IOException {
5050
File testClasses = new File(System.getProperty("test.classes"));
5151
for (File classFile : Objects.requireNonNull(testClasses.listFiles(f -> f.getName().endsWith(".class")))) {
5252
ClassModel cf = Classfile.of().parse(classFile.toPath());
53-
if ((cf.flags().flagsMask() & (Classfile.ACC_SYNTHETIC | Classfile.ACC_VALUE | Classfile.ACC_ABSTRACT)) == Classfile.ACC_SYNTHETIC) {
53+
if ((cf.flags().flagsMask() & (Classfile.ACC_SYNTHETIC | Classfile.ACC_ABSTRACT)) == Classfile.ACC_SYNTHETIC) {
5454
if ((cf.flags().flagsMask() & Classfile.ACC_IDENTITY) == 0) {
5555
throw new IllegalStateException("Missing ACC_IDENTITY on synthetic concrete identity class: " + cf.thisClass().asInternalName());
5656
}

0 commit comments

Comments
 (0)
Please sign in to comment.