mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-19 17:33:29 +00:00
04d7d13d30
When the switch-to-lookup tables transform landed in SimplifyCFG, it was pointed out that this could be inappropriate for some targets. Since there was no way at the time for the pass to know anything about the target, an awkward reverse-transform was added in CodeGenPrepare that turned lookup tables back into switches for some targets. This patch uses the new TargetTransformInfo to determine if a switch should be transformed, and removes CodeGenPrepare::ConvertLoadToSwitch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167011 91177308-0d34-0410-b5e6-96231b3b80d8
33 lines
903 B
LLVM
33 lines
903 B
LLVM
; RUN: opt < %s -simplifycfg -S -mtriple=sparc-unknown-unknown | FileCheck %s
|
|
|
|
; Check that switches are not turned into lookup tables, as this is not
|
|
; considered profitable on the target.
|
|
|
|
define i32 @f(i32 %c) nounwind uwtable readnone {
|
|
entry:
|
|
switch i32 %c, label %sw.default [
|
|
i32 42, label %return
|
|
i32 43, label %sw.bb1
|
|
i32 44, label %sw.bb2
|
|
i32 45, label %sw.bb3
|
|
i32 46, label %sw.bb4
|
|
i32 47, label %sw.bb5
|
|
i32 48, label %sw.bb6
|
|
]
|
|
|
|
sw.bb1: br label %return
|
|
sw.bb2: br label %return
|
|
sw.bb3: br label %return
|
|
sw.bb4: br label %return
|
|
sw.bb5: br label %return
|
|
sw.bb6: br label %return
|
|
sw.default: br label %return
|
|
return:
|
|
%retval.0 = phi i32 [ 15, %sw.default ], [ 1, %sw.bb6 ], [ 62, %sw.bb5 ], [ 27, %sw.bb4 ], [ -1, %sw.bb3 ], [ 0, %sw.bb2 ], [ 123, %sw.bb1 ], [ 55, %entry ]
|
|
ret i32 %retval.0
|
|
|
|
; CHECK: @f
|
|
; CHECK-NOT: getelementptr
|
|
; CHECK: switch i32 %c
|
|
}
|