Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 2309ac5

Browse files
author
Roger Riggs
committedDec 13, 2019
8235274: Enhance typing of methods
Reviewed-by: jrose, psandoz, skoivu
1 parent 4df99aa commit 2309ac5

File tree

1 file changed

+14
-24
lines changed

1 file changed

+14
-24
lines changed
 

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

+14-24
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ class MethodType
116116

117117
// The remaining fields are caches of various sorts:
118118
private @Stable MethodTypeForm form; // erased form, plus cached data about primitives
119-
private @Stable MethodType wrapAlt; // alternative wrapped/unwrapped version
119+
private @Stable Object wrapAlt; // alternative wrapped/unwrapped version and
120+
// private communication for readObject and readResolve
120121
private @Stable Invokers invokers; // cache of handy higher-order adapters
121122
private @Stable String methodDescriptor; // cache for toMethodDescriptorString
122123

@@ -711,7 +712,7 @@ public MethodType unwrap() {
711712

712713
private static MethodType wrapWithPrims(MethodType pt) {
713714
assert(pt.hasPrimitives());
714-
MethodType wt = pt.wrapAlt;
715+
MethodType wt = (MethodType)pt.wrapAlt;
715716
if (wt == null) {
716717
// fill in lazily
717718
wt = MethodTypeForm.canonicalize(pt, MethodTypeForm.WRAP, MethodTypeForm.WRAP);
@@ -723,7 +724,7 @@ private static MethodType wrapWithPrims(MethodType pt) {
723724

724725
private static MethodType unwrapWithNoPrims(MethodType wt) {
725726
assert(!wt.hasPrimitives());
726-
MethodType uwt = wt.wrapAlt;
727+
MethodType uwt = (MethodType)wt.wrapAlt;
727728
if (uwt == null) {
728729
// fill in lazily
729730
uwt = MethodTypeForm.canonicalize(wt, MethodTypeForm.UNWRAP, MethodTypeForm.UNWRAP);
@@ -1248,27 +1249,18 @@ private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOExceptio
12481249
*/
12491250
@java.io.Serial
12501251
private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, ClassNotFoundException {
1251-
// Assign temporary defaults in case this object escapes
1252-
MethodType_init(void.class, NO_PTYPES);
1252+
// Assign defaults in case this object escapes
1253+
UNSAFE.putReference(this, OffsetHolder.rtypeOffset, void.class);
1254+
UNSAFE.putReference(this, OffsetHolder.ptypesOffset, NO_PTYPES);
12531255

12541256
s.defaultReadObject(); // requires serialPersistentFields to be an empty array
12551257

12561258
Class<?> returnType = (Class<?>) s.readObject();
12571259
Class<?>[] parameterArray = (Class<?>[]) s.readObject();
1258-
parameterArray = parameterArray.clone(); // make sure it is unshared
12591260

1260-
// Assign deserialized values
1261-
MethodType_init(returnType, parameterArray);
1262-
}
1263-
1264-
// Initialization of state for deserialization only
1265-
private void MethodType_init(Class<?> rtype, Class<?>[] ptypes) {
1266-
// In order to communicate these values to readResolve, we must
1267-
// store them into the implementation-specific final fields.
1268-
checkRtype(rtype);
1269-
checkPtypes(ptypes);
1270-
UNSAFE.putReference(this, OffsetHolder.rtypeOffset, rtype);
1271-
UNSAFE.putReference(this, OffsetHolder.ptypesOffset, ptypes);
1261+
// Verify all operands, and make sure ptypes is unshared
1262+
// Cache the new MethodType for readResolve
1263+
wrapAlt = new MethodType[]{MethodType.methodType(returnType, parameterArray)};
12721264
}
12731265

12741266
// Support for resetting final fields while deserializing. Implement Holder
@@ -1291,12 +1283,10 @@ private Object readResolve() {
12911283
// Do not use a trusted path for deserialization:
12921284
// return makeImpl(rtype, ptypes, true);
12931285
// Verify all operands, and make sure ptypes is unshared:
1294-
try {
1295-
return methodType(rtype, ptypes);
1296-
} finally {
1297-
// Re-assign defaults in case this object escapes
1298-
MethodType_init(void.class, NO_PTYPES);
1299-
}
1286+
// Return a new validated MethodType for the rtype and ptypes passed from readObject.
1287+
MethodType mt = ((MethodType[])wrapAlt)[0];
1288+
wrapAlt = null;
1289+
return mt;
13001290
}
13011291

13021292
/**

0 commit comments

Comments
 (0)
This repository has been archived.