[Instrumentation] Fix a warning
[llvm-project.git] / llvm / test / CodeGen / AArch64 / switch-unreachable-default.ll
blobdceaeb387293576219f3e87aa76e7bce9004d1ce
1 ; RUN: llc -O3 -aarch64-min-jump-table-entries=4 -o - %s | FileCheck %s
3 ; Test that the output in the presence of an unreachable default does not have
4 ; a compare and branch at the top of the switch to handle the default case.
6 target triple = "aarch64-unknown-linux-gnu"
8 ; Function Attrs: nounwind
9 define void @fn(i4) {
10   switch i4 %0, label %default [
11     i4 0, label %case_0
12     i4 1, label %case_1
13     i4 2, label %case_2
14     i4 3, label %case_3
15     i4 4, label %case_4
16     i4 5, label %case_5
17   ]
19 ; CHECK-LABEL: fn:
20 ; CHECK-NOT:    sub
21 ; CHECK-NOT:    cmp
22 ; CHECK-NOT:    b.hi
23 ; CHECK:        ldrb {{w[0-9]+}}, [{{x[0-9]+}}, {{x[0-9]+}}]
24 ; CHECK:        add {{x[0-9]+}}, {{x[0-9]+}}, {{x[0-9]+}}, lsl #2
25 ; CHECK:        br {{x[0-9]+}}
27 default:
28   unreachable
30 case_0:
31   tail call void @handle_case_00(i4 %0) #2
32   br label %return_label
34 case_1:
35   tail call void @handle_case_01(i4 %0) #2
36   br label %return_label
38 case_2:
39   tail call void @handle_case_02(i4 %0) #2
40   br label %return_label
42 case_3:
43   tail call void @handle_case_03(i4 %0) #2
44   br label %return_label
46 case_4:
47   tail call void @handle_case_04(i4 %0) #2
48   br label %return_label
50 case_5:
51   tail call void @handle_case_05(i4 %0) #2
52   br label %return_label
54 return_label:
55   ret void
58 declare  void @handle_case_00(i4)
59 declare  void @handle_case_01(i4)
60 declare  void @handle_case_02(i4)
61 declare  void @handle_case_03(i4)
62 declare  void @handle_case_04(i4)
63 declare  void @handle_case_05(i4)
67 define i32 @reachable_fallthrough(i32 %x) {
68 entry:
69   switch i32 %x, label %def [
70     i32 1,  label %bb1
71     i32 8,  label %bb2
72     i32 16, label %bb3
73     i32 32, label %bb4
74     i32 -64, label %bb5
75   ]
77 ; The switch is lowered with a jump table for cases 1--32 and case 64 handled
78 ; separately. Even though the default of the switch is unreachable, the
79 ; fall-through for the jump table *is* reachable so the range check must be
80 ; emitted.
82 ; CHECK-LABEL: reachable_fallthrough
83 ; CHECK: sub [[REG:w[0-9]+]], w0, #1
84 ; CHECK: cmp [[REG]], #31
85 ; CHECK: b.hi
87 def: unreachable
88 bb1: br label %return
89 bb2: br label %return
90 bb3: br label %return
91 bb4: br label %return
92 bb5: br label %return
94 return:
95   %p = phi i32 [ 3, %bb1 ], [ 2, %bb2 ], [ 1, %bb3 ], [ 0, %bb4 ], [ 42, %bb5 ]
96   ret i32 %p