blob: eca8fc7f12eda3c6f43e27b64b230e6b26078e36 (
plain) (
blame)
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
|
// Check if div-instructions are correctly instrumented:
// * unoptimized code will contain a call to klee_div_zero_check
// * optimized code will have this check inlined
// In both cases, the `div` instruction should have been marked with meta-data: klee.check.div
//
// RUN: %clang %s -emit-llvm -g -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --check-div-zero=true %t.bc >%t.div_enabled.log
// RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=DIV-ENABLED
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --check-div-zero=true --optimize %t.bc >%t.div_enabled.log
// RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=DIV-ENABLED-OPT
// Without debug information
// RUN: %clang %s -emit-llvm -c -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --check-div-zero=true %t.bc >%t.div_enabled.log
// RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=DIV-ENABLED
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out --check-div-zero=true --optimize %t.bc >%t.div_enabled.log
// RUN: FileCheck %s -input-file=%t.klee-out/assembly.ll -check-prefix=DIV-ENABLED-OPT
#include "klee/klee.h"
#include <stdio.h>
int main(int argc, char **argv) {
char c;
klee_make_symbolic(&c, sizeof(c), "index");
// Validate
if (argc / c == 5)
return 1;
// Check that div has been instrumented once
// DIV-ENABLED: call {{.*}}void @klee_div_zero_check({{.+}} %{{.+}})
// DIV-ENABLED-NOT: call {{.*}}void @klee_div_zero_check
// Check that div has the proper metadata
// DIV-ENABLED: sdiv {{.*}} !klee.check.div
// DIV-ENABLED-OPT: sdiv {{.*}} !klee.check.div
// Validate
if (argc / 5 == 5)
return 1;
// Check that div has not been instrumented
// DIV-ENABLED-NOT: call {{.*}}void @klee_div_zero_check(i64 5)
// DIV-ENABLED-NOT: sdiv {{.*}} !klee.check.div
// DIV-ENABLED-OPT-NOT: sdiv {{.*}} !klee.check.div
return 0;
}
|