29#define DEBUG_TYPE "si-i1-copies"
48 void markAsLaneMask(
Register DstReg)
const override;
49 void getCandidatesForLowering(
51 void collectIncomingValuesFromPhi(
62 bool lowerCopiesFromI1();
63 bool lowerCopiesToI1();
64 bool cleanConstrainRegs(
bool Changed);
66 return Reg.isVirtual() && MRI->getRegClass(
Reg) == &AMDGPU::VReg_1RegClass;
73 : PhiLoweringHelper(MF, DT, PDT) {}
75bool Vreg1LoweringHelper::cleanConstrainRegs(
bool Changed) {
79 ConstrainRegs.clear();
106class PhiIncomingAnalysis {
107 MachinePostDominatorTree &PDT;
108 const SIInstrInfo *
TII;
112 MapVector<MachineBasicBlock *, bool> ReachableMap;
113 SmallVector<MachineBasicBlock *, 4> Stack;
114 SmallVector<MachineBasicBlock *, 4> Predecessors;
117 PhiIncomingAnalysis(MachinePostDominatorTree &PDT,
const SIInstrInfo *
TII)
122 bool isSource(MachineBasicBlock &
MBB)
const {
123 return ReachableMap.
find(&
MBB)->second;
128 void analyze(MachineBasicBlock &DefBlock,
131 ReachableMap.
clear();
132 Predecessors.
clear();
138 for (
auto Incoming : Incomings) {
139 MachineBasicBlock *
MBB = Incoming.Block;
140 if (
MBB == &DefBlock) {
141 ReachableMap[&DefBlock] =
true;
153 while (!
Stack.empty()) {
154 MachineBasicBlock *
MBB =
Stack.pop_back_val();
159 for (
auto &[
MBB, Reachable] : ReachableMap) {
160 bool HaveReachablePred =
false;
162 if (ReachableMap.count(Pred)) {
163 HaveReachablePred =
true;
165 Stack.push_back(Pred);
168 if (!HaveReachablePred)
170 if (HaveReachablePred) {
171 for (MachineBasicBlock *UnreachablePred : Stack) {
214 MachineDominatorTree &DT;
215 MachinePostDominatorTree &PDT;
220 DenseMap<MachineBasicBlock *, unsigned> Visited;
224 SmallVector<MachineBasicBlock *, 4> CommonDominators;
227 MachineBasicBlock *VisitedPostDom =
nullptr;
232 unsigned FoundLoopLevel = ~0
u;
234 MachineBasicBlock *DefBlock =
nullptr;
235 SmallVector<MachineBasicBlock *, 4>
Stack;
236 SmallVector<MachineBasicBlock *, 4> NextLevel;
239 LoopFinder(MachineDominatorTree &DT, MachinePostDominatorTree &PDT)
240 : DT(DT), PDT(PDT) {}
244 CommonDominators.
clear();
247 VisitedPostDom =
nullptr;
248 FoundLoopLevel = ~0
u;
257 unsigned findLoop(MachineBasicBlock *PostDom) {
264 while (PDNode->
getBlock() != PostDom) {
265 if (PDNode->
getBlock() == VisitedPostDom)
269 if (FoundLoopLevel == Level)
279 void addLoopEntries(
unsigned LoopLevel, MachineIDFSSAUpdater &SSAUpdater,
280 MachineRegisterInfo &MRI,
281 MachineRegisterInfo::VRegAttrs LaneMaskRegAttrs,
285 MachineBasicBlock *Dom = CommonDominators[LoopLevel];
286 for (
auto &Incoming : Incomings)
289 if (!inLoopLevel(*Dom, LoopLevel, Incomings)) {
296 if (!inLoopLevel(*Pred, LoopLevel, Incomings))
304 bool inLoopLevel(MachineBasicBlock &
MBB,
unsigned LoopLevel,
306 auto DomIt = Visited.
find(&
MBB);
307 if (DomIt != Visited.
end() && DomIt->second <= LoopLevel)
310 for (
auto &Incoming : Incomings)
311 if (Incoming.Block == &
MBB)
317 void advanceLevel() {
318 MachineBasicBlock *VisitedDom;
320 if (!VisitedPostDom) {
321 VisitedPostDom = DefBlock;
322 VisitedDom = DefBlock;
323 Stack.push_back(DefBlock);
325 VisitedPostDom = PDT.
getNode(VisitedPostDom)->getIDom()->getBlock();
326 VisitedDom = CommonDominators.
back();
328 for (
unsigned i = 0; i < NextLevel.
size();) {
329 if (PDT.
dominates(VisitedPostDom, NextLevel[i])) {
330 Stack.push_back(NextLevel[i]);
332 NextLevel[i] = NextLevel.
back();
340 unsigned Level = CommonDominators.
size();
341 while (!
Stack.empty()) {
342 MachineBasicBlock *
MBB =
Stack.pop_back_val();
350 if (Succ == DefBlock) {
351 if (
MBB == VisitedPostDom)
352 FoundLoopLevel = std::min(FoundLoopLevel, Level + 1);
354 FoundLoopLevel = std::min(FoundLoopLevel, Level);
359 if (
MBB == VisitedPostDom)
362 Stack.push_back(Succ);
385 BuildMI(*
MBB,
MBB->getFirstTerminator(), {},
TII->get(AMDGPU::IMPLICIT_DEF),
394 unsigned Size =
TRI.getRegSizeInBits(
Reg, MRI);
399bool Vreg1LoweringHelper::lowerCopiesFromI1() {
401 SmallVector<MachineInstr *, 4> DeadCopies;
403 for (MachineBasicBlock &
MBB : *MF) {
404 for (MachineInstr &
MI :
MBB) {
405 if (
MI.getOpcode() != AMDGPU::COPY)
410 if (!isVreg1(SrcReg))
413 if (isLaneMaskReg(DstReg) || isVreg1(DstReg))
423 assert(!
MI.getOperand(0).getSubReg());
425 ConstrainRegs.insert(SrcReg);
435 for (MachineInstr *
MI : DeadCopies)
436 MI->eraseFromParent();
447 MRI = &
MF->getRegInfo();
449 TII =
ST->getInstrInfo();
453 LoopFinder LF(*
DT, *
PDT);
454 PhiIncomingAnalysis PIA(*
PDT,
TII);
459 if (Vreg1Phis.
empty())
462 DT->updateDFSNumbers();
466 if (&
MBB != PrevMBB) {
484 return DT->getNode(LHS.Block)->getDFSNumIn() <
485 DT->getNode(RHS.Block)->getDFSNumIn();
494 std::vector<MachineBasicBlock *> DomBlocks = {&
MBB};
496 DomBlocks.push_back(
Use.getParent());
499 PDT->findNearestCommonDominator(DomBlocks);
505 unsigned FoundLoopLevel = LF.findLoop(PostDomBound);
510 if (FoundLoopLevel) {
531 PIA.analyze(
MBB, Incomings);
539 if (PIA.isSource(IMBB)) {
563 if (NewReg != DstReg) {
565 MI->eraseFromParent();
573bool Vreg1LoweringHelper::lowerCopiesToI1() {
575 LoopFinder LF(*DT, *PDT);
582 if (
MI.getOpcode() != AMDGPU::IMPLICIT_DEF &&
583 MI.getOpcode() != AMDGPU::COPY)
587 if (!isVreg1(DstReg))
599 markAsLaneMask(DstReg);
600 initializeLaneMaskRegisterAttributes(DstReg);
602 if (
MI.getOpcode() == AMDGPU::IMPLICIT_DEF)
607 assert(!
MI.getOperand(1).getSubReg());
609 if (!SrcReg.
isVirtual() || (!isLaneMaskReg(SrcReg) && !isVreg1(SrcReg))) {
610 assert(
TII->getRegisterInfo().getRegSizeInBits(SrcReg, *MRI) == 32);
615 MI.getOperand(1).setReg(TmpReg);
619 MI.getOperand(1).setIsKill(
false);
624 std::vector<MachineBasicBlock *> DomBlocks = {&
MBB};
626 DomBlocks.push_back(
Use.getParent());
628 MachineBasicBlock *PostDomBound =
630 unsigned FoundLoopLevel = LF.findLoop(PostDomBound);
631 if (FoundLoopLevel) {
632 MachineIDFSSAUpdater SSAUpdater(*DT, *MF, DstReg);
635 LF.addLoopEntries(FoundLoopLevel, SSAUpdater, *MRI, LaneMaskRegAttrs);
638 buildMergeLaneMasks(
MBB,
MI,
DL, DstReg,
644 for (MachineInstr *
MI : DeadCopies)
645 MI->eraseFromParent();
655 MI =
MRI->getUniqueVRegDef(Reg);
656 if (
MI->getOpcode() == AMDGPU::IMPLICIT_DEF)
659 if (
MI->getOpcode() != AMDGPU::COPY)
662 Reg =
MI->getOperand(1).getReg();
663 if (!Reg.isVirtual())
669 if (
MI->getOpcode() !=
LMC->MovOpc)
672 if (!
MI->getOperand(1).isImm())
675 int64_t
Imm =
MI->getOperand(1).getImm();
693 if (MO.isReg() && MO.getReg() == AMDGPU::SCC) {
706 auto InsertionPt =
MBB.getFirstTerminator();
707 bool TerminatorsUseSCC =
false;
708 for (
auto I = InsertionPt, E =
MBB.end();
I != E; ++
I) {
711 if (TerminatorsUseSCC || DefsSCC)
715 if (!TerminatorsUseSCC)
718 while (InsertionPt !=
MBB.begin()) {
732void Vreg1LoweringHelper::markAsLaneMask(
Register DstReg)
const {
736void Vreg1LoweringHelper::getCandidatesForLowering(
740 if (isVreg1(
MI.getOperand(0).getReg()))
746void Vreg1LoweringHelper::collectIncomingValuesFromPhi(
747 const MachineInstr *
MI,
748 SmallVectorImpl<AMDGPU::Incoming> &Incomings)
const {
749 for (
unsigned i = 1; i <
MI->getNumOperands(); i += 2) {
750 assert(i + 1 <
MI->getNumOperands());
751 Register IncomingReg =
MI->getOperand(i).getReg();
752 MachineBasicBlock *IncomingMBB =
MI->getOperand(i + 1).getMBB();
755 if (IncomingDef->
getOpcode() == AMDGPU::COPY) {
757 assert(isLaneMaskReg(IncomingReg) || isVreg1(IncomingReg));
759 }
else if (IncomingDef->
getOpcode() == AMDGPU::IMPLICIT_DEF) {
762 assert(IncomingDef->
isPHI() || PhiRegisters.count(IncomingReg));
770 MachineBasicBlock *
MBB) {
774void Vreg1LoweringHelper::buildMergeLaneMasks(MachineBasicBlock &
MBB,
779 bool PrevVal =
false;
780 bool PrevConstant = isConstantLaneMask(PrevReg, PrevVal);
782 bool CurConstant = isConstantLaneMask(CurReg, CurVal);
784 if (PrevConstant && CurConstant) {
785 if (PrevVal == CurVal) {
800 if (CurConstant && CurVal) {
801 PrevMaskedReg = PrevReg;
811 if (PrevConstant && PrevVal) {
812 CurMaskedReg = CurReg;
821 if (PrevConstant && !PrevVal) {
824 }
else if (CurConstant && !CurVal) {
827 }
else if (PrevConstant && PrevVal) {
834 .
addReg(CurMaskedReg ? CurMaskedReg : LMC->ExecReg);
838void Vreg1LoweringHelper::constrainAsLaneMask(AMDGPU::Incoming &In) {}
855 Vreg1LoweringHelper Helper(&MF, &MDT, &MPDT);
857 Changed |= Helper.lowerCopiesFromI1();
859 Changed |= Helper.lowerCopiesToI1();
860 return Helper.cleanConstrainRegs(
Changed);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
const HexagonInstrInfo * TII
Register const TargetRegisterInfo * TRI
Promote Memory to Register
#define INITIALIZE_PASS_DEPENDENCY(depName)
#define INITIALIZE_PASS_END(passName, arg, name, cfg, analysis)
#define INITIALIZE_PASS_BEGIN(passName, arg, name, cfg, analysis)
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, const llvm::StringTable &StandardNames, VectorLibrary VecLib)
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...
bool isLaneMaskReg(Register Reg) const
MachinePostDominatorTree * PDT
virtual void replaceDstReg(Register NewReg, Register OldReg, MachineBasicBlock *MBB)=0
MachineBasicBlock::iterator getSaluInsertionAtEnd(MachineBasicBlock &MBB) const
Return a point at the end of the given MBB to insert SALU instructions for lane mask calculation.
bool isConstantLaneMask(Register Reg, bool &Val) const
MachineDominatorTree * DT
MachineRegisterInfo::VRegAttrs LaneMaskRegAttrs
void initializeLaneMaskRegisterAttributes(Register LaneMask)
virtual void buildMergeLaneMasks(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, Register DstReg, Register PrevReg, Register CurReg)=0
virtual void getCandidatesForLowering(SmallVectorImpl< MachineInstr * > &Vreg1Phis) const =0
const AMDGPU::LaneMaskConstants * LMC
MachineRegisterInfo * MRI
DenseSet< Register > PhiRegisters
virtual void markAsLaneMask(Register DstReg) const =0
virtual void constrainAsLaneMask(Incoming &In)=0
virtual void collectIncomingValuesFromPhi(const MachineInstr *MI, SmallVectorImpl< Incoming > &Incomings) const =0
PhiLoweringHelper(MachineFunction *MF, MachineDominatorTree *DT, MachinePostDominatorTree *PDT)
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()
LLVM_ABI void setPreservesCFG()
This function should be called by the pass, iff they do not:
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)
Implements a dense probed hash-table based set.
DomTreeNodeBase * getIDom() const
NodeT * findNearestCommonDominator(NodeT *A, NodeT *B) const
Find nearest common dominator basic block for basic block A and B.
bool dominates(const DomTreeNodeBase< NodeT > *A, const DomTreeNodeBase< NodeT > *B) const
dominates - Returns true iff A dominates B.
DomTreeNodeBase< NodeT > * getNode(const NodeT *BB) const
getNode - return the (Post)DominatorTree node for the specified basic block.
FunctionPass class - This class is used to implement most global optimizations.
const HexagonRegisterInfo & getRegisterInfo() const
iterator_range< succ_iterator > successors()
iterator_range< pred_iterator > predecessors()
MachineInstrBundleIterator< MachineInstr > iterator
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(char &ID)
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - Subclasses that override getAnalysisUsage must call this.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
const MachineFunctionProperties & getProperties() const
Get the function properties.
Register getValueInMiddleOfBlock(MachineBasicBlock *BB)
See SSAUpdater::GetValueInMiddleOfBlock description.
void addAvailableValue(MachineBasicBlock *BB, Register V)
Indicate that a rewritten value is available in the specified block with the specified value.
void calculate()
Calculate and insert necessary PHI nodes for SSA form.
void addUseBlock(MachineBasicBlock *BB)
Record a basic block that uses the value.
const MachineInstrBuilder & addReg(Register RegNo, RegState Flags={}, unsigned SubReg=0) const
Add a new virtual register operand.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate 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...
LLVM_ABI 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,...
LLVM_ABI Register createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
LLVM_ABI void setRegClass(Register Reg, const TargetRegisterClass *RC)
setRegClass - Set the register class of the specified virtual register.
iterator_range< use_instr_iterator > use_instructions(Register Reg) const
bool use_empty(Register RegNo) const
use_empty - Return true if there are no instructions using the specified register.
LLVM_ABI void replaceRegWith(Register FromReg, Register ToReg)
replaceRegWith - Replace all instances of FromReg with ToReg in the machine function.
LLVM_ABI MachineInstr * getUniqueVRegDef(Register Reg) const
getUniqueVRegDef - Return the unique machine instr that defines the specified virtual register or nul...
iterator find(const KeyT &Key)
std::pair< iterator, bool > try_emplace(const KeyT &Key, Ts &&...Args)
AnalysisType & getAnalysis() const
getAnalysis<AnalysisType>() - This function is used by subclasses to get to the analysis information ...
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
PreservedAnalyses & 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.
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.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
Register createLaneMaskReg(MachineRegisterInfo *MRI, MachineRegisterInfo::VRegAttrs LaneMaskRegAttrs)
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
NodeAddr< UseNode * > Use
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.
AnalysisManager< MachineFunction > MachineFunctionAnalysisManager
LLVM_ABI PreservedAnalyses getMachineFunctionPassPreservedAnalyses()
Returns the minimum set of Analyses that all machine function passes must preserve.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
void sort(IteratorTy Start, IteratorTy End)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
DomTreeNodeBase< MachineBasicBlock > MachineDomTreeNode
ArrayRef(const T &OneElt) -> ArrayRef< T >
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 mask 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.