[PATCH] D70085: [AMDGPU] NFC target dependent requiresUniformRegister refactored out
Alexander via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue May 26 10:18:02 PDT 2020
This revision was not accepted when it landed; it landed in state "Needs Revision".
This revision was automatically updated to reflect the committed changes.
Closed by commit rGfb38b98338cc: [AMDGPU] NFC target dependent requiresUniformRegister refactored out (authored by alex-t).
Changed prior to commit:
https://reviews.llvm.org/D70085?vs=228881&id=266262#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70085/new/
https://reviews.llvm.org/D70085
Files:
llvm/include/llvm/CodeGen/TargetLowering.h
llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
llvm/lib/Target/AMDGPU/SIISelLowering.cpp
llvm/lib/Target/AMDGPU/SIISelLowering.h
Index: llvm/lib/Target/AMDGPU/SIISelLowering.h
===================================================================
--- llvm/lib/Target/AMDGPU/SIISelLowering.h
+++ llvm/lib/Target/AMDGPU/SIISelLowering.h
@@ -416,8 +416,9 @@
virtual const TargetRegisterClass *
getRegClassFor(MVT VT, bool isDivergent) const override;
- virtual bool requiresUniformRegister(MachineFunction &MF,
- const Value *V) const override;
+ virtual bool isDivergent(const LegacyDivergenceAnalysis *DA,
+ MachineFunction &MF, const Value *V) const override;
+ bool requiresUniformRegister(MachineFunction &MF, const Value *V) const;
Align getPrefLoopAlignment(MachineLoop *ML) const override;
void allocateHSAUserSGPRs(CCState &CCInfo,
Index: llvm/lib/Target/AMDGPU/SIISelLowering.cpp
===================================================================
--- llvm/lib/Target/AMDGPU/SIISelLowering.cpp
+++ llvm/lib/Target/AMDGPU/SIISelLowering.cpp
@@ -11226,6 +11226,12 @@
return RC;
}
+bool SITargetLowering::isDivergent(const LegacyDivergenceAnalysis *DA,
+ MachineFunction &MF, const Value *V) const {
+ return !requiresUniformRegister(MF, V) &&
+ TargetLoweringBase::isDivergent(DA, MF, V);
+}
+
// FIXME: This is a workaround for DivergenceAnalysis not understanding always
// uniform values (as produced by the mask results of control flow intrinsics)
// used outside of divergent blocks. The phi users need to also be treated as
Index: llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
===================================================================
--- llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
+++ llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
@@ -398,8 +398,7 @@
}
Register FunctionLoweringInfo::CreateRegs(const Value *V) {
- return CreateRegs(V->getType(), DA && DA->isDivergent(V) &&
- !TLI->requiresUniformRegister(*MF, V));
+ return CreateRegs(V->getType(), TLI->isDivergent(DA, *MF, V));
}
/// GetLiveOutRegInfo - Gets LiveOutInfo for a register, returning NULL if the
Index: llvm/include/llvm/CodeGen/TargetLowering.h
===================================================================
--- llvm/include/llvm/CodeGen/TargetLowering.h
+++ llvm/include/llvm/CodeGen/TargetLowering.h
@@ -28,6 +28,7 @@
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringRef.h"
+#include "llvm/Analysis/LegacyDivergenceAnalysis.h"
#include "llvm/CodeGen/DAGCombine.h"
#include "llvm/CodeGen/ISDOpcodes.h"
#include "llvm/CodeGen/RuntimeLibcalls.h"
@@ -821,12 +822,12 @@
return RC;
}
- /// Allows target to decide about the register class of the
- /// specific value that is live outside the defining block.
- /// Returns true if the value needs uniform register class.
- virtual bool requiresUniformRegister(MachineFunction &MF,
- const Value *) const {
- return false;
+ /// Allows target to decide about the divergence of the
+ /// specific value. Base class implementation returns true
+ /// if the Divergece Analysis exists and reports value as divergent.
+ virtual bool isDivergent(const LegacyDivergenceAnalysis *DA,
+ MachineFunction &MF, const Value *V) const {
+ return DA && DA->isDivergent(V);
}
/// Return the 'representative' register class for the specified value
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D70085.266262.patch
Type: text/x-patch
Size: 3476 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200526/de2bf919/attachment.bin>
More information about the llvm-commits
mailing list