mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 05:41:42 +00:00
AMDGPU/R600: Fix ALU clause markers use detection
also exit early on kill instead of redefinition. Differential Revision: https://reviews.llvm.org/D30230 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@297060 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9517d55719
commit
ec8e013baa
@ -196,6 +196,7 @@ private:
|
||||
MachineBasicBlock::iterator Def,
|
||||
MachineBasicBlock::iterator BBEnd) {
|
||||
const R600RegisterInfo &TRI = TII->getRegisterInfo();
|
||||
//TODO: change this to defs?
|
||||
for (MachineInstr::const_mop_iterator
|
||||
MOI = Def->operands_begin(),
|
||||
MOE = Def->operands_end(); MOI != MOE; ++MOI) {
|
||||
@ -218,15 +219,17 @@ private:
|
||||
if (AluInstCount >= TII->getMaxAlusPerClause())
|
||||
return false;
|
||||
|
||||
// TODO: Is this true? kill flag appears to work OK below
|
||||
// Register kill flags have been cleared by the time we get to this
|
||||
// pass, but it is safe to assume that all uses of this register
|
||||
// occur in the same basic block as its definition, because
|
||||
// it is illegal for the scheduler to schedule them in
|
||||
// different blocks.
|
||||
if (UseI->findRegisterUseOperandIdx(MOI->getReg()))
|
||||
if (UseI->readsRegister(MOI->getReg()))
|
||||
LastUseCount = AluInstCount;
|
||||
|
||||
if (UseI != Def && UseI->findRegisterDefOperandIdx(MOI->getReg()) != -1)
|
||||
// Exit early if the current use kills the register
|
||||
if (UseI != Def && UseI->killsRegister(MOI->getReg()))
|
||||
break;
|
||||
}
|
||||
if (LastUseCount)
|
||||
|
@ -1,8 +1,8 @@
|
||||
; RUN: opt -loop-unroll -unroll-threshold=2000 -S < %s | llc -march=r600 -mcpu=cypress | FileCheck %s
|
||||
; XFAIL: *
|
||||
; REQUIRES: asserts
|
||||
|
||||
; CHECK: {{^}}@alu_limits:
|
||||
; CHECK: {{^}}alu_limits:
|
||||
; CHECK: CF_END
|
||||
|
||||
%struct.foo = type {i32, i32, i32}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user