Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8287064: Modernize ProxyGenerator.PrimitiveTypeInfo #8801

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 25 additions & 19 deletions src/java.base/share/classes/java/lang/reflect/ProxyGenerator.java
Original file line number Diff line number Diff line change
@@ -813,7 +813,7 @@ private void codeWrapArgument(MethodVisitor mv, Class<?> type, int slot) {
if (type.isPrimitive()) {
PrimitiveTypeInfo prim = PrimitiveTypeInfo.get(type);

mv.visitVarInsn(ILOAD + prim.opcodeOffset, slot);
mv.visitVarInsn(prim.loadOpcode, slot);
mv.visitMethodInsn(INVOKESTATIC, prim.wrapperClassName, "valueOf",
prim.wrapperValueOfDesc, false);
} else {
@@ -835,7 +835,7 @@ private void codeUnwrapReturnValue(MethodVisitor mv, Class<?> type) {
prim.wrapperClassName,
prim.unwrapMethodName, prim.unwrapMethodDesc, false);

mv.visitInsn(IRETURN + prim.opcodeOffset);
mv.visitInsn(prim.returnOpcode);
} else {
mv.visitTypeInsn(CHECKCAST, dotToSlash(type.getName()));
mv.visitInsn(ARETURN);
@@ -929,17 +929,17 @@ public String toString() {
* primitive type can be obtained using the static "get" method.
*/
private enum PrimitiveTypeInfo {
BYTE(byte.class, 0),
CHAR(char.class, 0),
DOUBLE(double.class, 3),
FLOAT(float.class, 2),
INT(int.class, 0),
LONG(long.class, 1),
SHORT(short.class, 0),
BOOLEAN(boolean.class, 0);
BYTE(byte.class, ILOAD),
CHAR(char.class, ILOAD),
DOUBLE(double.class, DLOAD),
FLOAT(float.class, FLOAD),
INT(int.class, ILOAD),
LONG(long.class, LLOAD),
SHORT(short.class, ILOAD),
BOOLEAN(boolean.class, ILOAD);

/**
* name of corresponding wrapper class
* internal name of corresponding wrapper class
*/
private final String wrapperClassName;
/**
@@ -955,26 +955,32 @@ private enum PrimitiveTypeInfo {
*/
private final String unwrapMethodDesc;
/**
* Opcode offset from iload, ireturn, etc.
* Order is i, l, f, d, a.
* Load opcode used by this primitive
*/
private final int opcodeOffset;
private final int loadOpcode;
/**
* Return opcode used by this primitive
*/
private final int returnOpcode;

PrimitiveTypeInfo(Class<?> primitiveClass, int opcodeOffset) {
PrimitiveTypeInfo(Class<?> primitiveClass, int loadOpcode) {
assert primitiveClass.isPrimitive();

Wrapper wrapper = Wrapper.forPrimitiveType(primitiveClass);
// single-char BaseType descriptor (see JVMS section 4.3.2)
String baseTypeString = wrapper.basicTypeString();
wrapperClassName = dotToSlash(wrapper.wrapperType().getName());
var wrapperType = wrapper.wrapperType();
wrapperClassName = dotToSlash(wrapperType.getName());
wrapperValueOfDesc =
"(" + baseTypeString + ")L" + wrapperClassName + ";";
"(" + baseTypeString + ")" + wrapperType.descriptorString();
unwrapMethodName = primitiveClass.getName() + "Value";
unwrapMethodDesc = "()" + baseTypeString;
this.opcodeOffset = opcodeOffset;
this.loadOpcode = loadOpcode;
this.returnOpcode = loadOpcode - ILOAD + IRETURN;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This could do it. It would be more explicit to take the return opcode as an argument to the constructor.

}

public static PrimitiveTypeInfo get(Class<?> cl) {
// Uses if chain for speed: 8284880
if (cl == int.class) return INT;
if (cl == long.class) return LONG;
if (cl == boolean.class) return BOOLEAN;
@@ -983,7 +989,7 @@ public static PrimitiveTypeInfo get(Class<?> cl) {
if (cl == char.class) return CHAR;
if (cl == float.class) return FLOAT;
if (cl == double.class) return DOUBLE;
throw new AssertionError();
throw new AssertionError(cl);
}
}
}