blob: 326b37ac77ad66bdf245f42852d507cdc507e224 [file] [log] [blame]
Tom Stellard58ac7442014-04-29 23:12:48 +00001; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs< %s | FileCheck -check-prefix=SI %s
2;
3;
4; Most SALU instructions ignore control flow, so we need to make sure
5; they don't overwrite values from other blocks.
6
Tom Stellard744b99b2014-09-24 01:33:28 +00007; If the branch decision is made based on a value in an SGPR then all
8; threads will execute the same code paths, so we don't need to worry
9; about instructions in different blocks overwriting each other.
10; SI-LABEL: @sgpr_if_else_salu_br
11; SI: S_ADD
12; SI: S_ADD
Tom Stellard58ac7442014-04-29 23:12:48 +000013
Tom Stellard744b99b2014-09-24 01:33:28 +000014define void @sgpr_if_else_salu_br(i32 addrspace(1)* %out, i32 %a, i32 %b, i32 %c, i32 %d, i32 %e) {
Tom Stellard58ac7442014-04-29 23:12:48 +000015entry:
16 %0 = icmp eq i32 %a, 0
17 br i1 %0, label %if, label %else
18
19if:
20 %1 = add i32 %b, %c
21 br label %endif
22
23else:
24 %2 = add i32 %d, %e
25 br label %endif
26
27endif:
28 %3 = phi i32 [%1, %if], [%2, %else]
29 %4 = add i32 %3, %a
30 store i32 %4, i32 addrspace(1)* %out
31 ret void
32}
Tom Stellard744b99b2014-09-24 01:33:28 +000033
34; The two S_ADD instructions should write to different registers, since
35; different threads will take different control flow paths.
36
37; SI-LABEL: @sgpr_if_else_valu_br
38; SI: S_ADD_I32 [[SGPR:s[0-9]+]]
39; SI-NOT: S_ADD_I32 [[SGPR]]
40
41define void @sgpr_if_else_valu_br(i32 addrspace(1)* %out, float %a, i32 %b, i32 %c, i32 %d, i32 %e) {
42entry:
43 %tid = call i32 @llvm.r600.read.tidig.x() #0
44 %tid_f = uitofp i32 %tid to float
45 %tmp1 = fcmp ueq float %tid_f, 0.0
46 br i1 %tmp1, label %if, label %else
47
48if:
49 %tmp2 = add i32 %b, %c
50 br label %endif
51
52else:
53 %tmp3 = add i32 %d, %e
54 br label %endif
55
56endif:
57 %tmp4 = phi i32 [%tmp2, %if], [%tmp3, %else]
58 store i32 %tmp4, i32 addrspace(1)* %out
59 ret void
60}
61
62declare i32 @llvm.r600.read.tidig.x() #0
63
64attributes #0 = { readnone }