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

8330595: Invoke ObjectMethods::bootstrap method exactly #18845

Closed
wants to merge 4 commits into from
Closed
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2022, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
@@ -145,6 +145,9 @@ else if (info.getClass() == int[].class) {
} else if (isLambdaMetafactoryAltMetafactoryBSM(bsmType)) {
maybeReBoxElements(argv);
result = (CallSite)bootstrapMethod.invokeExact(caller, name, (MethodType)type, argv);
} else if (isObjectMethodsBootstrapBSM(bsmType)) {
MethodHandle[] mhs = Arrays.copyOfRange(argv, 2, argv.length, MethodHandle[].class);
result = bootstrapMethod.invokeExact(caller, name, (TypeDescriptor)type, (Class<?>)argv[0], (String)argv[1], mhs);
} else {
maybeReBoxElements(argv);
if (type instanceof Class<?> c) {
@@ -189,7 +192,6 @@ else if (info.getClass() == int[].class) {
}
}


/**
* If resultType is a reference type, do Class::cast on the result through
* an identity function of that type, as-type converted to return
@@ -247,6 +249,9 @@ private static Object invokeWithManyArguments(MethodHandle bootstrapMethod, Look
private static final MethodType LMF_ALT_MT = MethodType.methodType(CallSite.class,
Lookup.class, String.class, MethodType.class, Object[].class);

private static final MethodType OBJECT_METHODS_MT = MethodType.methodType(Object.class,
Lookup.class, String.class, TypeDescriptor.class, Class.class, String.class, MethodHandle[].class);

private static final MethodType LMF_CONDY_MT = MethodType.methodType(Object.class,
Lookup.class, String.class, Class.class, MethodType.class, MethodHandle.class, MethodType.class);

@@ -289,6 +294,15 @@ private static boolean isLambdaMetafactoryAltMetafactoryBSM(MethodType bsmType)
return bsmType == LMF_ALT_MT;
}

/**
* @return true iff the BSM method type exactly matches
* {@link java.lang.runtime.ObjectMethods#bootstrap(
* MethodHandles.Lookup,String,TypeDescriptor,Class,String,MethodHandle[])}
*/
private static boolean isObjectMethodsBootstrapBSM(MethodType bsmType) {
return bsmType == OBJECT_METHODS_MT;
}

/** The JVM produces java.lang.Integer values to box
* CONSTANT_Integer boxes but does not intern them.
* Let's intern them. This is slightly wrong for