1; RUN: llc -march=amdgcn < %s | FileCheck -check-prefix=GCN %s
2
3; Check we can compile this test without infinite loop in the
4; DAG.computeKnownBits() due to missing (Depth + 1) argument in
5; call to it from computeKnownBitsForTargetNode().
6
7; Check that we actually have that target 24 bit multiplication
8; node produced.
9
10; GCN: v_mul_u32_u24
11define amdgpu_kernel void @test(i32 addrspace(1)* nocapture %arg) {
12bb:
13  %tmp = tail call i32 @llvm.amdgcn.workitem.id.x()
14  br label %bb4
15
16bb1:                                              ; preds = %bb4
17  %tmp3 = getelementptr inbounds i32, i32 addrspace(1)* %arg, i32 %tmp46
18  store i32 %tmp46, i32 addrspace(1)* %tmp3, align 4
19  ret void
20
21bb4:                                              ; preds = %bb4, %bb
22  %tmp5 = phi i32 [ 0, %bb ], [ %tmp87, %bb4 ]
23  %tmp6 = phi i32 [ %tmp, %bb ], [ %tmp46, %bb4 ]
24  %tmp7 = ashr i32 %tmp6, 16
25  %tmp8 = mul nsw i32 %tmp7, %tmp7
26  %tmp9 = lshr i32 %tmp8, 16
27  %tmp10 = mul nuw nsw i32 %tmp9, %tmp9
28  %tmp11 = lshr i32 %tmp10, 16
29  %tmp12 = mul nuw nsw i32 %tmp11, %tmp11
30  %tmp13 = lshr i32 %tmp12, 16
31  %tmp14 = mul nuw nsw i32 %tmp13, %tmp13
32  %tmp15 = lshr i32 %tmp14, 16
33  %tmp16 = mul nuw nsw i32 %tmp15, %tmp15
34  %tmp17 = lshr i32 %tmp16, 16
35  %tmp18 = mul nuw nsw i32 %tmp17, %tmp17
36  %tmp19 = lshr i32 %tmp18, 16
37  %tmp20 = mul nuw nsw i32 %tmp19, %tmp19
38  %tmp21 = lshr i32 %tmp20, 16
39  %tmp22 = mul nuw nsw i32 %tmp21, %tmp21
40  %tmp23 = lshr i32 %tmp22, 16
41  %tmp24 = mul nuw nsw i32 %tmp23, %tmp23
42  %tmp25 = lshr i32 %tmp24, 16
43  %tmp26 = mul nuw nsw i32 %tmp25, %tmp25
44  %tmp27 = lshr i32 %tmp26, 16
45  %tmp28 = mul nuw nsw i32 %tmp27, %tmp27
46  %tmp29 = lshr i32 %tmp28, 16
47  %tmp30 = mul nuw nsw i32 %tmp29, %tmp29
48  %tmp31 = lshr i32 %tmp30, 16
49  %tmp32 = mul nuw nsw i32 %tmp31, %tmp31
50  %tmp33 = lshr i32 %tmp32, 16
51  %tmp34 = mul nuw nsw i32 %tmp33, %tmp33
52  %tmp35 = lshr i32 %tmp34, 16
53  %tmp36 = mul nuw nsw i32 %tmp35, %tmp35
54  %tmp37 = lshr i32 %tmp36, 16
55  %tmp38 = mul nuw nsw i32 %tmp37, %tmp37
56  %tmp39 = lshr i32 %tmp38, 16
57  %tmp40 = mul nuw nsw i32 %tmp39, %tmp39
58  %tmp41 = lshr i32 %tmp40, 16
59  %tmp42 = mul nuw nsw i32 %tmp41, %tmp41
60  %tmp43 = lshr i32 %tmp42, 16
61  %tmp44 = mul nuw nsw i32 %tmp43, %tmp43
62  %tmp45 = lshr i32 %tmp44, 16
63  %tmp46 = mul nuw nsw i32 %tmp45, %tmp45
64  %tmp87 = add nuw nsw i32 %tmp5, 1
65  %tmp88 = icmp eq i32 %tmp87, 1000
66  br i1 %tmp88, label %bb1, label %bb4
67}
68
69declare i32 @llvm.amdgcn.workitem.id.x()
70