LLVM 20.0.0git
LiveRangeShrink.cpp
Go to the documentation of this file.
1//===- LiveRangeShrink.cpp - Move instructions to shrink live range -------===//
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/// \file
10/// This pass moves instructions close to the definition of its operands to
11/// shrink live range of the def instruction. The code motion is limited within
12/// the basic block. The moved instruction should have 1 def, and more than one
13/// uses, all of which are the only use of the def.
14///
15///===---------------------------------------------------------------------===//
16
17#include "llvm/ADT/DenseMap.h"
18#include "llvm/ADT/Statistic.h"
28#include "llvm/Pass.h"
29#include "llvm/Support/Debug.h"
31#include <iterator>
32#include <utility>
33
34using namespace llvm;
35
36#define DEBUG_TYPE "lrshrink"
37
38STATISTIC(NumInstrsHoistedToShrinkLiveRange,
39 "Number of insructions hoisted to shrink live range.");
40
41namespace {
42
43class LiveRangeShrink : public MachineFunctionPass {
44public:
45 static char ID;
46
47 LiveRangeShrink() : MachineFunctionPass(ID) {
49 }
50
51 void getAnalysisUsage(AnalysisUsage &AU) const override {
52 AU.setPreservesCFG();
54 }
55
56 StringRef getPassName() const override { return "Live Range Shrink"; }
57
58 bool runOnMachineFunction(MachineFunction &MF) override;
59};
60
61} // end anonymous namespace
62
63char LiveRangeShrink::ID = 0;
64
65char &llvm::LiveRangeShrinkID = LiveRangeShrink::ID;
66
67INITIALIZE_PASS(LiveRangeShrink, "lrshrink", "Live Range Shrink Pass", false,
68 false)
69
70using InstOrderMap = DenseMap<MachineInstr *, unsigned>;
71
72/// Returns \p New if it's dominated by \p Old, otherwise return \p Old.
73/// \p M maintains a map from instruction to its dominating order that satisfies
74/// M[A] > M[B] guarantees that A is dominated by B.
75/// If \p New is not in \p M, return \p Old. Otherwise if \p Old is null, return
76/// \p New.
78 MachineInstr *Old,
79 const InstOrderMap &M) {
80 auto NewIter = M.find(&New);
81 if (NewIter == M.end())
82 return Old;
83 if (Old == nullptr)
84 return &New;
85 unsigned OrderOld = M.find(Old)->second;
86 unsigned OrderNew = NewIter->second;
87 if (OrderOld != OrderNew)
88 return OrderOld < OrderNew ? &New : Old;
89 // OrderOld == OrderNew, we need to iterate down from Old to see if it
90 // can reach New, if yes, New is dominated by Old.
91 for (MachineInstr *I = Old->getNextNode(); M.find(I)->second == OrderNew;
92 I = I->getNextNode())
93 if (I == &New)
94 return &New;
95 return Old;
96}
97
98/// Builds Instruction to its dominating order number map \p M by traversing
99/// from instruction \p Start.
101 InstOrderMap &M) {
102 M.clear();
103 unsigned i = 0;
104 for (MachineInstr &I : make_range(Start, Start->getParent()->end()))
105 M[&I] = i++;
106}
107
108bool LiveRangeShrink::runOnMachineFunction(MachineFunction &MF) {
109 if (skipFunction(MF.getFunction()))
110 return false;
111
114
115 LLVM_DEBUG(dbgs() << "**** Analysing " << MF.getName() << '\n');
116
117 InstOrderMap IOM;
118 // Map from register to instruction order (value of IOM) where the
119 // register is used last. When moving instructions up, we need to
120 // make sure all its defs (including dead def) will not cross its
121 // last use when moving up.
123
124 for (MachineBasicBlock &MBB : MF) {
125 if (MBB.empty())
126 continue;
127
129 if (MBB.isEHPad()) {
130 // Do not track PHIs in IOM when handling EHPads.
131 // Otherwise their uses may be hoisted outside a landingpad range.
132 Next = MBB.SkipPHIsLabelsAndDebug(Next);
133 if (Next == MBB.end())
134 continue;
135 }
136
137 BuildInstOrderMap(Next, IOM);
138 Next = MBB.SkipPHIsLabelsAndDebug(Next);
139 UseMap.clear();
140 bool SawStore = false;
141
142 while (Next != MBB.end()) {
143 MachineInstr &MI = *Next;
144 Next = MBB.SkipPHIsLabelsAndDebug(++Next);
145 if (MI.mayStore())
146 SawStore = true;
147
148 unsigned CurrentOrder = IOM[&MI];
149 unsigned Barrier = 0;
150 MachineInstr *BarrierMI = nullptr;
151 for (const MachineOperand &MO : MI.operands()) {
152 if (!MO.isReg() || MO.isDebug())
153 continue;
154 if (MO.isUse())
155 UseMap[MO.getReg()] = std::make_pair(CurrentOrder, &MI);
156 else if (MO.isDead() && UseMap.count(MO.getReg()))
157 // Barrier is the last instruction where MO get used. MI should not
158 // be moved above Barrier.
159 if (Barrier < UseMap[MO.getReg()].first) {
160 Barrier = UseMap[MO.getReg()].first;
161 BarrierMI = UseMap[MO.getReg()].second;
162 }
163 }
164
165 if (!MI.isSafeToMove(SawStore)) {
166 // If MI has side effects, it should become a barrier for code motion.
167 // IOM is rebuild from the next instruction to prevent later
168 // instructions from being moved before this MI.
169 if (MI.hasUnmodeledSideEffects() && !MI.isPseudoProbe() &&
170 Next != MBB.end()) {
171 BuildInstOrderMap(Next, IOM);
172 SawStore = false;
173 }
174 continue;
175 }
176
177 const MachineOperand *DefMO = nullptr;
178 MachineInstr *Insert = nullptr;
179
180 // Number of live-ranges that will be shortened. We do not count
181 // live-ranges that are defined by a COPY as it could be coalesced later.
182 unsigned NumEligibleUse = 0;
183
184 for (const MachineOperand &MO : MI.operands()) {
185 if (!MO.isReg() || MO.isDead() || MO.isDebug())
186 continue;
187 Register Reg = MO.getReg();
188 // Do not move the instruction if it def/uses a physical register,
189 // unless it is a constant physical register or a noreg.
190 if (!Reg.isVirtual()) {
191 if (!Reg || MRI.isConstantPhysReg(Reg))
192 continue;
193 Insert = nullptr;
194 break;
195 }
196 if (MO.isDef()) {
197 // Do not move if there is more than one def.
198 if (DefMO) {
199 Insert = nullptr;
200 break;
201 }
202 DefMO = &MO;
203 } else if (MRI.hasOneNonDBGUse(Reg) && MRI.hasOneDef(Reg) && DefMO &&
204 MRI.getRegClass(DefMO->getReg()) ==
205 MRI.getRegClass(MO.getReg())) {
206 // The heuristic does not handle different register classes yet
207 // (registers of different sizes, looser/tighter constraints). This
208 // is because it needs more accurate model to handle register
209 // pressure correctly.
210 MachineInstr &DefInstr = *MRI.def_instr_begin(Reg);
211 if (!TII.isCopyInstr(DefInstr))
212 NumEligibleUse++;
213 Insert = FindDominatedInstruction(DefInstr, Insert, IOM);
214 } else {
215 Insert = nullptr;
216 break;
217 }
218 }
219
220 // If Barrier equals IOM[I], traverse forward to find if BarrierMI is
221 // after Insert, if yes, then we should not hoist.
222 for (MachineInstr *I = Insert; I && IOM[I] == Barrier;
223 I = I->getNextNode())
224 if (I == BarrierMI) {
225 Insert = nullptr;
226 break;
227 }
228 // Move the instruction when # of shrunk live range > 1.
229 if (DefMO && Insert && NumEligibleUse > 1 && Barrier <= IOM[Insert]) {
230 MachineBasicBlock::iterator I = std::next(Insert->getIterator());
231 // Skip all the PHI and debug instructions.
232 while (I != MBB.end() && (I->isPHI() || I->isDebugOrPseudoInstr()))
233 I = std::next(I);
234 if (I == MI.getIterator())
235 continue;
236
237 // Update the dominator order to be the same as the insertion point.
238 // We do this to maintain a non-decreasing order without need to update
239 // all instruction orders after the insertion point.
240 unsigned NewOrder = IOM[&*I];
241 IOM[&MI] = NewOrder;
242 NumInstrsHoistedToShrinkLiveRange++;
243
244 // Find MI's debug value following MI.
245 MachineBasicBlock::iterator EndIter = std::next(MI.getIterator());
246 if (MI.getOperand(0).isReg())
247 for (; EndIter != MBB.end() && EndIter->isDebugValue() &&
248 EndIter->hasDebugOperandForReg(MI.getOperand(0).getReg());
249 ++EndIter)
250 IOM[&*EndIter] = NewOrder;
251 MBB.splice(I, &MBB, MI.getIterator(), EndIter);
252 }
253 }
254 }
255 return false;
256}
unsigned const MachineRegisterInfo * MRI
aarch64 promote const
MachineBasicBlock & MBB
#define LLVM_DEBUG(...)
Definition: Debug.h:106
This file defines the DenseMap class.
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
static MachineInstr * FindDominatedInstruction(MachineInstr &New, MachineInstr *Old, const InstOrderMap &M)
Returns New if it's dominated by Old, otherwise return Old.
static void BuildInstOrderMap(MachineBasicBlock::iterator Start, InstOrderMap &M)
Builds Instruction to its dominating order number map M by traversing from instruction Start.
#define I(x, y, z)
Definition: MD5.cpp:58
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:166
Represent the analysis usage information of a pass.
void setPreservesCFG()
This function should be called by the pass, iff they do not:
Definition: Pass.cpp:256
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition: DenseMap.h:152
bool isEHPad() const
Returns true if the block is a landing pad.
iterator SkipPHIsLabelsAndDebug(iterator I, Register Reg=Register(), bool SkipPseudoOp=true)
Return the first instruction in MBB after I that is not a PHI, label or debug.
void splice(iterator Where, MachineBasicBlock *Other, iterator From)
Take an instruction from MBB 'Other' at the position From, and insert it into this MBB right before '...
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.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
Representation of each machine instruction.
Definition: MachineInstr.h:69
MachineOperand class - Representation of each machine instruction 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.
Definition: Pass.cpp:81
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:51
TargetInstrInfo - Interface to description of machine instruction set.
virtual const TargetInstrInfo * getInstrInfo() const
This provides a very simple, boring adaptor for a begin and end iterator into a range type.
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
Reg
All possible values of the reg field in the ModR/M byte.
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
void initializeLiveRangeShrinkPass(PassRegistry &)
char & LiveRangeShrinkID
LiveRangeShrink pass.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163