LLVM 17.0.0git
ExpandPostRAPseudos.cpp
Go to the documentation of this file.
1//===-- ExpandPostRAPseudos.cpp - Pseudo instruction expansion pass -------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file defines a pass that expands COPY and SUBREG_TO_REG pseudo
10// instructions after register allocation.
11//
12//===----------------------------------------------------------------------===//
13
16#include "llvm/CodeGen/Passes.h"
21#include "llvm/Support/Debug.h"
23
24using namespace llvm;
25
26#define DEBUG_TYPE "postrapseudos"
27
28namespace {
29struct ExpandPostRA : public MachineFunctionPass {
30private:
32 const TargetInstrInfo *TII;
33
34public:
35 static char ID; // Pass identification, replacement for typeid
36 ExpandPostRA() : MachineFunctionPass(ID) {}
37
38 void getAnalysisUsage(AnalysisUsage &AU) const override {
39 AU.setPreservesCFG();
43 }
44
45 /// runOnMachineFunction - pass entry point
47
48private:
49 bool LowerSubregToReg(MachineInstr *MI);
50 bool LowerCopy(MachineInstr *MI);
51
52 void TransferImplicitOperands(MachineInstr *MI);
53};
54} // end anonymous namespace
55
56char ExpandPostRA::ID = 0;
57char &llvm::ExpandPostRAPseudosID = ExpandPostRA::ID;
58
60 "Post-RA pseudo instruction expansion pass", false, false)
61
62/// TransferImplicitOperands - MI is a pseudo-instruction, and the lowered
63/// replacement instructions immediately precede it. Copy any implicit
64/// operands from MI to the replacement instruction.
65void ExpandPostRA::TransferImplicitOperands(MachineInstr *MI) {
67 --CopyMI;
68
69 Register DstReg = MI->getOperand(0).getReg();
70 for (const MachineOperand &MO : MI->implicit_operands()) {
71 CopyMI->addOperand(MO);
72
73 // Be conservative about preserving kills when subregister defs are
74 // involved. If there was implicit kill of a super-register overlapping the
75 // copy result, we would kill the subregisters previous copies defined.
76 if (MO.isKill() && TRI->regsOverlap(DstReg, MO.getReg()))
77 CopyMI->getOperand(CopyMI->getNumOperands() - 1).setIsKill(false);
78 }
79}
80
81bool ExpandPostRA::LowerSubregToReg(MachineInstr *MI) {
82 MachineBasicBlock *MBB = MI->getParent();
83 assert((MI->getOperand(0).isReg() && MI->getOperand(0).isDef()) &&
84 MI->getOperand(1).isImm() &&
85 (MI->getOperand(2).isReg() && MI->getOperand(2).isUse()) &&
86 MI->getOperand(3).isImm() && "Invalid subreg_to_reg");
87
88 Register DstReg = MI->getOperand(0).getReg();
89 Register InsReg = MI->getOperand(2).getReg();
90 assert(!MI->getOperand(2).getSubReg() && "SubIdx on physreg?");
91 unsigned SubIdx = MI->getOperand(3).getImm();
92
93 assert(SubIdx != 0 && "Invalid index for insert_subreg");
94 Register DstSubReg = TRI->getSubReg(DstReg, SubIdx);
95
96 assert(DstReg.isPhysical() &&
97 "Insert destination must be in a physical register");
98 assert(InsReg.isPhysical() &&
99 "Inserted value must be in a physical register");
100
101 LLVM_DEBUG(dbgs() << "subreg: CONVERTING: " << *MI);
102
103 if (MI->allDefsAreDead()) {
104 MI->setDesc(TII->get(TargetOpcode::KILL));
105 MI->removeOperand(3); // SubIdx
106 MI->removeOperand(1); // Imm
107 LLVM_DEBUG(dbgs() << "subreg: replaced by: " << *MI);
108 return true;
109 }
110
111 if (DstSubReg == InsReg) {
112 // No need to insert an identity copy instruction.
113 // Watch out for case like this:
114 // %rax = SUBREG_TO_REG 0, killed %eax, 3
115 // We must leave %rax live.
116 if (DstReg != InsReg) {
117 MI->setDesc(TII->get(TargetOpcode::KILL));
118 MI->removeOperand(3); // SubIdx
119 MI->removeOperand(1); // Imm
120 LLVM_DEBUG(dbgs() << "subreg: replace by: " << *MI);
121 return true;
122 }
123 LLVM_DEBUG(dbgs() << "subreg: eliminated!");
124 } else {
125 TII->copyPhysReg(*MBB, MI, MI->getDebugLoc(), DstSubReg, InsReg,
126 MI->getOperand(2).isKill());
127
128 // Implicitly define DstReg for subsequent uses.
130 --CopyMI;
131 CopyMI->addRegisterDefined(DstReg);
132 LLVM_DEBUG(dbgs() << "subreg: " << *CopyMI);
133 }
134
135 LLVM_DEBUG(dbgs() << '\n');
136 MBB->erase(MI);
137 return true;
138}
139
140bool ExpandPostRA::LowerCopy(MachineInstr *MI) {
141
142 if (MI->allDefsAreDead()) {
143 LLVM_DEBUG(dbgs() << "dead copy: " << *MI);
144 MI->setDesc(TII->get(TargetOpcode::KILL));
145 LLVM_DEBUG(dbgs() << "replaced by: " << *MI);
146 return true;
147 }
148
149 MachineOperand &DstMO = MI->getOperand(0);
150 MachineOperand &SrcMO = MI->getOperand(1);
151
152 bool IdentityCopy = (SrcMO.getReg() == DstMO.getReg());
153 if (IdentityCopy || SrcMO.isUndef()) {
154 LLVM_DEBUG(dbgs() << (IdentityCopy ? "identity copy: " : "undef copy: ")
155 << *MI);
156 // No need to insert an identity copy instruction, but replace with a KILL
157 // if liveness is changed.
158 if (SrcMO.isUndef() || MI->getNumOperands() > 2) {
159 // We must make sure the super-register gets killed. Replace the
160 // instruction with KILL.
161 MI->setDesc(TII->get(TargetOpcode::KILL));
162 LLVM_DEBUG(dbgs() << "replaced by: " << *MI);
163 return true;
164 }
165 // Vanilla identity copy.
166 MI->eraseFromParent();
167 return true;
168 }
169
170 LLVM_DEBUG(dbgs() << "real copy: " << *MI);
171 TII->copyPhysReg(*MI->getParent(), MI, MI->getDebugLoc(),
172 DstMO.getReg(), SrcMO.getReg(), SrcMO.isKill());
173
174 if (MI->getNumOperands() > 2)
175 TransferImplicitOperands(MI);
176 LLVM_DEBUG({
178 dbgs() << "replaced by: " << *(--dMI);
179 });
180 MI->eraseFromParent();
181 return true;
182}
183
184/// runOnMachineFunction - Reduce subregister inserts and extracts to register
185/// copies.
186///
187bool ExpandPostRA::runOnMachineFunction(MachineFunction &MF) {
188 LLVM_DEBUG(dbgs() << "Machine Function\n"
189 << "********** EXPANDING POST-RA PSEUDO INSTRS **********\n"
190 << "********** Function: " << MF.getName() << '\n');
193
194 bool MadeChange = false;
195
196 for (MachineBasicBlock &MBB : MF) {
198 // Only expand pseudos.
199 if (!MI.isPseudo())
200 continue;
201
202 // Give targets a chance to expand even standard pseudos.
203 if (TII->expandPostRAPseudo(MI)) {
204 MadeChange = true;
205 continue;
206 }
207
208 // Expand standard pseudos.
209 switch (MI.getOpcode()) {
210 case TargetOpcode::SUBREG_TO_REG:
211 MadeChange |= LowerSubregToReg(&MI);
212 break;
213 case TargetOpcode::COPY:
214 MadeChange |= LowerCopy(&MI);
215 break;
216 case TargetOpcode::DBG_VALUE:
217 continue;
218 case TargetOpcode::INSERT_SUBREG:
219 case TargetOpcode::EXTRACT_SUBREG:
220 llvm_unreachable("Sub-register pseudos should have been eliminated.");
221 }
222 }
223 }
224
225 return MadeChange;
226}
MachineBasicBlock & MBB
#define LLVM_DEBUG(X)
Definition: Debug.h:101
#define DEBUG_TYPE
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
unsigned const TargetRegisterInfo * TRI
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
Represent the analysis usage information of a pass.
AnalysisUsage & addPreservedID(const void *ID)
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:265
bool expandPostRAPseudo(MachineInstr &MI) const override
This function is called for all pseudo instructions that remain after register allocation.
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc) const override
Emit instructions to copy a pair of physical registers.
instr_iterator erase(instr_iterator I)
Remove an instruction from the instruction list and delete it.
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.
StringRef getName() const
getName - Return the name of the corresponding LLVM function.
Representation of each machine instruction.
Definition: MachineInstr.h:68
MachineOperand class - Representation of each machine instruction operand.
Register getReg() const
getReg - Returns the register number.
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
bool isPhysical() const
Return true if the specified register number is in the physical register namespace.
Definition: Register.h:97
TargetInstrInfo - Interface to description of machine instruction set.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
virtual const TargetRegisterInfo * getRegisterInfo() const
getRegisterInfo - If register information is available, return it.
virtual const TargetInstrInfo * getInstrInfo() const
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
char & ExpandPostRAPseudosID
ExpandPostRAPseudos - This pass expands pseudo instructions after register allocation.
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
Definition: STLExtras.h:748
char & MachineDominatorsID
MachineDominators - This pass is a machine dominators analysis pass.
char & MachineLoopInfoID
MachineLoopInfo - This pass is a loop analysis pass.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163