1
1
/*
2
- * Copyright (c) 2011, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2011, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -395,7 +395,7 @@ private static Name[] buildEmptyNames(int arity, MethodType mt, boolean isVoid)
395
395
Name [] names = arguments (isVoid ? 0 : 1 , mt );
396
396
if (!isVoid ) {
397
397
Name zero = new Name (constantZero (basicType (mt .returnType ())));
398
- names [arity ] = zero .newIndex (arity );
398
+ names [arity ] = zero .withIndex (arity );
399
399
}
400
400
assert (namesOK (arity , names ));
401
401
return names ;
@@ -495,28 +495,18 @@ LambdaForm uncustomize() {
495
495
* @return true if we can interpret
496
496
*/
497
497
private static boolean normalizeNames (int arity , Name [] names ) {
498
- Name [] oldNames = null ;
498
+ Name [] oldNames = names . clone () ;
499
499
int maxOutArity = 0 ;
500
- int changesStart = 0 ;
501
500
for (int i = 0 ; i < names .length ; i ++) {
502
501
Name n = names [i ];
503
- if (!n .initIndex (i )) {
504
- if (oldNames == null ) {
505
- oldNames = names .clone ();
506
- changesStart = i ;
507
- }
508
- names [i ] = n .cloneWithIndex (i );
509
- }
502
+ names [i ] = n .withIndex (i );
510
503
if (n .arguments != null && maxOutArity < n .arguments .length )
511
504
maxOutArity = n .arguments .length ;
512
505
}
513
506
if (oldNames != null ) {
514
- int startFixing = arity ;
515
- if (startFixing <= changesStart )
516
- startFixing = changesStart +1 ;
517
- for (int i = startFixing ; i < names .length ; i ++) {
518
- Name fixed = names [i ].replaceNames (oldNames , names , changesStart , i );
519
- names [i ] = fixed .newIndex (i );
507
+ for (int i = Math .max (1 , arity ); i < names .length ; i ++) {
508
+ Name fixed = names [i ].replaceNames (oldNames , names , 0 , i );
509
+ names [i ] = fixed .withIndex (i );
520
510
}
521
511
}
522
512
int maxInterned = Math .min (arity , INTERNED_ARGUMENT_LIMIT );
@@ -1339,30 +1329,24 @@ public static String shortenSignature(String signature) {
1339
1329
1340
1330
static final class Name {
1341
1331
final BasicType type ;
1342
- @ Stable short index ;
1332
+ final short index ;
1343
1333
final NamedFunction function ;
1344
1334
final Object constraint ; // additional type information, if not null
1345
1335
@ Stable final Object [] arguments ;
1346
1336
1347
1337
private static final Object [] EMPTY_ARGS = new Object [0 ];
1348
1338
1349
- private Name (int index , BasicType type , NamedFunction function , Object [] arguments ) {
1339
+ private Name (int index , BasicType type , NamedFunction function , Object [] arguments , Object constraint ) {
1350
1340
this .index = (short )index ;
1351
1341
this .type = type ;
1352
1342
this .function = function ;
1353
1343
this .arguments = arguments ;
1354
- this .constraint = null ;
1355
- assert (this .index == index && typesMatch (function , this .arguments ));
1356
- }
1357
- private Name (Name that , Object constraint ) {
1358
- this .index = that .index ;
1359
- this .type = that .type ;
1360
- this .function = that .function ;
1361
- this .arguments = that .arguments ;
1362
1344
this .constraint = constraint ;
1345
+ assert (this .index == index && typesMatch (function , arguments ));
1363
1346
assert (constraint == null || isParam ()); // only params have constraints
1364
1347
assert (constraint == null || constraint instanceof ClassSpecializer .SpeciesData || constraint instanceof Class );
1365
1348
}
1349
+
1366
1350
Name (MethodHandle function , Object ... arguments ) {
1367
1351
this (new NamedFunction (function ), arguments );
1368
1352
}
@@ -1374,49 +1358,41 @@ private Name(Name that, Object constraint) {
1374
1358
this (new NamedFunction (function ), arguments );
1375
1359
}
1376
1360
Name (NamedFunction function ) {
1377
- this (-1 , function .returnType (), function , EMPTY_ARGS );
1361
+ this (-1 , function .returnType (), function , EMPTY_ARGS , null );
1378
1362
}
1379
1363
Name (NamedFunction function , Object arg ) {
1380
- this (-1 , function .returnType (), function , new Object [] { arg });
1364
+ this (-1 , function .returnType (), function , new Object [] { arg }, null );
1381
1365
}
1382
1366
Name (NamedFunction function , Object arg0 , Object arg1 ) {
1383
- this (-1 , function .returnType (), function , new Object [] { arg0 , arg1 });
1367
+ this (-1 , function .returnType (), function , new Object [] { arg0 , arg1 }, null );
1384
1368
}
1385
1369
Name (NamedFunction function , Object ... arguments ) {
1386
- this (-1 , function .returnType (), function , Arrays .copyOf (arguments , arguments .length , Object [].class ));
1370
+ this (-1 , function .returnType (), function , Arrays .copyOf (arguments , arguments .length , Object [].class ), null );
1387
1371
}
1388
1372
/** Create a raw parameter of the given type, with an expected index. */
1389
1373
Name (int index , BasicType type ) {
1390
- this (index , type , null , null );
1374
+ this (index , type , null , null , null );
1391
1375
}
1392
1376
/** Create a raw parameter of the given type. */
1393
1377
Name (BasicType type ) { this (-1 , type ); }
1394
1378
1395
1379
BasicType type () { return type ; }
1396
1380
int index () { return index ; }
1397
- boolean initIndex (int i ) {
1398
- if (index != i ) {
1399
- if (index != -1 ) return false ;
1400
- index = (short )i ;
1401
- }
1402
- return true ;
1403
- }
1381
+
1404
1382
char typeChar () {
1405
1383
return type .btChar ;
1406
1384
}
1407
1385
1408
- Name newIndex (int i ) {
1409
- if (initIndex (i )) return this ;
1410
- return cloneWithIndex (i );
1411
- }
1412
- Name cloneWithIndex (int i ) {
1413
- Object [] newArguments = (arguments == null ) ? null : arguments .clone ();
1414
- return new Name (i , type , function , newArguments ).withConstraint (constraint );
1386
+ Name withIndex (int i ) {
1387
+ if (i == this .index ) return this ;
1388
+ return new Name (i , type , function , arguments , constraint );
1415
1389
}
1390
+
1416
1391
Name withConstraint (Object constraint ) {
1417
1392
if (constraint == this .constraint ) return this ;
1418
- return new Name (this , constraint );
1393
+ return new Name (index , type , function , arguments , constraint );
1419
1394
}
1395
+
1420
1396
Name replaceName (Name oldName , Name newName ) { // FIXME: use replaceNames uniformly
1421
1397
if (oldName == newName ) return this ;
1422
1398
@ SuppressWarnings ("LocalVariableHidesMemberVariable" )
0 commit comments