@@ -1364,13 +1364,13 @@ private unsafe static (int utfadjust, int scalaradjust) calculateErrorPathadjust
1364
1364
{
1365
1365
1366
1366
Vector128 < byte > currentBlock = AdvSimd . LoadVector128 ( pInputBuffer + processedLength ) ;
1367
- if ( AdvSimd . Arm64 . MaxAcross ( Vector128 . AsUInt32 ( AdvSimd . And ( currentBlock , v80 ) ) ) . ToScalar ( ) == 0 )
1367
+ if ( ( currentBlock & v80 ) == Vector128 < byte > . Zero )
1368
1368
// We could also use (AdvSimd.Arm64.MaxAcross(currentBlock).ToScalar() <= 127) but it is slower on some
1369
1369
// hardware.
1370
1370
{
1371
1371
// We have an ASCII block, no need to process it, but
1372
1372
// we need to check if the previous block was incomplete.
1373
- if ( AdvSimd . Arm64 . MaxAcross ( prevIncomplete ) . ToScalar ( ) != 0 )
1373
+ if ( prevIncomplete != Vector128 < byte > . Zero )
1374
1374
{
1375
1375
int off = processedLength >= 3 ? processedLength - 3 : processedLength ;
1376
1376
byte * invalidBytePointer = SimdUnicode . UTF8 . SimpleRewindAndValidateWithErrors ( 16 - 3 , pInputBuffer + processedLength - 3 , inputLength - processedLength + 3 ) ;
@@ -1404,7 +1404,7 @@ private unsafe static (int utfadjust, int scalaradjust) calculateErrorPathadjust
1404
1404
Vector128 < byte > block4 = AdvSimd . LoadVector128 ( pInputBuffer + processedLength + localasciirun + 48 ) ;
1405
1405
Vector128 < byte > or = AdvSimd . Or ( AdvSimd . Or ( block1 , block2 ) , AdvSimd . Or ( block3 , block4 ) ) ;
1406
1406
1407
- if ( AdvSimd . Arm64 . MaxAcross ( Vector128 . AsUInt32 ( AdvSimd . And ( or , v80 ) ) ) . ToScalar ( ) != 0 )
1407
+ if ( ( or & v80 ) != Vector128 < byte > . Zero )
1408
1408
{
1409
1409
break ;
1410
1410
}
@@ -1435,7 +1435,7 @@ private unsafe static (int utfadjust, int scalaradjust) calculateErrorPathadjust
1435
1435
// AdvSimd.Arm64.MaxAcross(error) works, but it might be slower
1436
1436
// than AdvSimd.Arm64.MaxAcross(Vector128.AsUInt32(error)) on some
1437
1437
// hardware:
1438
- if ( AdvSimd . Arm64 . MaxAcross ( Vector128 . AsUInt32 ( error ) ) . ToScalar ( ) != 0 )
1438
+ if ( error != Vector128 < byte > . Zero )
1439
1439
{
1440
1440
byte * invalidBytePointer ;
1441
1441
if ( processedLength == 0 )
@@ -1461,16 +1461,15 @@ private unsafe static (int utfadjust, int scalaradjust) calculateErrorPathadjust
1461
1461
prevIncomplete = AdvSimd . SubtractSaturate ( currentBlock , maxValue ) ;
1462
1462
contbytes += - AdvSimd . Arm64 . AddAcross ( AdvSimd . CompareLessThanOrEqual ( Vector128 . AsSByte ( currentBlock ) , largestcont ) ) . ToScalar ( ) ;
1463
1463
Vector128 < byte > largerthan0f = AdvSimd . CompareGreaterThan ( currentBlock , fourthByteMinusOne ) ;
1464
- ulong n4marker = AdvSimd . Arm64 . MaxAcross ( Vector128 . AsUInt32 ( largerthan0f ) ) . ToScalar ( ) ;
1465
- if ( n4marker != 0 )
1464
+ if ( largerthan0f != Vector128 < byte > . Zero )
1466
1465
{
1467
1466
byte n4add = ( byte ) AdvSimd . Arm64 . AddAcross ( largerthan0f ) . ToScalar ( ) ;
1468
1467
int negn4add = ( int ) ( byte ) - n4add ;
1469
1468
n4 += negn4add ;
1470
1469
}
1471
1470
}
1472
1471
}
1473
- bool hasIncompete = AdvSimd . Arm64 . MaxAcross ( Vector128 . AsUInt32 ( prevIncomplete ) ) . ToScalar ( ) != 0 ;
1472
+ bool hasIncompete = ( prevIncomplete != Vector128 < byte > . Zero ) ;
1474
1473
if ( processedLength < inputLength || hasIncompete )
1475
1474
{
1476
1475
byte * invalidBytePointer ;
0 commit comments