2015-07-02 06:34:59 +08:00
|
|
|
; RUN: llc -march=amdgcn -mcpu=SI -o - %s | FileCheck %s
|
2015-06-30 08:33:44 +08:00
|
|
|
; Don't crash when the use of an undefined value is only detected by the
|
|
|
|
; register coalescer because it is hidden with subregister insert/extract.
|
|
|
|
target triple="amdgcn--"
|
|
|
|
|
2015-07-02 06:34:59 +08:00
|
|
|
; CHECK-LABEL: foobar:
|
|
|
|
; CHECK: s_load_dword s2, s[0:1], 0x9
|
|
|
|
; CHECK-NEXT: s_load_dwordx2 s[4:5], s[0:1], 0xb
|
|
|
|
; CHECK-NEXT: s_waitcnt lgkmcnt(0)
|
2016-05-07 06:43:50 +08:00
|
|
|
; CHECK: v_mbcnt_lo_u32_b32_e64
|
2016-09-30 09:50:20 +08:00
|
|
|
; CHECK-NEXT: v_cmp_eq_u32_e32 vcc, 0, v0
|
2016-05-07 06:43:50 +08:00
|
|
|
; CHECK-NEXT: s_and_saveexec_b64 s[2:3], vcc
|
2015-07-02 06:34:59 +08:00
|
|
|
; CHECK-NEXT: s_xor_b64 s[2:3], exec, s[2:3]
|
|
|
|
; BB0_1:
|
AMDGPU: Remove SIFixSGPRLiveRanges pass
Summary:
This pass is unnecessary and overly conservative. It was motivated by
situations like
def %vreg0:SGPR_32
...
if-block:
..
def %vreg1:SGPR_32
...
else-block:
...
use %vreg0:SGPR_32
...
and similar situations with uses after the non-uniform control flow, where
we are not allowed to assign %vreg0 and %vreg1 to the same physical register,
even though in the original, thread/workitem-based CFG, it looks like the
live ranges of these registers do not overlap.
However, by the time register allocation runs, we have moved to a wave-based
CFG that accurately represents the fact that the wave may run through both
the if- and the else-block. So the live ranges of %vreg0 and %vreg1 already
overlap even without the SIFixSGPRLiveRanges pass.
In addition to proving this change correct, I have tested it with Piglit
and a small number of other tests.
Reviewers: arsenm, tstellarAMD
Subscribers: MatzeB, arsenm, llvm-commits
Differential Revision: http://reviews.llvm.org/D19041
llvm-svn: 266345
2016-04-15 01:42:29 +08:00
|
|
|
; CHECK: s_load_dword s0, s[0:1], 0xa
|
2015-07-02 06:34:59 +08:00
|
|
|
; CHECK-NEXT: s_waitcnt lgkmcnt(0)
|
|
|
|
; BB0_2:
|
|
|
|
; CHECK: s_or_b64 exec, exec, s[2:3]
|
|
|
|
; CHECK-NEXT: s_mov_b32 s7, 0xf000
|
|
|
|
; CHECK-NEXT: s_mov_b32 s6, -1
|
2016-04-29 17:02:30 +08:00
|
|
|
; CHECK-NEXT: buffer_store_dword v1, off, s[4:7], 0
|
2015-07-02 06:34:59 +08:00
|
|
|
; CHECK-NEXT: s_endpgm
|
2015-06-30 08:33:44 +08:00
|
|
|
define void @foobar(float %a0, float %a1, float addrspace(1)* %out) nounwind {
|
|
|
|
entry:
|
|
|
|
%v0 = insertelement <4 x float> undef, float %a0, i32 0
|
2016-02-13 07:45:29 +08:00
|
|
|
%tid = call i32 @llvm.amdgcn.mbcnt.lo(i32 -1, i32 0) #0
|
|
|
|
%cnd = icmp eq i32 %tid, 0
|
|
|
|
br i1 %cnd, label %ift, label %ife
|
2015-06-30 08:33:44 +08:00
|
|
|
|
|
|
|
ift:
|
|
|
|
%v1 = insertelement <4 x float> undef, float %a1, i32 0
|
|
|
|
br label %ife
|
|
|
|
|
|
|
|
ife:
|
|
|
|
%val = phi <4 x float> [ %v1, %ift ], [ %v0, %entry ]
|
|
|
|
%v2 = extractelement <4 x float> %val, i32 1
|
|
|
|
store float %v2, float addrspace(1)* %out, align 4
|
|
|
|
ret void
|
|
|
|
}
|
2016-02-13 07:45:29 +08:00
|
|
|
|
|
|
|
declare i32 @llvm.amdgcn.mbcnt.lo(i32, i32) #0
|
|
|
|
|
|
|
|
attributes #0 = { nounwind readnone }
|