Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Hexagon / swp-new-phi.ll
blobf877722cdf7808b2472e93fdb7a492bb05bd49fa
1 ; RUN: llc -march=hexagon -enable-pipeliner -pipeliner-max-stages=2 < %s -pipeliner-experimental-cg=true | FileCheck %s
3 ; Test that the generatePhi code doesn't rename a a Phi instruction that's defined
4 ; in the same block.  The bug causes a Phi to incorrectly depend on another Phi.
6 ; CHECK: loop0(.LBB0_[[LOOP:.]],
7 ; CHECK: .LBB0_[[LOOP]]:
8 ; CHECK: memh([[REG0:(r[0-9]+)]]++#2:circ
9 ; CHECK: = mem{{u?}}h([[REG0]]+#0)
10 ; CHECK: endloop0
12 ; Function Attrs: argmemonly nounwind
13 declare ptr @llvm.hexagon.circ.sthhi(ptr, i32, i32, i32) #1
15 ; Function Attrs: nounwind optsize
16 define signext i16 @f0(ptr %a0, ptr %a1, i16 signext %a2, i16 signext %a3) #0 {
17 b0:
18   br label %b1
20 b1:                                               ; preds = %b1, %b0
21   %v0 = phi ptr [ %v10, %b1 ], [ %a1, %b0 ]
22   %v1 = phi i32 [ %v13, %b1 ], [ 1, %b0 ]
23   %v2 = phi i16 [ %v12, %b1 ], [ 0, %b0 ]
24   %v3 = bitcast ptr %v0 to ptr
25   %v4 = add nsw i32 %v1, 10
26   %v5 = getelementptr inbounds i16, ptr %a0, i32 %v4
27   %v6 = load i16, ptr %v5, align 2, !tbaa !0
28   %v7 = sext i16 %v6 to i32
29   %v8 = add nsw i32 %v7, 40000
30   %v9 = tail call ptr @llvm.hexagon.circ.sthhi(ptr %v3, i32 %v8, i32 117441022, i32 2)
31   %v10 = bitcast ptr %v9 to ptr
32   %v11 = load i16, ptr %v10, align 2, !tbaa !0
33   %v12 = add i16 %v11, %v2
34   %v13 = add i32 %v1, 1
35   %v14 = icmp eq i32 %v13, 1000
36   br i1 %v14, label %b2, label %b1
38 b2:                                               ; preds = %b1
39   br label %b3
41 b3:                                               ; preds = %b2
42   ret i16 %v12
45 attributes #0 = { nounwind optsize "target-cpu"="hexagonv55" }
46 attributes #1 = { argmemonly nounwind }
48 !0 = !{!1, !1, i64 0}
49 !1 = !{!"short", !2}
50 !2 = !{!"omnipotent char", !3}
51 !3 = !{!"Simple C/C++ TBAA"}