mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 04:09:45 +00:00
R600/SI: Move SIFixSGPRCopies to inst selector passes
This should expose more of the actually used VALU instructions to the machine optimization passes. This also should help getting i1 handling into a better state. For not entirly understood reasons, this fixes the split-scalar-i64-add.ll test where a 64-bit add would only partially be moved to the VALU resulting in use of undefined VCC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222256 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
50fa2ff5d2
commit
a140448780
@ -150,8 +150,15 @@ AMDGPUPassConfig::addPreISel() {
|
||||
}
|
||||
|
||||
bool AMDGPUPassConfig::addInstSelector() {
|
||||
const AMDGPUSubtarget &ST = TM->getSubtarget<AMDGPUSubtarget>();
|
||||
|
||||
addPass(createAMDGPUISelDag(getAMDGPUTargetMachine()));
|
||||
addPass(createSILowerI1CopiesPass());
|
||||
|
||||
if (ST.getGeneration() >= AMDGPUSubtarget::SOUTHERN_ISLANDS) {
|
||||
addPass(createSILowerI1CopiesPass());
|
||||
addPass(createSIFixSGPRCopiesPass(*TM));
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@ -161,12 +168,7 @@ bool AMDGPUPassConfig::addPreRegAlloc() {
|
||||
if (ST.getGeneration() <= AMDGPUSubtarget::NORTHERN_ISLANDS) {
|
||||
addPass(createR600VectorRegMerger(*TM));
|
||||
} else {
|
||||
addPass(createSIFixSGPRCopiesPass(*TM));
|
||||
// SIFixSGPRCopies can generate a lot of duplicate instructions,
|
||||
// so we need to run MachineCSE afterwards.
|
||||
addPass(&MachineCSEID);
|
||||
|
||||
if (getOptLevel() > CodeGenOpt::None && ST.loadStoreOptEnabled()) {
|
||||
if (getOptLevel() > CodeGenOpt::None && ST.loadStoreOptEnabled()) {
|
||||
// Don't do this with no optimizations since it throws away debug info by
|
||||
// merging nonadjacent loads.
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
|
||||
|
||||
; SILowerI1Copies was not handling IMPLICIT_DEF
|
||||
; SI-LABEL: @br_implicit_def
|
||||
; SI-LABEL: {{^}}br_implicit_def:
|
||||
; SI: BB#0:
|
||||
; SI-NEXT: s_and_saveexec_b64
|
||||
; SI-NEXT: s_xor_b64
|
||||
|
@ -1,6 +1,14 @@
|
||||
; XFAIL: *
|
||||
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s
|
||||
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI %s
|
||||
|
||||
; SI-LABEL: {{^}}br_i1_phi:
|
||||
; SI: v_mov_b32_e32 [[REG:v[0-9]+]], 0{{$}}
|
||||
; SI: s_and_saveexec_b64
|
||||
; SI: s_xor_b64
|
||||
; SI: v_mov_b32_e32 [[REG]], -1{{$}}
|
||||
; SI: v_cmp_ne_i32_e64 {{s\[[0-9]+:[0-9]+\]}}, [[REG]], 0
|
||||
; SI: s_and_saveexec_b64
|
||||
; SI: s_xor_b64
|
||||
; SI: s_endpgm
|
||||
define void @br_i1_phi(i32 %arg, i1 %arg1) #0 {
|
||||
bb:
|
||||
br i1 %arg1, label %bb2, label %bb3
|
||||
|
@ -1,4 +1,3 @@
|
||||
; XFAIL:*
|
||||
; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck -check-prefix=SI -check-prefix=FUNC %s
|
||||
|
||||
declare i32 @llvm.r600.read.tidig.x() readnone
|
||||
@ -9,6 +8,8 @@ declare i32 @llvm.r600.read.tidig.x() readnone
|
||||
; scc instead.
|
||||
|
||||
; FUNC-LABEL: {{^}}imp_def_vcc_split_i64_add_0:
|
||||
; SI: v_add_i32
|
||||
; SI: v_addc_u32
|
||||
define void @imp_def_vcc_split_i64_add_0(i64 addrspace(1)* %out, i32 %val) {
|
||||
%vec.0 = insertelement <2 x i32> undef, i32 %val, i32 0
|
||||
%vec.1 = insertelement <2 x i32> %vec.0, i32 999999, i32 1
|
||||
@ -19,6 +20,8 @@ define void @imp_def_vcc_split_i64_add_0(i64 addrspace(1)* %out, i32 %val) {
|
||||
}
|
||||
|
||||
; FUNC-LABEL: {{^}}imp_def_vcc_split_i64_add_1:
|
||||
; SI: v_add_i32
|
||||
; SI: v_addc_u32
|
||||
define void @imp_def_vcc_split_i64_add_1(i64 addrspace(1)* %out, i32 %val0, i64 %val1) {
|
||||
%vec.0 = insertelement <2 x i32> undef, i32 %val0, i32 0
|
||||
%vec.1 = insertelement <2 x i32> %vec.0, i32 99999, i32 1
|
||||
@ -30,6 +33,8 @@ define void @imp_def_vcc_split_i64_add_1(i64 addrspace(1)* %out, i32 %val0, i64
|
||||
|
||||
; Doesn't use constants
|
||||
; FUNC-LABEL @imp_def_vcc_split_i64_add_2
|
||||
; SI: v_add_i32
|
||||
; SI: v_addc_u32
|
||||
define void @imp_def_vcc_split_i64_add_2(i64 addrspace(1)* %out, i32 addrspace(1)* %in, i32 %val0, i64 %val1) {
|
||||
%tid = call i32 @llvm.r600.read.tidig.x() readnone
|
||||
%gep = getelementptr i32 addrspace(1)* %in, i32 %tid
|
||||
|
Loading…
Reference in New Issue
Block a user