OLD | NEW |
---|---|
(Empty) | |
1 ; This is a smoke test of constant blinding and constant pooling. | |
2 | |
3 ; RUN: %llvm2ice -O2 -rng-seed=1 -randomize-immediates=constant-blinding %s \ | |
4 ; RUN: | FileCheck %s --check-prefix=BLINDING | |
5 ; RUN: %llvm2ice -O2 -rng-seed=1 -randomize-immediates=constant-pooling %s \ | |
6 ; RUN: | FileCheck %s --check-prefix=POOLING | |
7 | |
8 define i32 @add_arg_plus_200000(i32 %arg) { | |
9 entry: | |
10 %res = add i32 200000, %arg | |
11 ret i32 %res | |
12 ; BLINDING-LABEL: add_arg_plus_200000: | |
13 ; BLINDING: mov ecx, 16807 | |
14 ; BLINDING: xor ecx, 216295 | |
Jim Stichnoth
2014/08/13 23:30:26
Instead of ecx, could you use a pattern that tests
wala
2014/08/16 00:07:13
Done.
| |
15 | |
16 ; POOLING-LABEL: add_arg_plus_200000: | |
17 ; POOLING: mov ecx, dword ptr [L$i32$0] | |
Jim Stichnoth
2014/08/13 23:30:26
Instead of ecx, would it be reasonable test for an
wala
2014/08/16 00:07:13
Done.
| |
18 } | |
19 | |
20 define float @load_arg_plus_200000(float* %arg) { | |
21 entry: | |
22 %arg.int = ptrtoint float* %arg to i32 | |
23 %addr.int = add i32 %arg.int, 200000 | |
24 %addr.ptr = inttoptr i32 %addr.int to float* | |
25 %addr.load = load float* %addr.ptr, align 4 | |
26 ret float %addr.load | |
27 ; BLINDING-LABEL: load_arg_plus_200000: | |
28 ; BLINDING: mov ecx, 282475249 | |
29 ; BLINDING: xor ecx, 282408881 | |
30 ; BLINDING: lea eax, dword ptr [eax+ecx] | |
31 | |
32 ; POOLING-LABEL: load_arg_plus_200000: | |
33 ; POOLING: mov ecx, dword ptr [L$i32$0] | |
34 ; POOLING: lea eax, dword ptr [eax+ecx] | |
35 } | |
OLD | NEW |