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 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
|
import org.checkerframework.checker.signedness.qual.*;
public class CastedShifts {
public void CastedIntShifts(@Unsigned int unsigned, @Signed int signed) {
// Cast to byte.
@UnknownSignedness byte byteRes;
// Shifting right by 23, the introduced bits are cast away
byteRes = (@Unsigned byte) (unsigned >>> 23);
byteRes = (@Unsigned byte) (unsigned >> 23);
byteRes = (@Signed byte) (signed >>> 23);
byteRes = (@Signed byte) (signed >> 23);
byteRes = (byte) (signed >> 23);
// Shifting right by 24, the introduced bits are still cast away.
byteRes = (@Unsigned byte) (unsigned >>> 24);
byteRes = (@Unsigned byte) (unsigned >> 24);
byteRes = (@Signed byte) (signed >>> 24);
byteRes = (@Signed byte) (signed >> 24);
// Shifting right by 25, now the MSB matters.
byteRes = (@Unsigned byte) (unsigned >>> 25);
// :: error: (shift.signed)
byteRes = (@Unsigned byte) (unsigned >> 25);
// :: error: (shift.unsigned)
byteRes = (@Signed byte) (signed >>> 25);
byteRes = (@Signed byte) (signed >> 25);
// Shifting right by zero should behave as assignment
byteRes = (@Unsigned byte) (unsigned >>> 0);
byteRes = (@Unsigned byte) (unsigned >> 0);
byteRes = (@Signed byte) (signed >>> 0);
byteRes = (@Signed byte) (signed >> 0);
// Cast to char.
@UnknownSignedness char charRes;
// Shifting right by 23, the introduced bits are cast away
charRes = (@Unsigned char) (unsigned >>> 23);
charRes = (@Unsigned char) (unsigned >> 23);
charRes = (@Signed char) (signed >>> 23);
charRes = (@Signed char) (signed >> 23);
// Shifting right by 24, the introduced bits are still cast away.
charRes = (@Unsigned char) (unsigned >>> 24);
charRes = (@Unsigned char) (unsigned >> 24);
charRes = (@Signed char) (signed >>> 24);
charRes = (@Signed char) (signed >> 24);
// Shifting right by 25, now the MSB matters.
charRes = (@Unsigned char) (unsigned >>> 25);
// :: error: (shift.signed)
charRes = (@Unsigned char) (unsigned >> 25);
// :: error: (shift.unsigned)
charRes = (@Signed char) (signed >>> 25);
charRes = (@Signed char) (signed >> 25);
// Shifting right by zero should behave as assignment
charRes = (@Unsigned char) (unsigned >>> 0);
charRes = (@Unsigned char) (unsigned >> 0);
charRes = (@Signed char) (signed >>> 0);
charRes = (@Signed char) (signed >> 0);
// Cast to short.
@UnknownSignedness short shortRes;
// Shifting right by 15, the introduced bits are cast away
shortRes = (@Unsigned short) (unsigned >>> 15);
shortRes = (@Unsigned short) (unsigned >> 15);
shortRes = (@Signed short) (signed >>> 15);
shortRes = (@Signed short) (signed >> 15);
// Shifting right by 16, the introduced bits are still cast away.
shortRes = (@Unsigned short) (unsigned >>> 16);
shortRes = (@Unsigned short) (unsigned >> 16);
shortRes = (@Signed short) (signed >>> 16);
shortRes = (@Signed short) (signed >> 16);
// Shifting right by 17, now the MSB matters.
shortRes = (@Unsigned short) (unsigned >>> 17);
// :: error: (shift.signed)
shortRes = (@Unsigned short) (unsigned >> 17);
// :: error: (shift.unsigned)
shortRes = (@Signed short) (signed >>> 17);
shortRes = (@Signed short) (signed >> 17);
// Shifting right by zero should behave as assignment
shortRes = (@Unsigned short) (unsigned >>> 0);
shortRes = (@Unsigned short) (unsigned >> 0);
shortRes = (@Signed short) (signed >>> 0);
shortRes = (@Signed short) (signed >> 0);
// Cast to int.
@UnknownSignedness int intRes;
// Now shift signedness matters again
intRes = (@Unsigned int) (unsigned >>> 1);
// :: error: (shift.signed)
intRes = (@Unsigned int) (unsigned >> 1);
// :: error: (shift.unsigned)
intRes = (@Signed int) (signed >>> 1);
intRes = (@Signed int) (signed >> 1);
// Shifting right by zero should behave as assignment
intRes = (@Unsigned int) (unsigned >>> 0);
intRes = (@Unsigned int) (unsigned >> 0);
intRes = (@Signed int) (signed >>> 0);
intRes = (@Signed int) (signed >> 0);
// Cast to long.
@UnknownSignedness long longRes;
// Now shift signedness matters again
longRes = (@Unsigned long) (unsigned >>> 1);
// :: error: (shift.signed)
longRes = (@Unsigned long) (unsigned >> 1);
// :: error: (shift.unsigned)
longRes = (@Signed long) (signed >>> 1);
longRes = (@Signed long) (signed >> 1);
// Shifting right by zero should behave as assignment
longRes = (@Unsigned long) (unsigned >>> 0);
longRes = (@Unsigned long) (unsigned >> 0);
longRes = (@Signed long) (signed >>> 0);
longRes = (@Signed long) (signed >> 0);
// Tests with double parenthesis (only byte and int)
// Cast to byte.
// Shifting right by 23, the introduced bits are cast away
byteRes = (@Unsigned byte) ((unsigned >>> 23));
byteRes = (@Unsigned byte) ((unsigned >> 23));
byteRes = (@Signed byte) ((signed >>> 23));
byteRes = (@Signed byte) ((signed >> 23));
// Shifting right by 24, the introduced bits are still cast away.
byteRes = (@Unsigned byte) ((unsigned >>> 24));
byteRes = (@Unsigned byte) ((unsigned >> 24));
byteRes = (@Signed byte) ((signed >>> 24));
byteRes = (@Signed byte) ((signed >> 24));
// Shifting right by 25, now the MSB matters.
byteRes = (@Unsigned byte) ((unsigned >>> 25));
// :: error: (shift.signed)
byteRes = (@Unsigned byte) ((unsigned >> 25));
// :: error: (shift.unsigned)
byteRes = (@Signed byte) ((signed >>> 25));
byteRes = (@Signed byte) ((signed >> 25));
// Shifting right by zero should behave as assignment
byteRes = (@Unsigned byte) ((unsigned >>> 0));
byteRes = (@Unsigned byte) ((unsigned >> 0));
byteRes = (@Signed byte) ((signed >>> 0));
byteRes = (@Signed byte) ((signed >> 0));
// Cast to int.
// Now shift signedness matters again
intRes = (@Unsigned int) ((unsigned >>> 1));
// :: error: (shift.signed)
intRes = (@Unsigned int) ((unsigned >> 1));
// :: error: (shift.unsigned)
intRes = (@Signed int) ((signed >>> 1));
intRes = (@Signed int) ((signed >> 1));
// Shifting right by zero should behave as assignment
intRes = (@Unsigned int) ((unsigned >>> 0));
intRes = (@Unsigned int) ((unsigned >> 0));
intRes = (@Signed int) ((signed >>> 0));
intRes = (@Signed int) ((signed >> 0));
// Test outside Java Specification shift ranges
// Cast to int.
// Now shift signedness matters again
intRes = (@Unsigned int) ((unsigned >>> 33));
// :: error: (shift.signed)
intRes = (@Unsigned int) ((unsigned >> 33));
// :: error: (shift.unsigned)
intRes = (@Signed int) ((signed >>> 33));
intRes = (@Signed int) ((signed >> 33));
// Shifting right by zero should behave as assignment
intRes = (@Unsigned int) ((unsigned >>> 32));
intRes = (@Unsigned int) ((unsigned >> 32));
intRes = (@Signed int) ((signed >>> 32));
intRes = (@Signed int) ((signed >> 32));
}
public void CastedLongShifts(@Unsigned long unsigned, @Signed long signed) {
// Cast to byte.
@UnknownSignedness byte byteRes;
// Shifting right by 55, the introduced bits are cast away
byteRes = (@Unsigned byte) (unsigned >>> 55);
byteRes = (@Unsigned byte) (unsigned >> 55);
byteRes = (@Signed byte) (signed >>> 55);
byteRes = (@Signed byte) (signed >> 55);
// Shifting right by 56, the introduced bits are still cast away.
byteRes = (@Unsigned byte) (unsigned >>> 56);
byteRes = (@Unsigned byte) (unsigned >> 56);
byteRes = (@Signed byte) (signed >>> 56);
byteRes = (@Signed byte) (signed >> 56);
// Shifting right by 57, now the MSB matters.
byteRes = (@Unsigned byte) (unsigned >>> 57);
// :: error: (shift.signed)
byteRes = (@Unsigned byte) (unsigned >> 57);
// :: error: (shift.unsigned)
byteRes = (@Signed byte) (signed >>> 57);
byteRes = (@Signed byte) (signed >> 57);
// Shifting right by zero should behave as assignment
byteRes = (@Unsigned byte) (unsigned >>> 0);
byteRes = (@Unsigned byte) (unsigned >> 0);
byteRes = (@Signed byte) (signed >>> 0);
byteRes = (@Signed byte) (signed >> 0);
// Cast to char.
@UnknownSignedness char charRes;
// Shifting right by 55, the introduced bits are cast away
charRes = (@Unsigned char) (unsigned >>> 55);
charRes = (@Unsigned char) (unsigned >> 55);
charRes = (@Signed char) (signed >>> 55);
charRes = (@Signed char) (signed >> 55);
// Shifting right by 56, the introduced bits are still cast away.
charRes = (@Unsigned char) (unsigned >>> 56);
charRes = (@Unsigned char) (unsigned >> 56);
charRes = (@Signed char) (signed >>> 56);
charRes = (@Signed char) (signed >> 56);
// Shifting right by 57, now the MSB matters.
charRes = (@Unsigned char) (unsigned >>> 57);
// :: error: (shift.signed)
charRes = (@Unsigned char) (unsigned >> 57);
// :: error: (shift.unsigned)
charRes = (@Signed char) (signed >>> 57);
charRes = (@Signed char) (signed >> 57);
// Shifting right by zero should behave as assignment
charRes = (@Unsigned char) (unsigned >>> 0);
charRes = (@Unsigned char) (unsigned >> 0);
charRes = (@Signed char) (signed >>> 0);
charRes = (@Signed char) (signed >> 0);
// Cast to short.
@UnknownSignedness short shortRes;
// Shifting right by 47, the introduced bits are cast away
shortRes = (@Unsigned short) (unsigned >>> 47);
shortRes = (@Unsigned short) (unsigned >> 47);
shortRes = (@Signed short) (signed >>> 47);
shortRes = (@Signed short) (signed >> 47);
// Shifting right by 48, the introduced bits are still cast away.
shortRes = (@Unsigned short) (unsigned >>> 48);
shortRes = (@Unsigned short) (unsigned >> 48);
shortRes = (@Signed short) (signed >>> 48);
shortRes = (@Signed short) (signed >> 48);
// Shifting right by 49, now the MSB matters.
shortRes = (@Unsigned short) (unsigned >>> 49);
// :: error: (shift.signed)
shortRes = (@Unsigned short) (unsigned >> 49);
// :: error: (shift.unsigned)
shortRes = (@Signed short) (signed >>> 49);
shortRes = (@Signed short) (signed >> 49);
// Shifting right by zero should behave as assignment
shortRes = (@Unsigned short) (unsigned >>> 0);
shortRes = (@Unsigned short) (unsigned >> 0);
shortRes = (@Signed short) (signed >>> 0);
shortRes = (@Signed short) (signed >> 0);
// Cast to int.
@UnknownSignedness int intRes;
// Shifting right by 31, the introduced bits are cast away
intRes = (@Unsigned int) (unsigned >>> 31);
intRes = (@Unsigned int) (unsigned >> 31);
intRes = (@Signed int) (signed >>> 31);
intRes = (@Signed int) (signed >> 31);
// Shifting right by 32, the introduced bits are still cast away.
intRes = (@Unsigned int) (unsigned >>> 32);
intRes = (@Unsigned int) (unsigned >> 32);
intRes = (@Signed int) (signed >>> 32);
intRes = (@Signed int) (signed >> 32);
// Shifting right by 33, now the MSB matters.
intRes = (@Unsigned int) (unsigned >>> 33);
// :: error: (shift.signed)
intRes = (@Unsigned int) (unsigned >> 33);
// :: error: (shift.unsigned)
intRes = (@Signed int) (signed >>> 33);
intRes = (@Signed int) (signed >> 33);
// Shifting right by zero should behave as assignment
intRes = (@Unsigned int) (unsigned >>> 0);
intRes = (@Unsigned int) (unsigned >> 0);
intRes = (@Signed int) (signed >>> 0);
intRes = (@Signed int) (signed >> 0);
// Cast to long.
@UnknownSignedness long longRes;
// Now shift signedness matters again
longRes = (@Unsigned long) (unsigned >>> 1);
// :: error: (shift.signed)
longRes = (@Unsigned long) (unsigned >> 1);
// :: error: (shift.unsigned)
longRes = (@Signed long) (signed >>> 1);
longRes = (@Signed long) (signed >> 1);
// Shifting right by zero should behave as assignment
longRes = (@Unsigned long) (unsigned >>> 0);
longRes = (@Unsigned long) (unsigned >> 0);
longRes = (@Signed long) (signed >>> 0);
longRes = (@Signed long) (signed >> 0);
// Tests with double parenthesis (only byte and long)
// Cast to byte.
// Shifting right by 55, the introduced bits are cast away
byteRes = (@Unsigned byte) ((unsigned >>> 55));
byteRes = (@Unsigned byte) ((unsigned >> 55));
byteRes = (@Signed byte) ((signed >>> 55));
byteRes = (@Signed byte) ((signed >> 55));
// Shifting right by 56, the introduced bits are still cast away.
byteRes = (@Unsigned byte) ((unsigned >>> 56));
byteRes = (@Unsigned byte) ((unsigned >> 56));
byteRes = (@Signed byte) ((signed >>> 56));
byteRes = (@Signed byte) ((signed >> 56));
// Shifting right by 9, now the MSB matters.
byteRes = (@Unsigned byte) ((unsigned >>> 57));
// :: error: (shift.signed)
byteRes = (@Unsigned byte) ((unsigned >> 57));
// :: error: (shift.unsigned)
byteRes = (@Signed byte) ((signed >>> 57));
byteRes = (@Signed byte) ((signed >> 57));
// Shifting right by zero should behave as assignment
byteRes = (@Unsigned byte) ((unsigned >>> 0));
byteRes = (@Unsigned byte) ((unsigned >> 0));
byteRes = (@Signed byte) ((signed >>> 0));
byteRes = (@Signed byte) ((signed >> 0));
// Cast to long.
// Now shift signedness matters again
longRes = (@Unsigned long) ((unsigned >>> 1));
// :: error: (shift.signed)
longRes = (@Unsigned long) ((unsigned >> 1));
// :: error: (shift.unsigned)
longRes = (@Signed long) ((signed >>> 1));
longRes = (@Signed long) ((signed >> 1));
// Shifting right by zero should behave as assignment
longRes = (@Unsigned long) ((unsigned >>> 0));
longRes = (@Unsigned long) ((unsigned >> 0));
longRes = (@Signed long) ((signed >>> 0));
longRes = (@Signed long) ((signed >> 0));
// Test outside Java Specification shift ranges
// Cast to long.
// Now shift signedness matters again
longRes = (@Unsigned long) ((unsigned >>> 65));
// :: error: (shift.signed)
longRes = (@Unsigned long) ((unsigned >> 65));
// :: error: (shift.unsigned)
longRes = (@Signed long) ((signed >>> 65));
longRes = (@Signed long) ((signed >> 65));
// Shifting right by zero should behave as assignment
longRes = (@Unsigned long) ((unsigned >>> 64));
longRes = (@Unsigned long) ((unsigned >> 64));
longRes = (@Signed long) ((signed >>> 64));
longRes = (@Signed long) ((signed >> 64));
longRes = (long) ((signed >> 64));
}
}
|