diff options
| author | Akira Hatanaka <ahatanaka@apple.com> | 2015-06-08 18:50:43 +0000 |
|---|---|---|
| committer | Akira Hatanaka <ahatanaka@apple.com> | 2015-06-08 18:50:43 +0000 |
| commit | 4a61619ff508e8351d957f8ba3b0a37266d3095e (patch) | |
| tree | 0ae1f5fba7cc2c8208a287f81ff174c7a7bef229 /llvm/test | |
| parent | 11472c0a38529ad9c0cb988d1b28fe8d1d02d4f2 (diff) | |
| download | bcm5719-llvm-4a61619ff508e8351d957f8ba3b0a37266d3095e.tar.gz bcm5719-llvm-4a61619ff508e8351d957f8ba3b0a37266d3095e.zip | |
[ARM] Pass a callback to FunctionPass constructors to enable skipping execution
on a per-function basis.
Previously some of the passes were conditionally added to ARM's pass pipeline
based on the target machine's subtarget. This patch makes changes to add those
passes unconditionally and execute them conditonally based on the predicate
functor passed to the pass constructors. This enables running different sets of
passes for different functions in the module.
rdar://problem/20542263
Differential Revision: http://reviews.llvm.org/D8717
llvm-svn: 239325
Diffstat (limited to 'llvm/test')
| -rw-r--r-- | llvm/test/CodeGen/ARM/ifcvt-callback.ll | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/ARM/ifcvt-callback.ll b/llvm/test/CodeGen/ARM/ifcvt-callback.ll new file mode 100644 index 00000000000..62a66e745b3 --- /dev/null +++ b/llvm/test/CodeGen/ARM/ifcvt-callback.ll @@ -0,0 +1,22 @@ +; RUN: llc -march thumb %s -o - | FileCheck %s + +; This test checks that if-conversion pass is unconditionally added to the pass +; pipeline and is conditionally executed based on the per-function targert-cpu +; attribute. + +; CHECK: ite eq + +define i32 @test_ifcvt(i32 %a, i32 %b) #0 { + %tmp2 = icmp eq i32 %a, 0 + br i1 %tmp2, label %cond_false, label %cond_true + +cond_true: + %tmp5 = add i32 %b, 1 + ret i32 %tmp5 + +cond_false: + %tmp7 = add i32 %b, -1 + ret i32 %tmp7 +} + +attributes #0 = { "target-cpu"="cortex-a8" } |

