24#define DEBUG_TYPE "si-optimize-exec-masking-pre-ra"
37 unsigned OrSaveExecOpc;
55 return "SI optimize exec mask operations pre-RA";
68 "SI optimize exec mask operations pre-RA",
false,
false)
73char SIOptimizeExecMaskingPreRA::
ID = 0;
78 return new SIOptimizeExecMaskingPreRA();
125 unsigned Opc = MI.getOpcode();
126 return Opc == AMDGPU::S_CBRANCH_VCCZ ||
127 Opc == AMDGPU::S_CBRANCH_VCCNZ; });
132 TRI->findReachingDef(CondReg, AMDGPU::NoSubRegister, *
I, *
MRI, LIS);
133 if (!
And ||
And->getOpcode() != AndOpc ||
134 !
And->getOperand(1).isReg() || !
And->getOperand(2).isReg())
141 AndCC = &
And->getOperand(2);
144 }
else if (
And->getOperand(2).getReg() !=
Register(ExecReg)) {
148 auto *
Cmp =
TRI->findReachingDef(CmpReg, CmpSubReg, *
And, *
MRI, LIS);
149 if (!Cmp || !(
Cmp->getOpcode() == AMDGPU::V_CMP_NE_U32_e32 ||
150 Cmp->getOpcode() == AMDGPU::V_CMP_NE_U32_e64) ||
151 Cmp->getParent() !=
And->getParent())
165 auto *Sel =
TRI->findReachingDef(SelReg, Op1->
getSubReg(), *Cmp, *
MRI, LIS);
166 if (!Sel || Sel->getOpcode() != AMDGPU::V_CNDMASK_B32_e64)
169 if (
TII->hasModifiersSet(*Sel, AMDGPU::OpName::src0_modifiers) ||
170 TII->hasModifiersSet(*Sel, AMDGPU::OpName::src1_modifiers))
173 Op1 =
TII->getNamedOperand(*Sel, AMDGPU::OpName::src0);
174 Op2 =
TII->getNamedOperand(*Sel, AMDGPU::OpName::src1);
189 SlotIndex SelIdx = LIS->getInstructionIndex(*Sel);
193 return VNI->isPHIDef();
198 LLVM_DEBUG(
dbgs() <<
"Folding sequence:\n\t" << *Sel <<
'\t' << *Cmp <<
'\t'
203 And->getOperand(0).getReg())
212 SlotIndex AndIdx = LIS->ReplaceMachineInstrInMaps(*
And, *Andn2);
213 And->eraseFromParent();
219 SlotIndex CmpIdx = LIS->getInstructionIndex(*Cmp);
224 LIS->removeInterval(CCReg);
225 LIS->createAndComputeVirtRegInterval(CCReg);
228 LIS->removeAllRegUnitsForPhysReg(CCReg);
237 return MI.readsRegister(CondReg, TRI);
241 LIS->removeVRegDefAt(*CmpLI, CmpIdx.
getRegSlot());
242 LIS->RemoveMachineInstrFromMaps(*Cmp);
243 Cmp->eraseFromParent();
248 LIS->shrinkToUses(SelLI);
250 if (
MRI->use_nodbg_empty(SelReg) && (IsKill ||
IsDead)) {
253 LIS->removeVRegDefAt(*SelLI, SelIdx.
getRegSlot());
254 LIS->RemoveMachineInstrFromMaps(*Sel);
255 bool ShrinkSel = Sel->getOperand(0).readsReg();
256 Sel->eraseFromParent();
260 LIS->shrinkToUses(SelLI);
289 if (SaveExecMI.
getOpcode() != OrSaveExecOpc)
293 return MI.getOpcode() == XorTermrOpc;
308 while (
I !=
First && !AndExecMI) {
309 if (
I->getOpcode() == AndOpc &&
I->getOperand(0).getReg() == DstReg &&
310 I->getOperand(1).getReg() ==
Register(ExecReg))
321 SlotIndex StartIdx = LIS->getInstructionIndex(SaveExecMI);
322 SlotIndex EndIdx = LIS->getInstructionIndex(*AndExecMI);
324 LiveRange &RegUnit = LIS->getRegUnit(Unit);
325 if (RegUnit.
find(StartIdx) != std::prev(RegUnit.
find(EndIdx)))
330 LIS->removeInterval(SavedExecReg);
331 LIS->removeInterval(DstReg);
335 LIS->RemoveMachineInstrFromMaps(*AndExecMI);
338 LIS->createAndComputeVirtRegInterval(DstReg);
343bool SIOptimizeExecMaskingPreRA::runOnMachineFunction(
MachineFunction &MF) {
348 TRI =
ST.getRegisterInfo();
349 TII =
ST.getInstrInfo();
351 LIS = &getAnalysis<LiveIntervalsWrapperPass>().getLIS();
354 AndOpc =
Wave32 ? AMDGPU::S_AND_B32 : AMDGPU::S_AND_B64;
355 Andn2Opc =
Wave32 ? AMDGPU::S_ANDN2_B32 : AMDGPU::S_ANDN2_B64;
357 Wave32 ? AMDGPU::S_OR_SAVEEXEC_B32 : AMDGPU::S_OR_SAVEEXEC_B64;
358 XorTermrOpc =
Wave32 ? AMDGPU::S_XOR_B32_term : AMDGPU::S_XOR_B64_term;
363 bool Changed =
false;
367 if (optimizeElseBranch(
MBB)) {
368 RecalcRegs.
insert(AMDGPU::SCC);
372 if (optimizeVcndVcmpPair(
MBB)) {
373 RecalcRegs.
insert(AMDGPU::VCC_LO);
374 RecalcRegs.insert(AMDGPU::VCC_HI);
375 RecalcRegs.insert(AMDGPU::SCC);
389 if (
Term.getOpcode() != AMDGPU::S_ENDPGM ||
Term.getNumOperands() != 1)
395 auto CurBB =
Blocks.pop_back_val();
396 auto I = CurBB->rbegin(), E = CurBB->rend();
398 if (
I->isUnconditionalBranch() ||
I->getOpcode() == AMDGPU::S_ENDPGM)
400 else if (
I->isBranch())
405 if (
I->isDebugInstr()) {
410 if (
I->mayStore() ||
I->isBarrier() ||
I->isCall() ||
411 I->hasUnmodeledSideEffects() ||
I->hasOrderedMemoryRef())
415 <<
"Removing no effect instruction: " << *
I <<
'\n');
417 for (
auto &
Op :
I->operands()) {
419 RecalcRegs.insert(
Op.getReg());
422 auto Next = std::next(
I);
423 LIS->RemoveMachineInstrFromMaps(*
I);
424 I->eraseFromParent();
434 for (
auto *Pred : CurBB->predecessors()) {
435 if (Pred->succ_size() == 1)
449 unsigned ScanThreshold = 10;
451 && ScanThreshold--; ++
I) {
453 if (!(
I->isFullCopy() &&
I->getOperand(1).getReg() ==
Register(ExecReg)))
456 Register SavedExec =
I->getOperand(0).getReg();
457 if (SavedExec.
isVirtual() &&
MRI->hasOneNonDBGUse(SavedExec)) {
458 MachineInstr *SingleExecUser = &*
MRI->use_instr_nodbg_begin(SavedExec);
462 if (SingleExecUser->
getParent() ==
I->getParent() &&
464 TII->isOperandLegal(*SingleExecUser,
Idx, &
I->getOperand(1))) {
466 LIS->RemoveMachineInstrFromMaps(*
I);
467 I->eraseFromParent();
468 MRI->replaceRegWith(SavedExec, ExecReg);
469 LIS->removeInterval(SavedExec);
478 for (
auto Reg : RecalcRegs) {
479 if (
Reg.isVirtual()) {
480 LIS->removeInterval(Reg);
481 if (!
MRI->reg_empty(Reg))
482 LIS->createAndComputeVirtRegInterval(Reg);
484 LIS->removeAllRegUnitsForPhysReg(Reg);
unsigned const MachineRegisterInfo * MRI
Provides AMDGPU specific target descriptions.
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
DenseMap< Block *, BlockRelaxAux > Blocks
AMD GCN specific subclass of TargetSubtarget.
const HexagonInstrInfo * TII
unsigned const TargetRegisterInfo * TRI
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
SI optimize exec mask operations pre RA
static bool isDefBetween(const LiveRange &LR, SlotIndex AndIdx, SlotIndex SelIdx)
SI optimize exec mask operations
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesAll()
Set by analyses that do not transform their input at all.
This class represents an Operation in the Expression.
Implements a dense probed hash-table based set.
FunctionPass class - This class is used to implement most global optimizations.
LiveInterval - This class represents the liveness of a register, or stack slot.
SlotIndex getInstructionIndex(const MachineInstr &Instr) const
Returns the base index of the given instruction.
LiveRange & getRegUnit(unsigned Unit)
Return the live range for register unit Unit.
LiveInterval & getInterval(Register Reg)
Result of a LiveRange query.
bool isDeadDef() const
Return true if this instruction has a dead def.
VNInfo * valueIn() const
Return the value that is live-in to the instruction.
VNInfo * valueOut() const
Return the value leaving the instruction, if any.
bool isKill() const
Return true if the live-in value is killed by this instruction.
This class represents the liveness of a register, stack slot, etc.
iterator_range< vni_iterator > vnis()
LiveQueryResult Query(SlotIndex Idx) const
Query Liveness at Idx.
iterator find(SlotIndex Pos)
find - Return an iterator pointing to the first segment that ends after Pos, or end().
Wrapper class representing physical registers. Should be passed by value.
static MCRegister from(unsigned Val)
Check the provided unsigned value is a valid MCRegister.
iterator_range< iterator > terminators()
reverse_iterator rbegin()
MachineFunctionPass - This class adapts the FunctionPass interface to allow convenient creation of pa...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
virtual bool runOnMachineFunction(MachineFunction &MF)=0
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
unsigned getOpcode() const
Returns the opcode of this MachineInstr.
const MachineBasicBlock * getParent() const
int findRegisterUseOperandIdx(Register Reg, const TargetRegisterInfo *TRI, bool isKill=false) const
Returns the operand index that is a use of the specific register or -1 if it is not found.
void eraseFromParent()
Unlink 'this' from the containing basic block and delete it.
const MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
bool isReg() const
isReg - Tests if this is a MO_Register operand.
void setIsDead(bool Val=true)
void setReg(Register Reg)
Change the register this operand corresponds to.
bool isImm() const
isImm - Tests if this is a MO_Immediate operand.
Register getReg() const
getReg - Returns the register number.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
virtual StringRef getPassName() const
getPassName - Return a nice clean name for a pass.
Wrapper class representing virtual and physical registers.
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
constexpr bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
SlotIndex - An opaque wrapper around machine indexes.
SlotIndex getRegSlot(bool EC=false) const
Returns the register use/def slot in the current instruction for a normal or early-clobber def.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
VNInfo - Value Number Information.
std::pair< iterator, bool > insert(const ValueT &V)
self_iterator getIterator()
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Reg
All possible values of the reg field in the ModR/M byte.
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
char & SIOptimizeExecMaskingPreRAID
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
unsigned getUndefRegState(bool B)
@ And
Bitwise or logical AND of integers.
void initializeSIOptimizeExecMaskingPreRAPass(PassRegistry &)
auto find_if(R &&Range, UnaryPredicate P)
Provide wrappers to std::find_if which take ranges instead of having to pass begin/end explicitly.
FunctionPass * createSIOptimizeExecMaskingPreRAPass()
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.