blob: 2b03febb193e5afe82ba33715c507a9e8d1b48d9 (
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
49
50
51
52
53
54
55
56
57
58
59
60
|
// RUN: %clang -emit-llvm %O0opt -g -c %s -o %t.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee -debug-print-escaping-functions --output-dir=%t.klee-out %t.bc 2> %t.log
// RUN: FileCheck --input-file=%t.log %s
#include <stdint.h>
int functionpointer(void) {
return 1;
}
int functionpointer_as_argument(void) {
return 2;
}
short bitcasted_functionpointer(void) {
return 3;
}
int receives_functionpointer(int (*f)(void));
int blockaddress(int x) {
void * target = &&one;
switch (x) {
case 1: break;
case 2:
target = &&two;
goto *target;
default:
goto *target;
}
one:
return 1;
two:
return 2;
}
int function_declaration(void);
uint8_t bitcasted_function_declaration(void);
int main(int argc, char *argv[]) {
int (*f1)(void) = functionpointer;
f1();
receives_functionpointer(functionpointer_as_argument);
int (*f2)(void) =(int (*)(void))bitcasted_functionpointer;
f2();
blockaddress(argc);
int (*f3)(void) = function_declaration;
f3();
uint64_t (*f4)(void) =(uint64_t (*)(void))bitcasted_function_declaration;
f4();
// CHECK: KLEE: escaping functions: {{\[((functionpointer|functionpointer_as_argument|bitcasted_functionpointer|function_declaration|bitcasted_function_declaration)(, )?){5}\]}}
return 0;
}
|