29#define DEBUG_TYPE "si-i1-copies"
62 bool lowerCopiesFromI1();
63 bool lowerCopiesToI1();
64 bool cleanConstrainRegs(
bool Changed);
66 return Reg.isVirtual() &&
MRI->getRegClass(Reg) == &AMDGPU::VReg_1RegClass;
75bool Vreg1LoweringHelper::cleanConstrainRegs(
bool Changed) {
78 MRI->constrainRegClass(Reg, &AMDGPU::SReg_1_XEXECRegClass);
79 ConstrainRegs.clear();
106class PhiIncomingAnalysis {
124 return ReachableMap.
find(&
MBB)->second;
131 ReachableMap.
clear();
132 ReachableOrdered.
clear();
133 Predecessors.
clear();
142 if (
MBB == &DefBlock) {
143 ReachableMap[&DefBlock] =
true;
156 while (!
Stack.empty()) {
166 bool HaveReachablePred =
false;
168 if (ReachableMap.
count(Pred)) {
169 HaveReachablePred =
true;
171 Stack.push_back(Pred);
174 if (!HaveReachablePred)
175 ReachableMap[
MBB] =
true;
176 if (HaveReachablePred) {
238 unsigned FoundLoopLevel = ~0
u;
246 : DT(DT), PDT(PDT) {}
250 CommonDominators.
clear();
253 VisitedPostDom =
nullptr;
254 FoundLoopLevel = ~0
u;
270 while (PDNode->
getBlock() != PostDom) {
271 if (PDNode->
getBlock() == VisitedPostDom)
275 if (FoundLoopLevel == Level)
295 if (!inLoopLevel(*Dom, LoopLevel, Incomings)) {
302 if (!inLoopLevel(*Pred, LoopLevel, Incomings))
312 auto DomIt = Visited.
find(&
MBB);
313 if (DomIt != Visited.
end() && DomIt->second <= LoopLevel)
323 void advanceLevel() {
326 if (!VisitedPostDom) {
327 VisitedPostDom = DefBlock;
328 VisitedDom = DefBlock;
329 Stack.push_back(DefBlock);
331 VisitedPostDom = PDT.
getNode(VisitedPostDom)->getIDom()->getBlock();
332 VisitedDom = CommonDominators.
back();
334 for (
unsigned i = 0; i < NextLevel.
size();) {
335 if (PDT.
dominates(VisitedPostDom, NextLevel[i])) {
336 Stack.push_back(NextLevel[i]);
338 NextLevel[i] = NextLevel.
back();
346 unsigned Level = CommonDominators.
size();
347 while (!
Stack.empty()) {
352 Visited[
MBB] = Level;
356 if (Succ == DefBlock) {
357 if (
MBB == VisitedPostDom)
358 FoundLoopLevel = std::min(FoundLoopLevel, Level + 1);
360 FoundLoopLevel = std::min(FoundLoopLevel, Level);
365 if (
MBB == VisitedPostDom)
368 Stack.push_back(Succ);
382 return MRI->createVirtualRegister(LaneMaskRegAttrs);
401 unsigned Size =
TRI.getRegSizeInBits(Reg,
MRI);
406bool Vreg1LoweringHelper::lowerCopiesFromI1() {
407 bool Changed =
false;
412 if (
MI.getOpcode() != AMDGPU::COPY)
417 if (!isVreg1(SrcReg))
420 if (isLaneMaskReg(DstReg) || isVreg1(DstReg))
430 assert(!
MI.getOperand(0).getSubReg());
432 ConstrainRegs.insert(SrcReg);
443 MI->eraseFromParent();
452 : MF(MF), DT(DT), PDT(PDT) {
461 MovOp = AMDGPU::S_MOV_B32;
462 AndOp = AMDGPU::S_AND_B32;
463 OrOp = AMDGPU::S_OR_B32;
464 XorOp = AMDGPU::S_XOR_B32;
466 OrN2Op = AMDGPU::S_ORN2_B32;
469 MovOp = AMDGPU::S_MOV_B64;
470 AndOp = AMDGPU::S_AND_B64;
471 OrOp = AMDGPU::S_OR_B64;
472 XorOp = AMDGPU::S_XOR_B64;
474 OrN2Op = AMDGPU::S_ORN2_B64;
480 LoopFinder LF(*
DT, *
PDT);
481 PhiIncomingAnalysis PIA(*
PDT,
TII);
486 if (Vreg1Phis.
empty())
493 if (&
MBB != PrevMBB) {
521 std::vector<MachineBasicBlock *> DomBlocks = {&
MBB};
532 unsigned FoundLoopLevel = LF.findLoop(PostDomBound);
536 if (FoundLoopLevel) {
554 PIA.analyze(
MBB, Incomings);
562 if (PIA.isSource(IMBB)) {
583 if (NewReg != DstReg) {
585 MI->eraseFromParent();
593bool Vreg1LoweringHelper::lowerCopiesToI1() {
594 bool Changed =
false;
596 LoopFinder LF(*DT, *PDT);
603 if (
MI.getOpcode() != AMDGPU::IMPLICIT_DEF &&
604 MI.getOpcode() != AMDGPU::COPY)
608 if (!isVreg1(DstReg))
613 if (
MRI->use_empty(DstReg)) {
620 markAsLaneMask(DstReg);
621 initializeLaneMaskRegisterAttributes(DstReg);
623 if (
MI.getOpcode() == AMDGPU::IMPLICIT_DEF)
628 assert(!
MI.getOperand(1).getSubReg());
630 if (!SrcReg.
isVirtual() || (!isLaneMaskReg(SrcReg) && !isVreg1(SrcReg))) {
631 assert(
TII->getRegisterInfo().getRegSizeInBits(SrcReg, *
MRI) == 32);
636 MI.getOperand(1).setReg(TmpReg);
640 MI.getOperand(1).setIsKill(
false);
645 std::vector<MachineBasicBlock *> DomBlocks = {&
MBB};
651 unsigned FoundLoopLevel = LF.findLoop(PostDomBound);
652 if (FoundLoopLevel) {
655 LF.addLoopEntries(FoundLoopLevel,
SSAUpdater, *
MRI, LaneMaskRegAttrs);
657 buildMergeLaneMasks(
MBB,
MI,
DL, DstReg,
664 MI->eraseFromParent();
674 if (
MI->getOpcode() == AMDGPU::IMPLICIT_DEF)
677 if (
MI->getOpcode() != AMDGPU::COPY)
680 Reg =
MI->getOperand(1).getReg();
681 if (!Reg.isVirtual())
690 if (!
MI->getOperand(1).isImm())
693 int64_t Imm =
MI->getOperand(1).getImm();
711 if (MO.isReg() && MO.getReg() == AMDGPU::SCC) {
725 bool TerminatorsUseSCC =
false;
726 for (
auto I = InsertionPt, E =
MBB.
end();
I != E; ++
I) {
729 if (TerminatorsUseSCC || DefsSCC)
733 if (!TerminatorsUseSCC)
736 while (InsertionPt !=
MBB.
begin()) {
750void Vreg1LoweringHelper::markAsLaneMask(
Register DstReg)
const {
751 MRI->setRegClass(DstReg, ST->getBoolRC());
754void Vreg1LoweringHelper::getCandidatesForLowering(
758 if (isVreg1(
MI.getOperand(0).getReg()))
764void Vreg1LoweringHelper::collectIncomingValuesFromPhi(
766 for (
unsigned i = 1; i <
MI->getNumOperands(); i += 2) {
767 assert(i + 1 <
MI->getNumOperands());
768 Register IncomingReg =
MI->getOperand(i).getReg();
772 if (IncomingDef->
getOpcode() == AMDGPU::COPY) {
774 assert(isLaneMaskReg(IncomingReg) || isVreg1(IncomingReg));
776 }
else if (IncomingDef->
getOpcode() == AMDGPU::IMPLICIT_DEF) {
779 assert(IncomingDef->
isPHI() || PhiRegisters.count(IncomingReg));
788 MRI->replaceRegWith(NewReg, OldReg);
796 bool PrevVal =
false;
797 bool PrevConstant = isConstantLaneMask(PrevReg, PrevVal);
799 bool CurConstant = isConstantLaneMask(CurReg, CurVal);
801 if (PrevConstant && CurConstant) {
802 if (PrevVal == CurVal) {
817 if (CurConstant && CurVal) {
818 PrevMaskedReg = PrevReg;
828 if (PrevConstant && PrevVal) {
829 CurMaskedReg = CurReg;
838 if (PrevConstant && !PrevVal) {
841 }
else if (CurConstant && !CurVal) {
844 }
else if (PrevConstant && PrevVal) {
851 .
addReg(CurMaskedReg ? CurMaskedReg : ExecReg);
855void Vreg1LoweringHelper::constrainAsLaneMask(
Incoming &In) {}
873 Vreg1LoweringHelper Helper(&MF, &MDT, &MPDT);
874 bool Changed =
false;
875 Changed |= Helper.lowerCopiesFromI1();
876 Changed |= Helper.lowerPhis();
877 Changed |= Helper.lowerCopiesToI1();
878 return Helper.cleanConstrainRegs(Changed);
919 getAnalysis<MachineDominatorTreeWrapperPass>().getDomTree();
921 getAnalysis<MachinePostDominatorTreeWrapperPass>().getPostDomTree();
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
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())
static void instrDefsUsesSCC(const MachineInstr &MI, bool &Def, bool &Use)
static Register insertUndefLaneMask(MachineBasicBlock *MBB, MachineRegisterInfo *MRI, MachineRegisterInfo::VRegAttrs LaneMaskRegAttrs)
static bool runFixI1Copies(MachineFunction &MF, MachineDominatorTree &MDT, MachinePostDominatorTree &MPDT)
Lower all instructions that def or use vreg_1 registers.
static bool isVRegCompatibleReg(const SIRegisterInfo &TRI, const MachineRegisterInfo &MRI, Register Reg)
Interface definition of the PhiLoweringHelper class that implements lane mask merging algorithm for d...
static void initialize(TargetLibraryInfoImpl &TLI, const Triple &T, ArrayRef< StringLiteral > StandardNames)
Initialize the set of available library functions based on the specified target triple.
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
StringRef getPassName() const override
getPassName - Return a nice clean name for a pass.
bool runOnMachineFunction(MachineFunction &MF) override
runOnMachineFunction - This method must be overloaded to perform the desired machine code transformat...
A container for analyses that lazily runs them and caches their results.
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent the analysis usage information of a pass.
AnalysisUsage & addRequired()
void setPreservesCFG()
This function should be called by the pass, iff they do not:
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Represents analyses that only rely on functions' control flow.
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Implements a dense probed hash-table based set.
Base class for the actual dominator tree node.
DomTreeNodeBase * getIDom() const
bool dominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
dominates - Returns true iff A dominates B.
void updateDFSNumbers() const
updateDFSNumbers - Assign In and Out numbers to the nodes while walking dominator tree in dfs order.
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
Instruction * findNearestCommonDominator(Instruction *I1, Instruction *I2) const
Find the nearest instruction I that dominates both I1 and I2, in the sense that a result produced bef...
FunctionPass class - This class is used to implement most global optimizations.
const SIInstrInfo * getInstrInfo() const override
iterator_range< iterator > phis()
Returns a range that iterates over the phis in the basic block.
void push_back(MachineInstr *MI)
iterator getFirstTerminator()
Returns an iterator to the first terminator instruction of this basic block.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
iterator_range< succ_iterator > successors()
iterator_range< pred_iterator > predecessors()
Analysis pass which computes a MachineDominatorTree.
Analysis pass which computes a MachineDominatorTree.
DominatorTree Class - Concrete subclass of DominatorTreeBase that is used to compute a normal dominat...
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.
bool hasProperty(Property P) const
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.
const MachineFunctionProperties & getProperties() const
Get the function properties.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
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 MachineOperand & getOperand(unsigned i) const
MachineOperand class - Representation of each machine instruction operand.
unsigned getSubReg() const
Register getReg() const
getReg - Returns the register number.
MachinePostDominatorTree - an analysis pass wrapper for DominatorTree used to compute the post-domina...
MachineBasicBlock * findNearestCommonDominator(ArrayRef< MachineBasicBlock * > Blocks) const
Returns the nearest common dominator of the given blocks.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
iterator_range< use_instr_iterator > use_instructions(Register Reg) const
MachineInstr * getUniqueVRegDef(Register Reg) const
getUniqueVRegDef - Return the unique machine instr that defines the specified virtual register or nul...
MachineSSAUpdater - This class updates SSA form for a set of virtual registers defined in multiple bl...
static PassRegistry * getPassRegistry()
getPassRegistry - Access the global registry object, which is automatically initialized at applicatio...
PhiLoweringHelper(MachineFunction *MF, MachineDominatorTree *DT, MachinePostDominatorTree *PDT)
bool isLaneMaskReg(Register Reg) const
MachineRegisterInfo * MRI
MachineDominatorTree * DT
DenseSet< Register > PhiRegisters
virtual void getCandidatesForLowering(SmallVectorImpl< MachineInstr * > &Vreg1Phis) const =0
virtual void constrainAsLaneMask(Incoming &In)=0
virtual void collectIncomingValuesFromPhi(const MachineInstr *MI, SmallVectorImpl< Incoming > &Incomings) const =0
virtual void markAsLaneMask(Register DstReg) const =0
MachinePostDominatorTree * PDT
MachineRegisterInfo::VRegAttrs LaneMaskRegAttrs
MachineBasicBlock::iterator getSaluInsertionAtEnd(MachineBasicBlock &MBB) const
Return a point at the end of the given MBB to insert SALU instructions for lane mask calculation.
void initializeLaneMaskRegisterAttributes(Register LaneMask)
bool isConstantLaneMask(Register Reg, bool &Val) const
virtual void buildMergeLaneMasks(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DstReg, Register PrevReg, Register CurReg)=0
virtual void replaceDstReg(Register NewReg, Register OldReg, MachineBasicBlock *MBB)=0
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
void preserveSet()
Mark an analysis set as preserved.
Wrapper class representing virtual and physical registers.
constexpr bool isValid() const
constexpr bool isVirtual() const
Return true if the specified register number is in the virtual register namespace.
PreservedAnalyses run(MachineFunction &MF, MachineFunctionAnalysisManager &MFAM)
Helper class for SSA formation on a set of values defined in multiple blocks.
void Initialize(Type *Ty, StringRef Name)
Reset this object to get ready for a new set of SSA updates with type 'Ty'.
Value * GetValueInMiddleOfBlock(BasicBlock *BB)
Construct SSA form, materializing a value that is live in the middle of the specified block.
void AddAvailableValue(BasicBlock *BB, Value *V)
Indicate that a rewritten value is available in the specified block with the specified value.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void push_back(const T &Elt)
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.
A Use represents the edge between a Value definition and its users.
std::pair< iterator, bool > insert(const ValueT &V)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
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.
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
void sort(IteratorTy Start, IteratorTy End)
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Register createLaneMaskReg(MachineRegisterInfo *MRI, MachineRegisterInfo::VRegAttrs LaneMaskRegAttrs)
void initializeSILowerI1CopiesLegacyPass(PassRegistry &)
FunctionPass * createSILowerI1CopiesLegacyPass()
char & SILowerI1CopiesLegacyID
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Incoming for lane maks phi as machine instruction, incoming register Reg and incoming block Block are...
MachineBasicBlock * Block
All attributes(register class or bank and low-level type) a virtual register can have.