8283892: Compress and expand bits
Reviewed-by: alanb, redestad
This commit is contained in:
parent
160eb2bd39
commit
fbb0916090
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1994, 2022, 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
|
||||
@ -25,17 +25,18 @@
|
||||
|
||||
package java.lang;
|
||||
|
||||
import java.lang.annotation.Native;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.lang.constant.Constable;
|
||||
import java.lang.constant.ConstantDesc;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
|
||||
import jdk.internal.misc.CDS;
|
||||
import jdk.internal.misc.VM;
|
||||
import jdk.internal.vm.annotation.ForceInline;
|
||||
import jdk.internal.vm.annotation.IntrinsicCandidate;
|
||||
|
||||
import java.lang.annotation.Native;
|
||||
import java.lang.constant.Constable;
|
||||
import java.lang.constant.ConstantDesc;
|
||||
import java.lang.invoke.MethodHandles;
|
||||
import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
|
||||
import static java.lang.String.COMPACT_STRINGS;
|
||||
import static java.lang.String.LATIN1;
|
||||
import static java.lang.String.UTF16;
|
||||
@ -1769,6 +1770,226 @@ public final class Integer extends Number
|
||||
return reverseBytes(i);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value obtained by compressing the bits of the
|
||||
* specified {@code int} value, {@code i}, in accordance with
|
||||
* the specified bit mask.
|
||||
* <p>
|
||||
* For each one-bit value {@code mb} of the mask, from least
|
||||
* significant to most significant, the bit value of {@code i} at
|
||||
* the same bit location as {@code mb} is assigned to the compressed
|
||||
* value contiguously starting from the least significant bit location.
|
||||
* All the upper remaining bits of the compressed value are set
|
||||
* to zero.
|
||||
*
|
||||
* @apiNote
|
||||
* Consider the simple case of compressing the digits of a hexadecimal
|
||||
* value:
|
||||
* {@snippet lang="java" :
|
||||
* // Compressing drink to food
|
||||
* compress(0xCAFEBABE, 0xFF00FFF0) == 0xCABAB
|
||||
* }
|
||||
* Starting from the least significant hexadecimal digit at position 0
|
||||
* from the right, the mask {@code 0xFF00FFF0} selects hexadecimal digits
|
||||
* at positions 1, 2, 3, 6 and 7 of {@code 0xCAFEBABE}. The selected digits
|
||||
* occur in the resulting compressed value contiguously from digit position
|
||||
* 0 in the same order.
|
||||
* <p>
|
||||
* The following identities all return {@code true} and are helpful to
|
||||
* understand the behaviour of {@code compress}:
|
||||
* {@snippet lang="java" :
|
||||
* // Returns 1 if the bit at position n is one
|
||||
* compress(x, 1 << n) == (x >> n & 1)
|
||||
*
|
||||
* // Logical shift right
|
||||
* compress(x, -1 << n) == x >>> n
|
||||
*
|
||||
* // Any bits not covered by the mask are ignored
|
||||
* compress(x, m) == compress(x & m, m)
|
||||
*
|
||||
* // Compressing a value by itself
|
||||
* compress(m, m) == (m == -1 || m == 0) ? m : (1 << bitCount(m)) - 1
|
||||
*
|
||||
* // Expanding then compressing with the same mask
|
||||
* compress(expand(x, m), m) == x & compress(m, m)
|
||||
* }
|
||||
* <p>
|
||||
* The Sheep And Goats (SAG) operation (see Hacker's Delight, section 7.7)
|
||||
* can be implemented as follows:
|
||||
* {@snippet lang="java" :
|
||||
* int compressLeft(int i, int mask) {
|
||||
* // This implementation follows the description in Hacker's Delight which
|
||||
* // is informative. A more optimal implementation is:
|
||||
* // Integer.compress(i, mask) << -Integer.bitCount(mask)
|
||||
* return Integer.reverse(
|
||||
* Integer.compress(Integer.reverse(i), Integer.reverse(mask)));
|
||||
* }
|
||||
*
|
||||
* int sag(int i, int mask) {
|
||||
* return compressLeft(i, mask) | Integer.compress(i, ~mask);
|
||||
* }
|
||||
*
|
||||
* // Separate the sheep from the goats
|
||||
* sag(0xCAFEBABE, 0xFF00FFF0) == 0xCABABFEE
|
||||
* }
|
||||
*
|
||||
* @param i the value whose bits are to be compressed
|
||||
* @param mask the bit mask
|
||||
* @return the compressed value
|
||||
* @see #expand
|
||||
* @since 19
|
||||
*/
|
||||
// @IntrinsicCandidate
|
||||
public static int compress(int i, int mask) {
|
||||
// See Hacker's Delight (2nd ed) section 7.4 Compress, or Generalized Extract
|
||||
|
||||
i = i & mask; // Clear irrelevant bits
|
||||
int maskCount = ~mask << 1; // Count 0's to right
|
||||
|
||||
for (int j = 0; j < 5; j++) {
|
||||
// Parallel prefix
|
||||
// Mask prefix identifies bits of the mask that have an odd number of 0's to the right
|
||||
int maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
int maskMove = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove) | (maskMove >>> (1 << j));
|
||||
// Bits of i to be moved
|
||||
int t = i & maskMove;
|
||||
// Compress i
|
||||
i = (i ^ t) | (t >>> (1 << j));
|
||||
// Adjust the mask count by identifying bits that have 0 to the right
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value obtained by expanding the bits of the
|
||||
* specified {@code int} value, {@code i}, in accordance with
|
||||
* the specified bit mask.
|
||||
* <p>
|
||||
* For each one-bit value {@code mb} of the mask, from least
|
||||
* significant to most significant, the next contiguous bit value
|
||||
* of {@code i} starting at the least significant bit is assigned
|
||||
* to the expanded value at the same bit location as {@code mb}.
|
||||
* All other remaining bits of the expanded value are set to zero.
|
||||
*
|
||||
* @apiNote
|
||||
* Consider the simple case of expanding the digits of a hexadecimal
|
||||
* value:
|
||||
* {@snippet lang="java" :
|
||||
* expand(0x0000CABAB, 0xFF00FFF0) == 0xCA00BAB0
|
||||
* }
|
||||
* Starting from the least significant hexadecimal digit at position 0
|
||||
* from the right, the mask {@code 0xFF00FFF0} selects the first five
|
||||
* hexadecimal digits of {@code 0x0000CABAB}. The selected digits occur
|
||||
* in the resulting expanded value in order at positions 1, 2, 3, 6, and 7.
|
||||
* <p>
|
||||
* The following identities all return {@code true} and are helpful to
|
||||
* understand the behaviour of {@code expand}:
|
||||
* {@snippet lang="java" :
|
||||
* // Logically shift right the bit at position 0
|
||||
* expand(x, 1 << n) == (x & 1) << n
|
||||
*
|
||||
* // Logically shift right
|
||||
* expand(x, -1 << n) == x << n
|
||||
*
|
||||
* // Expanding all bits returns the mask
|
||||
* expand(-1, m) == m
|
||||
*
|
||||
* // Any bits not covered by the mask are ignored
|
||||
* expand(x, m) == expand(x, m) & m
|
||||
*
|
||||
* // Compressing then expanding with the same mask
|
||||
* expand(compress(x, m), m) == x & m
|
||||
* }
|
||||
* <p>
|
||||
* The select operation for determining the position of the one-bit with
|
||||
* index {@code n} in a {@code int} value can be implemented as follows:
|
||||
* {@snippet lang="java" :
|
||||
* int select(int i, int n) {
|
||||
* // the one-bit in i (the mask) with index n
|
||||
* int nthBit = Integer.expand(1 << n, i);
|
||||
* // the bit position of the one-bit with index n
|
||||
* return Integer.numberOfTrailingZeros(nthBit);
|
||||
* }
|
||||
*
|
||||
* // The one-bit with index 0 is at bit position 1
|
||||
* select(0b10101010_10101010, 0) == 1
|
||||
* // The one-bit with index 3 is at bit position 7
|
||||
* select(0b10101010_10101010, 3) == 7
|
||||
* }
|
||||
*
|
||||
* @param i the value whose bits are to be expanded
|
||||
* @param mask the bit mask
|
||||
* @return the expanded value
|
||||
* @see #compress
|
||||
* @since 19
|
||||
*/
|
||||
// @IntrinsicCandidate
|
||||
public static int expand(int i, int mask) {
|
||||
// Save original mask
|
||||
int originalMask = mask;
|
||||
// Count 0's to right
|
||||
int maskCount = ~mask << 1;
|
||||
int maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
int maskMove1 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove1) | (maskMove1 >>> (1 << 0));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
int maskMove2 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove2) | (maskMove2 >>> (1 << 1));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
int maskMove3 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove3) | (maskMove3 >>> (1 << 2));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
int maskMove4 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove4) | (maskMove4 >>> (1 << 3));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
int maskMove5 = maskPrefix & mask;
|
||||
|
||||
int t = i << (1 << 4);
|
||||
i = (i & ~maskMove5) | (t & maskMove5);
|
||||
t = i << (1 << 3);
|
||||
i = (i & ~maskMove4) | (t & maskMove4);
|
||||
t = i << (1 << 2);
|
||||
i = (i & ~maskMove3) | (t & maskMove3);
|
||||
t = i << (1 << 1);
|
||||
i = (i & ~maskMove2) | (t & maskMove2);
|
||||
t = i << (1 << 0);
|
||||
i = (i & ~maskMove1) | (t & maskMove1);
|
||||
|
||||
// Clear irrelevant bits
|
||||
return i & originalMask;
|
||||
}
|
||||
|
||||
@ForceInline
|
||||
private static int parallelSuffix(int maskCount) {
|
||||
int maskPrefix = maskCount ^ (maskCount << 1);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 2);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 4);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 8);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 16);
|
||||
return maskPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the signum function of the specified {@code int} value. (The
|
||||
* return value is -1 if the specified value is negative; 0 if the
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 1994, 2021, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 1994, 2022, 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
|
||||
@ -34,6 +34,7 @@ import java.util.Objects;
|
||||
import java.util.Optional;
|
||||
|
||||
import jdk.internal.misc.CDS;
|
||||
import jdk.internal.vm.annotation.ForceInline;
|
||||
import jdk.internal.vm.annotation.IntrinsicCandidate;
|
||||
|
||||
import static java.lang.String.COMPACT_STRINGS;
|
||||
@ -1908,6 +1909,236 @@ public final class Long extends Number
|
||||
return reverseBytes(i);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value obtained by compressing the bits of the
|
||||
* specified {@code long} value, {@code i}, in accordance with
|
||||
* the specified bit mask.
|
||||
* <p>
|
||||
* For each one-bit value {@code mb} of the mask, from least
|
||||
* significant to most significant, the bit value of {@code i} at
|
||||
* the same bit location as {@code mb} is assigned to the compressed
|
||||
* value contiguously starting from the least significant bit location.
|
||||
* All the upper remaining bits of the compressed value are set
|
||||
* to zero.
|
||||
*
|
||||
* @apiNote
|
||||
* Consider the simple case of compressing the digits of a hexadecimal
|
||||
* value:
|
||||
* {@snippet lang="java" :
|
||||
* // Compressing drink to food
|
||||
* compress(0xCAFEBABE, 0xFF00FFF0) == 0xCABAB
|
||||
* }
|
||||
* Starting from the least significant hexadecimal digit at position 0
|
||||
* from the right, the mask {@code 0xFF00FFF0} selects hexadecimal digits
|
||||
* at positions 1, 2, 3, 6 and 7 of {@code 0xCAFEBABE}. The selected digits
|
||||
* occur in the resulting compressed value contiguously from digit position
|
||||
* 0 in the same order.
|
||||
* <p>
|
||||
* The following identities all return {@code true} and are helpful to
|
||||
* understand the behaviour of {@code compress}:
|
||||
* {@snippet lang="java" :
|
||||
* // Returns 1 if the bit at position n is one
|
||||
* compress(x, 1 << n) == (x >> n & 1)
|
||||
*
|
||||
* // Logical shift right
|
||||
* compress(x, -1 << n) == x >>> n
|
||||
*
|
||||
* // Any bits not covered by the mask are ignored
|
||||
* compress(x, m) == compress(x & m, m)
|
||||
*
|
||||
* // Compressing a value by itself
|
||||
* compress(m, m) == (m == -1 || m == 0) ? m : (1 << bitCount(m)) - 1
|
||||
*
|
||||
* // Expanding then compressing with the same mask
|
||||
* compress(expand(x, m), m) == x & compress(m, m)
|
||||
* }
|
||||
* <p>
|
||||
* The Sheep And Goats (SAG) operation (see Hacker's Delight, section 7.7)
|
||||
* can be implemented as follows:
|
||||
* {@snippet lang="java" :
|
||||
* long compressLeft(long i, long mask) {
|
||||
* // This implementation follows the description in Hacker's Delight which
|
||||
* // is informative. A more optimal implementation is:
|
||||
* // Long.compress(i, mask) << -Long.bitCount(mask)
|
||||
* return Long.reverse(
|
||||
* Long.compress(Long.reverse(i), Long.reverse(mask)));
|
||||
* }
|
||||
*
|
||||
* long sag(long i, long mask) {
|
||||
* return compressLeft(i, mask) | Long.compress(i, ~mask);
|
||||
* }
|
||||
*
|
||||
* // Separate the sheep from the goats
|
||||
* sag(0xCAFEBABE, 0xFF00FFF0) == 0xCABABFEE
|
||||
* }
|
||||
*
|
||||
* @param i the value whose bits are to be compressed
|
||||
* @param mask the bit mask
|
||||
* @return the compressed value
|
||||
* @see #expand
|
||||
* @since 19
|
||||
*/
|
||||
// @IntrinsicCandidate
|
||||
public static long compress(long i, long mask) {
|
||||
// See Hacker's Delight (2nd ed) section 7.4 Compress, or Generalized Extract
|
||||
|
||||
i = i & mask; // Clear irrelevant bits
|
||||
long maskCount = ~mask << 1; // Count 0's to right
|
||||
|
||||
for (int j = 0; j < 6; j++) {
|
||||
// Parallel prefix
|
||||
// Mask prefix identifies bits of the mask that have an odd number of 0's to the right
|
||||
long maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove) | (maskMove >>> (1 << j));
|
||||
// Bits of i to be moved
|
||||
long t = i & maskMove;
|
||||
// Compress i
|
||||
i = (i ^ t) | (t >>> (1 << j));
|
||||
// Adjust the mask count by identifying bits that have 0 to the right
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the value obtained by expanding the bits of the
|
||||
* specified {@code long} value, {@code i}, in accordance with
|
||||
* the specified bit mask.
|
||||
* <p>
|
||||
* For each one-bit value {@code mb} of the mask, from least
|
||||
* significant to most significant, the next contiguous bit value
|
||||
* of {@code i} starting at the least significant bit is assigned
|
||||
* to the expanded value at the same bit location as {@code mb}.
|
||||
* All other remaining bits of the expanded value are set to zero.
|
||||
*
|
||||
* @apiNote
|
||||
* Consider the simple case of expanding the digits of a hexadecimal
|
||||
* value:
|
||||
* {@snippet lang="java" :
|
||||
* expand(0x0000CABAB, 0xFF00FFF0) == 0xCA00BAB0
|
||||
* }
|
||||
* Starting from the least significant hexadecimal digit at position 0
|
||||
* from the right, the mask {@code 0xFF00FFF0} selects the first five
|
||||
* hexadecimal digits of {@code 0x0000CABAB}. The selected digits occur
|
||||
* in the resulting expanded value in order at positions 1, 2, 3, 6, and 7.
|
||||
* <p>
|
||||
* The following identities all return {@code true} and are helpful to
|
||||
* understand the behaviour of {@code expand}:
|
||||
* {@snippet lang="java" :
|
||||
* // Logically shift right the bit at position 0
|
||||
* expand(x, 1 << n) == (x & 1) << n
|
||||
*
|
||||
* // Logically shift right
|
||||
* expand(x, -1 << n) == x << n
|
||||
*
|
||||
* // Expanding all bits returns the mask
|
||||
* expand(-1, m) == m
|
||||
*
|
||||
* // Any bits not covered by the mask are ignored
|
||||
* expand(x, m) == expand(x, m) & m
|
||||
*
|
||||
* // Compressing then expanding with the same mask
|
||||
* expand(compress(x, m), m) == x & m
|
||||
* }
|
||||
* <p>
|
||||
* The select operation for determining the position of the one-bit with
|
||||
* index {@code n} in a {@code long} value can be implemented as follows:
|
||||
* {@snippet lang="java" :
|
||||
* long select(long i, long n) {
|
||||
* // the one-bit in i (the mask) with index n
|
||||
* long nthBit = Long.expand(1 << n, i);
|
||||
* // the bit position of the one-bit with index n
|
||||
* return Long.numberOfTrailingZeros(nthBit);
|
||||
* }
|
||||
*
|
||||
* // The one-bit with index 0 is at bit position 1
|
||||
* select(0b10101010_10101010, 0) == 1
|
||||
* // The one-bit with index 3 is at bit position 7
|
||||
* select(0b10101010_10101010, 3) == 7
|
||||
* }
|
||||
*
|
||||
* @param i the value whose bits are to be expanded
|
||||
* @param mask the bit mask
|
||||
* @return the expanded value
|
||||
* @see #compress
|
||||
* @since 19
|
||||
*/
|
||||
// @IntrinsicCandidate
|
||||
public static long expand(long i, long mask) {
|
||||
// Save original mask
|
||||
long originalMask = mask;
|
||||
// Count 0's to right
|
||||
long maskCount = ~mask << 1;
|
||||
long maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove1 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove1) | (maskMove1 >>> (1 << 0));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove2 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove2) | (maskMove2 >>> (1 << 1));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove3 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove3) | (maskMove3 >>> (1 << 2));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove4 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove4) | (maskMove4 >>> (1 << 3));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove5 = maskPrefix & mask;
|
||||
// Compress mask
|
||||
mask = (mask ^ maskMove5) | (maskMove5 >>> (1 << 4));
|
||||
maskCount = maskCount & ~maskPrefix;
|
||||
|
||||
maskPrefix = parallelSuffix(maskCount);
|
||||
// Bits to move
|
||||
long maskMove6 = maskPrefix & mask;
|
||||
|
||||
long t = i << (1 << 5);
|
||||
i = (i & ~maskMove6) | (t & maskMove6);
|
||||
t = i << (1 << 4);
|
||||
i = (i & ~maskMove5) | (t & maskMove5);
|
||||
t = i << (1 << 3);
|
||||
i = (i & ~maskMove4) | (t & maskMove4);
|
||||
t = i << (1 << 2);
|
||||
i = (i & ~maskMove3) | (t & maskMove3);
|
||||
t = i << (1 << 1);
|
||||
i = (i & ~maskMove2) | (t & maskMove2);
|
||||
t = i << (1 << 0);
|
||||
i = (i & ~maskMove1) | (t & maskMove1);
|
||||
|
||||
// Clear irrelevant bits
|
||||
return i & originalMask;
|
||||
}
|
||||
|
||||
@ForceInline
|
||||
private static long parallelSuffix(long maskCount) {
|
||||
long maskPrefix = maskCount ^ (maskCount << 1);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 2);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 4);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 8);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 16);
|
||||
maskPrefix = maskPrefix ^ (maskPrefix << 32);
|
||||
return maskPrefix;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the signum function of the specified {@code long} value. (The
|
||||
* return value is -1 if the specified value is negative; 0 if the
|
||||
|
391
test/jdk/java/lang/AbstractCompressExpandTest.java
Normal file
391
test/jdk/java/lang/AbstractCompressExpandTest.java
Normal file
@ -0,0 +1,391 @@
|
||||
/*
|
||||
* Copyright (c) 2022, 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
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
import org.testng.Assert;
|
||||
import org.testng.annotations.DataProvider;
|
||||
import org.testng.annotations.Test;
|
||||
|
||||
import java.util.function.Supplier;
|
||||
import java.util.random.RandomGenerator;
|
||||
|
||||
public abstract class AbstractCompressExpandTest {
|
||||
|
||||
static int testCompress(int i, int mask) {
|
||||
int result = 0;
|
||||
int rpos = 0;
|
||||
while (mask != 0) {
|
||||
if ((mask & 1) != 0) {
|
||||
result |= (i & 1) << rpos;
|
||||
rpos++; // conditional increment
|
||||
}
|
||||
i >>>= 1; // unconditional shift-out
|
||||
mask >>>= 1;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
static int testExpand(int i, int mask) {
|
||||
int result = 0;
|
||||
int rpos = 0;
|
||||
while (mask != 0) {
|
||||
if ((mask & 1) != 0) {
|
||||
result |= (i & 1) << rpos;
|
||||
i >>>= 1; // conditional shift-out
|
||||
}
|
||||
rpos++; // unconditional increment
|
||||
mask >>>= 1;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
static long testCompress(long i, long mask) {
|
||||
long result = 0;
|
||||
int rpos = 0;
|
||||
while (mask != 0) {
|
||||
if ((mask & 1) != 0) {
|
||||
result |= (i & 1) << rpos++;
|
||||
}
|
||||
i >>>= 1;
|
||||
mask >>>= 1;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
static long testExpand(long i, long mask) {
|
||||
long result = 0;
|
||||
int rpos = 0;
|
||||
while (mask != 0) {
|
||||
if ((mask & 1) != 0) {
|
||||
result |= (i & 1) << rpos;
|
||||
i >>>= 1;
|
||||
}
|
||||
rpos++;
|
||||
mask >>>= 1;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
abstract int actualCompress(int i, int mask);
|
||||
|
||||
abstract int actualExpand(int i, int mask);
|
||||
|
||||
abstract int expectedCompress(int i, int mask);
|
||||
|
||||
abstract int expectedExpand(int i, int mask);
|
||||
|
||||
abstract long actualCompress(long i, long mask);
|
||||
|
||||
abstract long actualExpand(long i, long mask);
|
||||
|
||||
abstract long expectedCompress(long i, long mask);
|
||||
|
||||
abstract long expectedExpand(long i, long mask);
|
||||
|
||||
static int SIZE = 1024;
|
||||
|
||||
<T> Supplier<T> supplierWithToString(Supplier<T> s, String name) {
|
||||
return new Supplier<>() {
|
||||
@Override
|
||||
public T get() {
|
||||
return s.get();
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return name;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@DataProvider
|
||||
Object[][] maskIntProvider() {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
return new Object[][]{
|
||||
{supplierWithToString(() -> rg.ints(SIZE).toArray(), "random masks")},
|
||||
{supplierWithToString(this::contiguousMasksInt, "contiguous masks")}
|
||||
};
|
||||
}
|
||||
|
||||
@DataProvider
|
||||
Object[][] maskLongProvider() {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
return new Object[][]{
|
||||
{supplierWithToString(() -> rg.longs(SIZE).toArray(), "random masks")},
|
||||
{supplierWithToString(this::contiguousMasksLong, "contiguous masks")}
|
||||
};
|
||||
}
|
||||
|
||||
int[] contiguousMasksInt() {
|
||||
int size = 32 * (32 + 1) / 2 + 1; // 528 + 1
|
||||
int[] masks = new int[size];
|
||||
|
||||
int i = 0;
|
||||
masks[i++] = 0;
|
||||
for (int len = 1; len < 32; len++) {
|
||||
for (int pos = 0; pos <= 32 - len; pos++) {
|
||||
masks[i++] = ((1 << len) - 1) << pos;
|
||||
}
|
||||
}
|
||||
masks[i++] = -1;
|
||||
|
||||
assert i == masks.length;
|
||||
return masks;
|
||||
}
|
||||
|
||||
long[] contiguousMasksLong() {
|
||||
int size = 64 * (64 + 1) / 2 + 1; // 2080 + 1
|
||||
long[] masks = new long[size];
|
||||
|
||||
|
||||
int i = 0;
|
||||
masks[i++] = 0L;
|
||||
for (int len = 1; len < 64; len++) {
|
||||
for (int pos = 0; pos <= 64 - len; pos++) {
|
||||
masks[i++] = ((1L << len) - 1) << pos;
|
||||
}
|
||||
}
|
||||
masks[i++] = -1L;
|
||||
|
||||
assert i == masks.length;
|
||||
return masks;
|
||||
}
|
||||
|
||||
|
||||
@Test(dataProvider = "maskIntProvider")
|
||||
public void testCompressInt(Supplier<int[]> maskProvider) {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
int[] values = rg.ints(SIZE).toArray();
|
||||
int[] masks = maskProvider.get();
|
||||
|
||||
for (int i : values) {
|
||||
for (int m : masks) {
|
||||
int actual = actualCompress(i, m);
|
||||
int expected = expectedCompress(i, m);
|
||||
if (actual != expected) {
|
||||
print(i, m, actual, expected);
|
||||
}
|
||||
Assert.assertEquals(actual, expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test(dataProvider = "maskIntProvider")
|
||||
public void testExpandInt(Supplier<int[]> maskProvider) {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
int[] values = rg.ints(SIZE).toArray();
|
||||
int[] masks = maskProvider.get();
|
||||
|
||||
for (int i : values) {
|
||||
for (int m : masks) {
|
||||
int actual = actualExpand(i, m);
|
||||
int expected = expectedExpand(i, m);
|
||||
if (actual != expected) {
|
||||
print(i, m, actual, expected);
|
||||
}
|
||||
Assert.assertEquals(actual, expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test(dataProvider = "maskIntProvider")
|
||||
public void testCompressExpandInt(Supplier<int[]> maskProvider) {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
int[] values = rg.ints(SIZE).toArray();
|
||||
int[] masks = maskProvider.get();
|
||||
|
||||
for (int i : values) {
|
||||
for (int m : masks) {
|
||||
{
|
||||
int a = actualCompress(actualExpand(i, m), m);
|
||||
Assert.assertEquals(a, normalizeCompressedValue(i, m));
|
||||
|
||||
int b = actualCompress(actualExpand(i, ~m), ~m);
|
||||
Assert.assertEquals(b, normalizeCompressedValue(i, ~m));
|
||||
}
|
||||
|
||||
{
|
||||
int a = actualExpand(actualCompress(i, m), m);
|
||||
// Clear unset mask bits
|
||||
Assert.assertEquals(a, i & m);
|
||||
|
||||
int b = actualExpand(actualCompress(i, ~m), ~m);
|
||||
Assert.assertEquals(a & b, 0);
|
||||
Assert.assertEquals(a | b, i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testContiguousMasksInt() {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
int[] values = rg.ints(SIZE).toArray();
|
||||
|
||||
for (int i : values) {
|
||||
assertContiguousMask(i, 0, 0L);
|
||||
for (int len = 1; len < 32; len++) {
|
||||
for (int pos = 0; pos <= 32 - len; pos++) {
|
||||
int mask = ((1 << len) - 1) << pos;
|
||||
|
||||
assertContiguousMask(i, pos, mask);
|
||||
}
|
||||
}
|
||||
assertContiguousMask(i, 0, -1L);
|
||||
}
|
||||
}
|
||||
|
||||
void assertContiguousMask(int i, int pos, int mask) {
|
||||
Assert.assertEquals(actualCompress(i, mask), (i & mask) >>> pos);
|
||||
Assert.assertEquals(actualExpand(i, mask), (i << pos) & mask);
|
||||
}
|
||||
|
||||
@Test(dataProvider = "maskLongProvider")
|
||||
public void testCompressLong(Supplier<long[]> maskProvider) {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
long[] values = rg.longs(SIZE).toArray();
|
||||
long[] masks = maskProvider.get();
|
||||
|
||||
for (long i : values) {
|
||||
for (long m : masks) {
|
||||
long actual = actualCompress(i, m);
|
||||
long expected = expectedCompress(i, m);
|
||||
if (actual != expected) {
|
||||
print(i, m, actual, expected);
|
||||
}
|
||||
Assert.assertEquals(actual, expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test(dataProvider = "maskLongProvider")
|
||||
public void testExpandLong(Supplier<long[]> maskProvider) {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
long[] values = rg.longs(SIZE).toArray();
|
||||
long[] masks = maskProvider.get();
|
||||
|
||||
for (long i : values) {
|
||||
for (long m : masks) {
|
||||
long actual = actualExpand(i, m);
|
||||
long expected = expectedExpand(i, m);
|
||||
if (actual != expected) {
|
||||
print(i, m, actual, expected);
|
||||
}
|
||||
Assert.assertEquals(actual, expected);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test(dataProvider = "maskLongProvider")
|
||||
public void testCompressExpandLong(Supplier<long[]> maskProvider) {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
long[] values = rg.longs(SIZE).toArray();
|
||||
long[] masks = maskProvider.get();
|
||||
|
||||
for (long i : values) {
|
||||
for (long m : masks) {
|
||||
{
|
||||
long a = actualCompress(actualExpand(i, m), m);
|
||||
Assert.assertEquals(a, normalizeCompressedValue(i, m));
|
||||
|
||||
long b = actualCompress(actualExpand(i, ~m), ~m);
|
||||
Assert.assertEquals(b, normalizeCompressedValue(i, ~m));
|
||||
}
|
||||
|
||||
{
|
||||
long a = actualExpand(actualCompress(i, m), m);
|
||||
// Clear unset mask bits
|
||||
Assert.assertEquals(a, i & m);
|
||||
|
||||
long b = actualExpand(actualCompress(i, ~m), ~m);
|
||||
Assert.assertEquals(a & b, 0);
|
||||
Assert.assertEquals(a | b, i);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testContiguousMasksLong() {
|
||||
RandomGenerator rg = RandomGenerator.getDefault();
|
||||
|
||||
long[] values = rg.longs(SIZE).toArray();
|
||||
|
||||
for (long i : values) {
|
||||
assertContiguousMask(i, 0, 0L);
|
||||
for (int len = 1; len < 64; len++) {
|
||||
for (int pos = 0; pos <= 64 - len; pos++) {
|
||||
long mask = ((1L << len) - 1) << pos;
|
||||
|
||||
assertContiguousMask(i, pos, mask);
|
||||
}
|
||||
}
|
||||
assertContiguousMask(i, 0, -1L);
|
||||
}
|
||||
}
|
||||
|
||||
void assertContiguousMask(long i, int pos, long mask) {
|
||||
Assert.assertEquals(actualCompress(i, mask), (i & mask) >>> pos);
|
||||
Assert.assertEquals(actualExpand(i, mask), (i << pos) & mask);
|
||||
}
|
||||
|
||||
static int normalizeCompressedValue(int i, int mask) {
|
||||
int mbc = Integer.bitCount(mask);
|
||||
if (mbc != 32) {
|
||||
return i & ((1 << mbc) - 1);
|
||||
} else {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
static long normalizeCompressedValue(long i, long mask) {
|
||||
int mbc = Long.bitCount(mask);
|
||||
if (mbc != 64) {
|
||||
return i & ((1L << mbc) - 1);
|
||||
} else {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
static void print(int i, int m, int actual, int expected) {
|
||||
System.out.println(String.format("i = %s", Integer.toBinaryString(i)));
|
||||
System.out.println(String.format("m = %s", Integer.toBinaryString(m)));
|
||||
System.out.println(String.format("a = %s", Integer.toBinaryString(actual)));
|
||||
System.out.println(String.format("e = %s", Integer.toBinaryString(expected)));
|
||||
}
|
||||
|
||||
static void print(long i, long m, long actual, long expected) {
|
||||
System.out.println(String.format("i = %s", Long.toBinaryString(i)));
|
||||
System.out.println(String.format("m = %s", Long.toBinaryString(m)));
|
||||
System.out.println(String.format("a = %s", Long.toBinaryString(actual)));
|
||||
System.out.println(String.format("e = %s", Long.toBinaryString(expected)));
|
||||
}
|
||||
}
|
72
test/jdk/java/lang/CompressExpandSanityTest.java
Normal file
72
test/jdk/java/lang/CompressExpandSanityTest.java
Normal file
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright (c) 2022, 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
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @summary Test compress expand as if the test methods are the implementation methods
|
||||
* @key randomness
|
||||
* @run testng CompressExpandSanityTest
|
||||
*/
|
||||
|
||||
public final class CompressExpandSanityTest extends AbstractCompressExpandTest {
|
||||
@Override
|
||||
int actualCompress(int i, int mask) {
|
||||
return testCompress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
int actualExpand(int i, int mask) {
|
||||
return testExpand(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
int expectedCompress(int i, int mask) {
|
||||
return Integer.compress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
int expectedExpand(int i, int mask) {
|
||||
return Integer.expand(i, mask);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
long actualCompress(long i, long mask) {
|
||||
return testCompress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
long actualExpand(long i, long mask) {
|
||||
return testExpand(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
long expectedCompress(long i, long mask) {
|
||||
return Long.compress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
long expectedExpand(long i, long mask) {
|
||||
return Long.expand(i, mask);
|
||||
}
|
||||
}
|
72
test/jdk/java/lang/CompressExpandTest.java
Normal file
72
test/jdk/java/lang/CompressExpandTest.java
Normal file
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright (c) 2022, 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
|
||||
* under the terms of the GNU General Public License version 2 only, as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||||
* version 2 for more details (a copy is included in the LICENSE file that
|
||||
* accompanied this code).
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License version
|
||||
* 2 along with this work; if not, write to the Free Software Foundation,
|
||||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*
|
||||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
* or visit www.oracle.com if you need additional information or have any
|
||||
* questions.
|
||||
*/
|
||||
|
||||
/*
|
||||
* @test
|
||||
* @summary Test compress expand methods
|
||||
* @key randomness
|
||||
* @run testng CompressExpandTest
|
||||
*/
|
||||
|
||||
public final class CompressExpandTest extends AbstractCompressExpandTest {
|
||||
@Override
|
||||
int actualCompress(int i, int mask) {
|
||||
return Integer.compress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
int actualExpand(int i, int mask) {
|
||||
return Integer.expand(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
int expectedCompress(int i, int mask) {
|
||||
return testCompress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
int expectedExpand(int i, int mask) {
|
||||
return testExpand(i, mask);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
long actualCompress(long i, long mask) {
|
||||
return Long.compress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
long actualExpand(long i, long mask) {
|
||||
return Long.expand(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
long expectedCompress(long i, long mask) {
|
||||
return testCompress(i, mask);
|
||||
}
|
||||
|
||||
@Override
|
||||
long expectedExpand(long i, long mask) {
|
||||
return testExpand(i, mask);
|
||||
}
|
||||
}
|
@ -109,4 +109,20 @@ public class Integers {
|
||||
bh.consume(Integer.toString(i));
|
||||
}
|
||||
}
|
||||
|
||||
/** Performs expand on small values */
|
||||
@Benchmark
|
||||
public void expand(Blackhole bh) {
|
||||
for (int i : intsSmall) {
|
||||
bh.consume(Integer.expand(i, 0xFF00F0F0));
|
||||
}
|
||||
}
|
||||
|
||||
/** Performs compress on large values */
|
||||
@Benchmark
|
||||
public void compress(Blackhole bh) {
|
||||
for (int i : intsBig) {
|
||||
bh.consume(Integer.compress(i, 0x000F0F1F));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -89,6 +89,22 @@ public class Longs {
|
||||
}
|
||||
}
|
||||
|
||||
/** Performs expand on small values */
|
||||
@Benchmark
|
||||
public void expand(Blackhole bh) {
|
||||
for (long i : longArraySmall) {
|
||||
bh.consume(Long.expand(i, 0xFF00F0F0F0000000L));
|
||||
}
|
||||
}
|
||||
|
||||
/** Performs compress on large values */
|
||||
@Benchmark
|
||||
public void compress(Blackhole bh) {
|
||||
for (long i : longArrayBig) {
|
||||
bh.consume(Long.compress(i, 0x000000000F0F0F1FL));
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Have them public to avoid total unrolling
|
||||
*/
|
||||
|
Loading…
x
Reference in New Issue
Block a user