[llvm] [AMDGPU] Allow selection of BITOP3 for some 2 opcodes and B32 cases (PR #122267)
Matt Arsenault via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 9 04:47:10 PST 2025
================
@@ -3797,7 +3791,11 @@ bool AMDGPUInstructionSelector::selectBITOP3(MachineInstr &MI) const {
mi_match(MI, *MRI, m_GOr(m_GOr(m_Reg(), m_Reg()), m_Reg())) ||
mi_match(MI, *MRI, m_GOr(m_GAnd(m_Reg(), m_Reg()), m_Reg())))
return false;
- }
+ } else if (NumOpcodes < 4)
+ // For a uniform case threshold should be higher to account for moves
+ // between VGPRs and SGPRs. It needs one operand in a VGPR, rest two can be
+ // in SGPRs and a readtfirstlane after.
+ return false;
----------------
arsenm wrote:
```suggestion
} else if (NumOpcodes < 4) {
// For a uniform case threshold should be higher to account for moves
// between VGPRs and SGPRs. It needs one operand in a VGPR, rest two can be
// in SGPRs and a readtfirstlane after.
return false;
}
```
https://github.com/llvm/llvm-project/pull/122267
More information about the llvm-commits
mailing list