1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 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)));
}
}
|