Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / CodeGen / Hexagon / subi-asl.ll
blobd7610ceb62ace82033c60c050542f9abf4e8a8ab
1 ; RUN: llc -march=hexagon < %s | FileCheck %s
3 ; Check if S4_subi_asl_ri is being generated correctly.
5 ; CHECK-LABEL: yes_sub_asl
6 ; CHECK: [[REG1:(r[0-9]+)]] = sub(#0,asl([[REG1]],#1))
8 ; CHECK-LABEL: no_sub_asl
9 ; CHECK: [[REG2:(r[0-9]+)]] = asl(r{{[0-9]+}},#1)
10 ; CHECK: r{{[0-9]+}} = sub([[REG2]],r{{[0-9]+}})
12 %struct.rtx_def = type { i16, i8 }
14 @this_insn_number = external global i32, align 4
16 ; Function Attrs: nounwind
17 define void @yes_sub_asl(%struct.rtx_def* %reg, %struct.rtx_def* nocapture readonly %setter) #0 {
18 entry:
19   %code = getelementptr inbounds %struct.rtx_def, %struct.rtx_def* %reg, i32 0, i32 0
20   %0 = load i16, i16* %code, align 4
21   switch i16 %0, label %return [
22     i16 2, label %if.end
23     i16 5, label %if.end
24   ]
26 if.end:
27   %code6 = getelementptr inbounds %struct.rtx_def, %struct.rtx_def* %setter, i32 0, i32 0
28   %1 = load i16, i16* %code6, align 4
29   %cmp8 = icmp eq i16 %1, 56
30   %conv9 = zext i1 %cmp8 to i32
31   %2 = load i32, i32* @this_insn_number, align 4
32   %3 = mul i32 %2, -2
33   %sub = add nsw i32 %conv9, %3
34   tail call void @reg_is_born(%struct.rtx_def* nonnull %reg, i32 %sub) #2
35   br label %return
37 return:
38   ret void
41 declare void @reg_is_born(%struct.rtx_def*, i32) #1
43 ; Function Attrs: nounwind
44 define void @no_sub_asl(%struct.rtx_def* %reg, %struct.rtx_def* nocapture readonly %setter) #0 {
45 entry:
46   %code = getelementptr inbounds %struct.rtx_def, %struct.rtx_def* %reg, i32 0, i32 0
47   %0 = load i16, i16* %code, align 4
48   switch i16 %0, label %return [
49     i16 2, label %if.end
50     i16 5, label %if.end
51   ]
53 if.end:
54   %1 = load i32, i32* @this_insn_number, align 4
55   %mul = mul nsw i32 %1, 2
56   %code6 = getelementptr inbounds %struct.rtx_def, %struct.rtx_def* %setter, i32 0, i32 0
57   %2 = load i16, i16* %code6, align 4
58   %cmp8 = icmp eq i16 %2, 56
59   %conv9 = zext i1 %cmp8 to i32
60   %sub = sub nsw i32 %mul, %conv9
61   tail call void @reg_is_born(%struct.rtx_def* nonnull %reg, i32 %sub) #2
62   br label %return
64 return:
65   ret void
68 attributes #0 = { nounwind "target-cpu"="hexagonv5" }
69 attributes #1 = { "target-cpu"="hexagonv5" }
70 attributes #2 = { nounwind }