@@ -116,7 +116,8 @@ class MethodType
116
116
117
117
// The remaining fields are caches of various sorts:
118
118
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
120
121
private @ Stable Invokers invokers ; // cache of handy higher-order adapters
121
122
private @ Stable String methodDescriptor ; // cache for toMethodDescriptorString
122
123
@@ -711,7 +712,7 @@ public MethodType unwrap() {
711
712
712
713
private static MethodType wrapWithPrims (MethodType pt ) {
713
714
assert (pt .hasPrimitives ());
714
- MethodType wt = pt .wrapAlt ;
715
+ MethodType wt = ( MethodType ) pt .wrapAlt ;
715
716
if (wt == null ) {
716
717
// fill in lazily
717
718
wt = MethodTypeForm .canonicalize (pt , MethodTypeForm .WRAP , MethodTypeForm .WRAP );
@@ -723,7 +724,7 @@ private static MethodType wrapWithPrims(MethodType pt) {
723
724
724
725
private static MethodType unwrapWithNoPrims (MethodType wt ) {
725
726
assert (!wt .hasPrimitives ());
726
- MethodType uwt = wt .wrapAlt ;
727
+ MethodType uwt = ( MethodType ) wt .wrapAlt ;
727
728
if (uwt == null ) {
728
729
// fill in lazily
729
730
uwt = MethodTypeForm .canonicalize (wt , MethodTypeForm .UNWRAP , MethodTypeForm .UNWRAP );
@@ -1248,27 +1249,18 @@ private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOExceptio
1248
1249
*/
1249
1250
@ java .io .Serial
1250
1251
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 );
1253
1255
1254
1256
s .defaultReadObject (); // requires serialPersistentFields to be an empty array
1255
1257
1256
1258
Class <?> returnType = (Class <?>) s .readObject ();
1257
1259
Class <?>[] parameterArray = (Class <?>[]) s .readObject ();
1258
- parameterArray = parameterArray .clone (); // make sure it is unshared
1259
1260
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 )};
1272
1264
}
1273
1265
1274
1266
// Support for resetting final fields while deserializing. Implement Holder
@@ -1291,12 +1283,10 @@ private Object readResolve() {
1291
1283
// Do not use a trusted path for deserialization:
1292
1284
// return makeImpl(rtype, ptypes, true);
1293
1285
// 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 ;
1300
1290
}
1301
1291
1302
1292
/**
0 commit comments