1 //===-- ExpandPostRAPseudos.cpp - Pseudo instruction expansion pass -------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines a pass that expands COPY and SUBREG_TO_REG pseudo
11 // instructions after register allocation.
13 //===----------------------------------------------------------------------===//
15 #include "llvm/CodeGen/MachineFunctionPass.h"
16 #include "llvm/CodeGen/MachineInstr.h"
17 #include "llvm/CodeGen/MachineInstrBuilder.h"
18 #include "llvm/CodeGen/MachineRegisterInfo.h"
19 #include "llvm/CodeGen/Passes.h"
20 #include "llvm/CodeGen/TargetInstrInfo.h"
21 #include "llvm/CodeGen/TargetRegisterInfo.h"
22 #include "llvm/CodeGen/TargetSubtargetInfo.h"
23 #include "llvm/Support/Debug.h"
24 #include "llvm/Support/raw_ostream.h"
28 #define DEBUG_TYPE "postrapseudos"
31 struct ExpandPostRA
: public MachineFunctionPass
{
33 const TargetRegisterInfo
*TRI
;
34 const TargetInstrInfo
*TII
;
37 static char ID
; // Pass identification, replacement for typeid
38 ExpandPostRA() : MachineFunctionPass(ID
) {}
40 void getAnalysisUsage(AnalysisUsage
&AU
) const override
{
42 AU
.addPreservedID(MachineLoopInfoID
);
43 AU
.addPreservedID(MachineDominatorsID
);
44 MachineFunctionPass::getAnalysisUsage(AU
);
47 /// runOnMachineFunction - pass entry point
48 bool runOnMachineFunction(MachineFunction
&) override
;
51 bool LowerSubregToReg(MachineInstr
*MI
);
52 bool LowerCopy(MachineInstr
*MI
);
54 void TransferImplicitOperands(MachineInstr
*MI
);
56 } // end anonymous namespace
58 char ExpandPostRA::ID
= 0;
59 char &llvm::ExpandPostRAPseudosID
= ExpandPostRA::ID
;
61 INITIALIZE_PASS(ExpandPostRA
, DEBUG_TYPE
,
62 "Post-RA pseudo instruction expansion pass", false, false)
64 /// TransferImplicitOperands - MI is a pseudo-instruction, and the lowered
65 /// replacement instructions immediately precede it. Copy any implicit
66 /// operands from MI to the replacement instruction.
67 void ExpandPostRA::TransferImplicitOperands(MachineInstr
*MI
) {
68 MachineBasicBlock::iterator CopyMI
= MI
;
71 for (const MachineOperand
&MO
: MI
->implicit_operands())
73 CopyMI
->addOperand(MO
);
76 bool ExpandPostRA::LowerSubregToReg(MachineInstr
*MI
) {
77 MachineBasicBlock
*MBB
= MI
->getParent();
78 assert((MI
->getOperand(0).isReg() && MI
->getOperand(0).isDef()) &&
79 MI
->getOperand(1).isImm() &&
80 (MI
->getOperand(2).isReg() && MI
->getOperand(2).isUse()) &&
81 MI
->getOperand(3).isImm() && "Invalid subreg_to_reg");
83 unsigned DstReg
= MI
->getOperand(0).getReg();
84 unsigned InsReg
= MI
->getOperand(2).getReg();
85 assert(!MI
->getOperand(2).getSubReg() && "SubIdx on physreg?");
86 unsigned SubIdx
= MI
->getOperand(3).getImm();
88 assert(SubIdx
!= 0 && "Invalid index for insert_subreg");
89 unsigned DstSubReg
= TRI
->getSubReg(DstReg
, SubIdx
);
91 assert(TargetRegisterInfo::isPhysicalRegister(DstReg
) &&
92 "Insert destination must be in a physical register");
93 assert(TargetRegisterInfo::isPhysicalRegister(InsReg
) &&
94 "Inserted value must be in a physical register");
96 LLVM_DEBUG(dbgs() << "subreg: CONVERTING: " << *MI
);
98 if (MI
->allDefsAreDead()) {
99 MI
->setDesc(TII
->get(TargetOpcode::KILL
));
100 MI
->RemoveOperand(3); // SubIdx
101 MI
->RemoveOperand(1); // Imm
102 LLVM_DEBUG(dbgs() << "subreg: replaced by: " << *MI
);
106 if (DstSubReg
== InsReg
) {
107 // No need to insert an identity copy instruction.
108 // Watch out for case like this:
109 // %rax = SUBREG_TO_REG 0, killed %eax, 3
110 // We must leave %rax live.
111 if (DstReg
!= InsReg
) {
112 MI
->setDesc(TII
->get(TargetOpcode::KILL
));
113 MI
->RemoveOperand(3); // SubIdx
114 MI
->RemoveOperand(1); // Imm
115 LLVM_DEBUG(dbgs() << "subreg: replace by: " << *MI
);
118 LLVM_DEBUG(dbgs() << "subreg: eliminated!");
120 TII
->copyPhysReg(*MBB
, MI
, MI
->getDebugLoc(), DstSubReg
, InsReg
,
121 MI
->getOperand(2).isKill());
123 // Implicitly define DstReg for subsequent uses.
124 MachineBasicBlock::iterator CopyMI
= MI
;
126 CopyMI
->addRegisterDefined(DstReg
);
127 LLVM_DEBUG(dbgs() << "subreg: " << *CopyMI
);
130 LLVM_DEBUG(dbgs() << '\n');
135 bool ExpandPostRA::LowerCopy(MachineInstr
*MI
) {
137 if (MI
->allDefsAreDead()) {
138 LLVM_DEBUG(dbgs() << "dead copy: " << *MI
);
139 MI
->setDesc(TII
->get(TargetOpcode::KILL
));
140 LLVM_DEBUG(dbgs() << "replaced by: " << *MI
);
144 MachineOperand
&DstMO
= MI
->getOperand(0);
145 MachineOperand
&SrcMO
= MI
->getOperand(1);
147 bool IdentityCopy
= (SrcMO
.getReg() == DstMO
.getReg());
148 if (IdentityCopy
|| SrcMO
.isUndef()) {
149 LLVM_DEBUG(dbgs() << (IdentityCopy
? "identity copy: " : "undef copy: ")
151 // No need to insert an identity copy instruction, but replace with a KILL
152 // if liveness is changed.
153 if (SrcMO
.isUndef() || MI
->getNumOperands() > 2) {
154 // We must make sure the super-register gets killed. Replace the
155 // instruction with KILL.
156 MI
->setDesc(TII
->get(TargetOpcode::KILL
));
157 LLVM_DEBUG(dbgs() << "replaced by: " << *MI
);
160 // Vanilla identity copy.
161 MI
->eraseFromParent();
165 LLVM_DEBUG(dbgs() << "real copy: " << *MI
);
166 TII
->copyPhysReg(*MI
->getParent(), MI
, MI
->getDebugLoc(),
167 DstMO
.getReg(), SrcMO
.getReg(), SrcMO
.isKill());
169 if (MI
->getNumOperands() > 2)
170 TransferImplicitOperands(MI
);
172 MachineBasicBlock::iterator dMI
= MI
;
173 dbgs() << "replaced by: " << *(--dMI
);
175 MI
->eraseFromParent();
179 /// runOnMachineFunction - Reduce subregister inserts and extracts to register
182 bool ExpandPostRA::runOnMachineFunction(MachineFunction
&MF
) {
183 LLVM_DEBUG(dbgs() << "Machine Function\n"
184 << "********** EXPANDING POST-RA PSEUDO INSTRS **********\n"
185 << "********** Function: " << MF
.getName() << '\n');
186 TRI
= MF
.getSubtarget().getRegisterInfo();
187 TII
= MF
.getSubtarget().getInstrInfo();
189 bool MadeChange
= false;
191 for (MachineFunction::iterator mbbi
= MF
.begin(), mbbe
= MF
.end();
192 mbbi
!= mbbe
; ++mbbi
) {
193 for (MachineBasicBlock::iterator mi
= mbbi
->begin(), me
= mbbi
->end();
195 MachineInstr
&MI
= *mi
;
196 // Advance iterator here because MI may be erased.
199 // Only expand pseudos.
203 // Give targets a chance to expand even standard pseudos.
204 if (TII
->expandPostRAPseudo(MI
)) {
209 // Expand standard pseudos.
210 switch (MI
.getOpcode()) {
211 case TargetOpcode::SUBREG_TO_REG
:
212 MadeChange
|= LowerSubregToReg(&MI
);
214 case TargetOpcode::COPY
:
215 MadeChange
|= LowerCopy(&MI
);
217 case TargetOpcode::DBG_VALUE
:
219 case TargetOpcode::INSERT_SUBREG
:
220 case TargetOpcode::EXTRACT_SUBREG
:
221 llvm_unreachable("Sub-register pseudos should have been eliminated.");