// RUN: %clang %s -emit-llvm -g %O0opt -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out -use-cex-cache=1 -check-overshift=0 %t.bc // RUN: not grep "ASSERTION FAIL" %t.klee-out/messages.txt // RUN: grep "KLEE: done: explored paths = 1" %t.klee-out/info #include #include typedef enum { TO_ZERO, MASKED, UNKNOWN } overshift_t; #define INT_31_BITS (0xffffffff >> 1) // We're using signed ints so should be doing // arithmetic right shift. // lhs should be a constant int overshift(signed int lhs, volatile unsigned int y, const char * type) { overshift_t ret; volatile signed int x = lhs; unsigned int limit = sizeof(x)*8 - 1; assert(!klee_is_symbolic(x)); volatile signed int result; result = x >> y; // Potential overshift if (result ==0) { printf("%s : Overshift to zero\n", type); ret = TO_ZERO; } else if (result == ( x >> (y % limit)) ) { printf("%s : Bitmasked overshift\n", type); ret = MASKED; } else { printf("%s : Unrecognised behaviour.\n", type); ret = UNKNOWN; } return ret; } int main(int argc, char** argv) { volatile unsigned int y = sizeof(unsigned int)*8 - 1; // Try with +ve lhs overshift_t conc = overshift(15, y, "Concrete"); assert(conc == TO_ZERO); // Try with -ve lhs conc = overshift(INT_31_BITS, y, "Concrete"); assert(conc == TO_ZERO); // Symbolic overshift volatile unsigned int y2; klee_make_symbolic(&y2,sizeof(y),"y2"); // Add constraints so only one value possible klee_assume(y2 > (y-1)); klee_assume(y2 < (y+1)); // Try with +ve lhs overshift_t sym = overshift(15, y2, "Symbolic"); assert(sym == TO_ZERO); // Try with -ve lhs sym = overshift(INT_31_BITS, y2, "Symbolic"); assert(sym == TO_ZERO); // Concrete and symbolic behaviour should be the same assert(conc == sym); return 0; }