blob: 22762db2390d2df54680e7785bf959f30ac9a2ec [file] [log] [blame]
Alexey Bataev7cf32472015-12-04 10:53:15 +00001//===-- X86OptimizeLEAs.cpp - optimize usage of LEA instructions ----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the pass that performs some optimizations with LEA
Andrey Turetskiy45b22a42016-05-19 10:18:29 +000011// instructions in order to improve performance and code size.
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +000012// Currently, it does two things:
13// 1) If there are two LEA instructions calculating addresses which only differ
14// by displacement inside a basic block, one of them is removed.
15// 2) Address calculations in load and store instructions are replaced by
Alexey Bataev7cf32472015-12-04 10:53:15 +000016// existing LEA def registers where possible.
17//
18//===----------------------------------------------------------------------===//
19
20#include "X86.h"
21#include "X86InstrInfo.h"
22#include "X86Subtarget.h"
23#include "llvm/ADT/Statistic.h"
24#include "llvm/CodeGen/LiveVariables.h"
25#include "llvm/CodeGen/MachineFunctionPass.h"
26#include "llvm/CodeGen/MachineInstrBuilder.h"
Andrey Turetskiy0babd262016-02-20 10:58:28 +000027#include "llvm/CodeGen/MachineOperand.h"
Alexey Bataev7cf32472015-12-04 10:53:15 +000028#include "llvm/CodeGen/MachineRegisterInfo.h"
29#include "llvm/CodeGen/Passes.h"
30#include "llvm/IR/Function.h"
31#include "llvm/Support/Debug.h"
32#include "llvm/Support/raw_ostream.h"
33#include "llvm/Target/TargetInstrInfo.h"
34
35using namespace llvm;
36
37#define DEBUG_TYPE "x86-optimize-LEAs"
38
Andrey Turetskiy9994b882016-02-20 11:11:55 +000039static cl::opt<bool>
40 DisableX86LEAOpt("disable-x86-lea-opt", cl::Hidden,
41 cl::desc("X86: Disable LEA optimizations."),
42 cl::init(false));
Alexey Bataev7b72b652015-12-17 07:34:39 +000043
Alexey Bataev7cf32472015-12-04 10:53:15 +000044STATISTIC(NumSubstLEAs, "Number of LEA instruction substitutions");
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +000045STATISTIC(NumRedundantLEAs, "Number of redundant LEA instructions removed");
Alexey Bataev7cf32472015-12-04 10:53:15 +000046
Andrey Turetskiybca0f992016-02-04 08:57:03 +000047class MemOpKey;
48
49/// \brief Returns a hash table key based on memory operands of \p MI. The
50/// number of the first memory operand of \p MI is specified through \p N.
51static inline MemOpKey getMemOpKey(const MachineInstr &MI, unsigned N);
52
53/// \brief Returns true if two machine operands are identical and they are not
54/// physical registers.
55static inline bool isIdenticalOp(const MachineOperand &MO1,
56 const MachineOperand &MO2);
57
Andrey Turetskiy0babd262016-02-20 10:58:28 +000058/// \brief Returns true if two address displacement operands are of the same
59/// type and use the same symbol/index/address regardless of the offset.
60static bool isSimilarDispOp(const MachineOperand &MO1,
61 const MachineOperand &MO2);
62
Andrey Turetskiybca0f992016-02-04 08:57:03 +000063/// \brief Returns true if the instruction is LEA.
64static inline bool isLEA(const MachineInstr &MI);
65
66/// A key based on instruction's memory operands.
67class MemOpKey {
68public:
69 MemOpKey(const MachineOperand *Base, const MachineOperand *Scale,
70 const MachineOperand *Index, const MachineOperand *Segment,
71 const MachineOperand *Disp)
72 : Disp(Disp) {
73 Operands[0] = Base;
74 Operands[1] = Scale;
75 Operands[2] = Index;
76 Operands[3] = Segment;
77 }
78
79 bool operator==(const MemOpKey &Other) const {
80 // Addresses' bases, scales, indices and segments must be identical.
81 for (int i = 0; i < 4; ++i)
82 if (!isIdenticalOp(*Operands[i], *Other.Operands[i]))
83 return false;
84
Andrey Turetskiy0babd262016-02-20 10:58:28 +000085 // Addresses' displacements don't have to be exactly the same. It only
86 // matters that they use the same symbol/index/address. Immediates' or
87 // offsets' differences will be taken care of during instruction
88 // substitution.
89 return isSimilarDispOp(*Disp, *Other.Disp);
Andrey Turetskiybca0f992016-02-04 08:57:03 +000090 }
91
92 // Address' base, scale, index and segment operands.
93 const MachineOperand *Operands[4];
94
95 // Address' displacement operand.
96 const MachineOperand *Disp;
97};
98
99/// Provide DenseMapInfo for MemOpKey.
100namespace llvm {
101template <> struct DenseMapInfo<MemOpKey> {
102 typedef DenseMapInfo<const MachineOperand *> PtrInfo;
103
104 static inline MemOpKey getEmptyKey() {
105 return MemOpKey(PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(),
106 PtrInfo::getEmptyKey(), PtrInfo::getEmptyKey(),
107 PtrInfo::getEmptyKey());
108 }
109
110 static inline MemOpKey getTombstoneKey() {
111 return MemOpKey(PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(),
112 PtrInfo::getTombstoneKey(), PtrInfo::getTombstoneKey(),
113 PtrInfo::getTombstoneKey());
114 }
115
116 static unsigned getHashValue(const MemOpKey &Val) {
117 // Checking any field of MemOpKey is enough to determine if the key is
118 // empty or tombstone.
119 assert(Val.Disp != PtrInfo::getEmptyKey() && "Cannot hash the empty key");
120 assert(Val.Disp != PtrInfo::getTombstoneKey() &&
121 "Cannot hash the tombstone key");
122
123 hash_code Hash = hash_combine(*Val.Operands[0], *Val.Operands[1],
124 *Val.Operands[2], *Val.Operands[3]);
125
126 // If the address displacement is an immediate, it should not affect the
127 // hash so that memory operands which differ only be immediate displacement
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000128 // would have the same hash. If the address displacement is something else,
129 // we should reflect symbol/index/address in the hash.
130 switch (Val.Disp->getType()) {
131 case MachineOperand::MO_Immediate:
132 break;
133 case MachineOperand::MO_ConstantPoolIndex:
134 case MachineOperand::MO_JumpTableIndex:
135 Hash = hash_combine(Hash, Val.Disp->getIndex());
136 break;
137 case MachineOperand::MO_ExternalSymbol:
138 Hash = hash_combine(Hash, Val.Disp->getSymbolName());
139 break;
140 case MachineOperand::MO_GlobalAddress:
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000141 Hash = hash_combine(Hash, Val.Disp->getGlobal());
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000142 break;
143 case MachineOperand::MO_BlockAddress:
144 Hash = hash_combine(Hash, Val.Disp->getBlockAddress());
145 break;
146 case MachineOperand::MO_MCSymbol:
147 Hash = hash_combine(Hash, Val.Disp->getMCSymbol());
148 break;
Andrey Turetskiyb4056062016-04-26 12:18:12 +0000149 case MachineOperand::MO_MachineBasicBlock:
150 Hash = hash_combine(Hash, Val.Disp->getMBB());
151 break;
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000152 default:
153 llvm_unreachable("Invalid address displacement operand");
154 }
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000155
156 return (unsigned)Hash;
157 }
158
159 static bool isEqual(const MemOpKey &LHS, const MemOpKey &RHS) {
160 // Checking any field of MemOpKey is enough to determine if the key is
161 // empty or tombstone.
162 if (RHS.Disp == PtrInfo::getEmptyKey())
163 return LHS.Disp == PtrInfo::getEmptyKey();
164 if (RHS.Disp == PtrInfo::getTombstoneKey())
165 return LHS.Disp == PtrInfo::getTombstoneKey();
166 return LHS == RHS;
167 }
168};
169}
170
171static inline MemOpKey getMemOpKey(const MachineInstr &MI, unsigned N) {
172 assert((isLEA(MI) || MI.mayLoadOrStore()) &&
173 "The instruction must be a LEA, a load or a store");
174 return MemOpKey(&MI.getOperand(N + X86::AddrBaseReg),
175 &MI.getOperand(N + X86::AddrScaleAmt),
176 &MI.getOperand(N + X86::AddrIndexReg),
177 &MI.getOperand(N + X86::AddrSegmentReg),
178 &MI.getOperand(N + X86::AddrDisp));
179}
180
181static inline bool isIdenticalOp(const MachineOperand &MO1,
182 const MachineOperand &MO2) {
183 return MO1.isIdenticalTo(MO2) &&
184 (!MO1.isReg() ||
185 !TargetRegisterInfo::isPhysicalRegister(MO1.getReg()));
186}
187
Justin Bogner38e52172016-02-24 07:58:02 +0000188#ifndef NDEBUG
189static bool isValidDispOp(const MachineOperand &MO) {
190 return MO.isImm() || MO.isCPI() || MO.isJTI() || MO.isSymbol() ||
Andrey Turetskiyb4056062016-04-26 12:18:12 +0000191 MO.isGlobal() || MO.isBlockAddress() || MO.isMCSymbol() || MO.isMBB();
Justin Bogner38e52172016-02-24 07:58:02 +0000192}
193#endif
194
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000195static bool isSimilarDispOp(const MachineOperand &MO1,
196 const MachineOperand &MO2) {
197 assert(isValidDispOp(MO1) && isValidDispOp(MO2) &&
198 "Address displacement operand is not valid");
199 return (MO1.isImm() && MO2.isImm()) ||
200 (MO1.isCPI() && MO2.isCPI() && MO1.getIndex() == MO2.getIndex()) ||
201 (MO1.isJTI() && MO2.isJTI() && MO1.getIndex() == MO2.getIndex()) ||
202 (MO1.isSymbol() && MO2.isSymbol() &&
203 MO1.getSymbolName() == MO2.getSymbolName()) ||
204 (MO1.isGlobal() && MO2.isGlobal() &&
205 MO1.getGlobal() == MO2.getGlobal()) ||
206 (MO1.isBlockAddress() && MO2.isBlockAddress() &&
207 MO1.getBlockAddress() == MO2.getBlockAddress()) ||
208 (MO1.isMCSymbol() && MO2.isMCSymbol() &&
Andrey Turetskiyb4056062016-04-26 12:18:12 +0000209 MO1.getMCSymbol() == MO2.getMCSymbol()) ||
210 (MO1.isMBB() && MO2.isMBB() && MO1.getMBB() == MO2.getMBB());
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000211}
212
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000213static inline bool isLEA(const MachineInstr &MI) {
214 unsigned Opcode = MI.getOpcode();
215 return Opcode == X86::LEA16r || Opcode == X86::LEA32r ||
216 Opcode == X86::LEA64r || Opcode == X86::LEA64_32r;
217}
218
Alexey Bataev7cf32472015-12-04 10:53:15 +0000219namespace {
220class OptimizeLEAPass : public MachineFunctionPass {
221public:
222 OptimizeLEAPass() : MachineFunctionPass(ID) {}
223
224 const char *getPassName() const override { return "X86 LEA Optimize"; }
225
226 /// \brief Loop over all of the basic blocks, replacing address
227 /// calculations in load and store instructions, if it's already
228 /// been calculated by LEA. Also, remove redundant LEAs.
229 bool runOnMachineFunction(MachineFunction &MF) override;
230
231private:
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000232 typedef DenseMap<MemOpKey, SmallVector<MachineInstr *, 16>> MemOpMap;
233
Alexey Bataev7cf32472015-12-04 10:53:15 +0000234 /// \brief Returns a distance between two instructions inside one basic block.
235 /// Negative result means, that instructions occur in reverse order.
236 int calcInstrDist(const MachineInstr &First, const MachineInstr &Last);
237
238 /// \brief Choose the best \p LEA instruction from the \p List to replace
239 /// address calculation in \p MI instruction. Return the address displacement
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000240 /// and the distance between \p MI and the choosen \p BestLEA in
241 /// \p AddrDispShift and \p Dist.
Alexey Bataev7cf32472015-12-04 10:53:15 +0000242 bool chooseBestLEA(const SmallVectorImpl<MachineInstr *> &List,
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000243 const MachineInstr &MI, MachineInstr *&BestLEA,
Alexey Bataev7cf32472015-12-04 10:53:15 +0000244 int64_t &AddrDispShift, int &Dist);
245
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000246 /// \brief Returns the difference between addresses' displacements of \p MI1
247 /// and \p MI2. The numbers of the first memory operands for the instructions
248 /// are specified through \p N1 and \p N2.
249 int64_t getAddrDispShift(const MachineInstr &MI1, unsigned N1,
250 const MachineInstr &MI2, unsigned N2) const;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000251
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000252 /// \brief Returns true if the \p Last LEA instruction can be replaced by the
253 /// \p First. The difference between displacements of the addresses calculated
254 /// by these LEAs is returned in \p AddrDispShift. It'll be used for proper
255 /// replacement of the \p Last LEA's uses with the \p First's def register.
256 bool isReplaceable(const MachineInstr &First, const MachineInstr &Last,
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000257 int64_t &AddrDispShift) const;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000258
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000259 /// \brief Find all LEA instructions in the basic block. Also, assign position
260 /// numbers to all instructions in the basic block to speed up calculation of
261 /// distance between them.
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000262 void findLEAs(const MachineBasicBlock &MBB, MemOpMap &LEAs);
Alexey Bataev7cf32472015-12-04 10:53:15 +0000263
264 /// \brief Removes redundant address calculations.
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000265 bool removeRedundantAddrCalc(MemOpMap &LEAs);
Alexey Bataev7cf32472015-12-04 10:53:15 +0000266
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000267 /// \brief Removes LEAs which calculate similar addresses.
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000268 bool removeRedundantLEAs(MemOpMap &LEAs);
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000269
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000270 DenseMap<const MachineInstr *, unsigned> InstrPos;
271
Alexey Bataev7cf32472015-12-04 10:53:15 +0000272 MachineRegisterInfo *MRI;
273 const X86InstrInfo *TII;
274 const X86RegisterInfo *TRI;
275
276 static char ID;
277};
278char OptimizeLEAPass::ID = 0;
279}
280
281FunctionPass *llvm::createX86OptimizeLEAs() { return new OptimizeLEAPass(); }
282
283int OptimizeLEAPass::calcInstrDist(const MachineInstr &First,
284 const MachineInstr &Last) {
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000285 // Both instructions must be in the same basic block and they must be
286 // presented in InstrPos.
287 assert(Last.getParent() == First.getParent() &&
Alexey Bataev7cf32472015-12-04 10:53:15 +0000288 "Instructions are in different basic blocks");
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000289 assert(InstrPos.find(&First) != InstrPos.end() &&
290 InstrPos.find(&Last) != InstrPos.end() &&
291 "Instructions' positions are undefined");
Alexey Bataev7cf32472015-12-04 10:53:15 +0000292
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000293 return InstrPos[&Last] - InstrPos[&First];
Alexey Bataev7cf32472015-12-04 10:53:15 +0000294}
295
296// Find the best LEA instruction in the List to replace address recalculation in
297// MI. Such LEA must meet these requirements:
298// 1) The address calculated by the LEA differs only by the displacement from
299// the address used in MI.
300// 2) The register class of the definition of the LEA is compatible with the
301// register class of the address base register of MI.
302// 3) Displacement of the new memory operand should fit in 1 byte if possible.
303// 4) The LEA should be as close to MI as possible, and prior to it if
304// possible.
305bool OptimizeLEAPass::chooseBestLEA(const SmallVectorImpl<MachineInstr *> &List,
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000306 const MachineInstr &MI,
307 MachineInstr *&BestLEA,
Alexey Bataev7cf32472015-12-04 10:53:15 +0000308 int64_t &AddrDispShift, int &Dist) {
309 const MachineFunction *MF = MI.getParent()->getParent();
310 const MCInstrDesc &Desc = MI.getDesc();
Craig Topper477649a2016-04-28 05:58:46 +0000311 int MemOpNo = X86II::getMemoryOperandNo(Desc.TSFlags) +
Alexey Bataev7cf32472015-12-04 10:53:15 +0000312 X86II::getOperandBias(Desc);
313
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000314 BestLEA = nullptr;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000315
316 // Loop over all LEA instructions.
317 for (auto DefMI : List) {
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000318 // Get new address displacement.
319 int64_t AddrDispShiftTemp = getAddrDispShift(MI, MemOpNo, *DefMI, 1);
Alexey Bataev7cf32472015-12-04 10:53:15 +0000320
321 // Make sure address displacement fits 4 bytes.
322 if (!isInt<32>(AddrDispShiftTemp))
323 continue;
324
325 // Check that LEA def register can be used as MI address base. Some
326 // instructions can use a limited set of registers as address base, for
327 // example MOV8mr_NOREX. We could constrain the register class of the LEA
328 // def to suit MI, however since this case is very rare and hard to
329 // reproduce in a test it's just more reliable to skip the LEA.
330 if (TII->getRegClass(Desc, MemOpNo + X86::AddrBaseReg, TRI, *MF) !=
331 MRI->getRegClass(DefMI->getOperand(0).getReg()))
332 continue;
333
334 // Choose the closest LEA instruction from the list, prior to MI if
335 // possible. Note that we took into account resulting address displacement
336 // as well. Also note that the list is sorted by the order in which the LEAs
337 // occur, so the break condition is pretty simple.
338 int DistTemp = calcInstrDist(*DefMI, MI);
339 assert(DistTemp != 0 &&
340 "The distance between two different instructions cannot be zero");
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000341 if (DistTemp > 0 || BestLEA == nullptr) {
Alexey Bataev7cf32472015-12-04 10:53:15 +0000342 // Do not update return LEA, if the current one provides a displacement
343 // which fits in 1 byte, while the new candidate does not.
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000344 if (BestLEA != nullptr && !isInt<8>(AddrDispShiftTemp) &&
Alexey Bataev7cf32472015-12-04 10:53:15 +0000345 isInt<8>(AddrDispShift))
346 continue;
347
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000348 BestLEA = DefMI;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000349 AddrDispShift = AddrDispShiftTemp;
350 Dist = DistTemp;
351 }
352
353 // FIXME: Maybe we should not always stop at the first LEA after MI.
354 if (DistTemp < 0)
355 break;
356 }
357
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000358 return BestLEA != nullptr;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000359}
360
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000361// Get the difference between the addresses' displacements of the two
362// instructions \p MI1 and \p MI2. The numbers of the first memory operands are
363// passed through \p N1 and \p N2.
364int64_t OptimizeLEAPass::getAddrDispShift(const MachineInstr &MI1, unsigned N1,
365 const MachineInstr &MI2,
366 unsigned N2) const {
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000367 const MachineOperand &Op1 = MI1.getOperand(N1 + X86::AddrDisp);
368 const MachineOperand &Op2 = MI2.getOperand(N2 + X86::AddrDisp);
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000369
370 assert(isSimilarDispOp(Op1, Op2) &&
371 "Address displacement operands are not compatible");
372
373 // After the assert above we can be sure that both operands are of the same
374 // valid type and use the same symbol/index/address, thus displacement shift
375 // calculation is rather simple.
376 if (Op1.isJTI())
377 return 0;
378 return Op1.isImm() ? Op1.getImm() - Op2.getImm()
379 : Op1.getOffset() - Op2.getOffset();
Alexey Bataev7cf32472015-12-04 10:53:15 +0000380}
381
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000382// Check that the Last LEA can be replaced by the First LEA. To be so,
383// these requirements must be met:
384// 1) Addresses calculated by LEAs differ only by displacement.
385// 2) Def registers of LEAs belong to the same class.
386// 3) All uses of the Last LEA def register are replaceable, thus the
387// register is used only as address base.
388bool OptimizeLEAPass::isReplaceable(const MachineInstr &First,
389 const MachineInstr &Last,
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000390 int64_t &AddrDispShift) const {
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000391 assert(isLEA(First) && isLEA(Last) &&
392 "The function works only with LEA instructions");
393
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000394 // Get new address displacement.
395 AddrDispShift = getAddrDispShift(Last, 1, First, 1);
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000396
397 // Make sure that LEA def registers belong to the same class. There may be
398 // instructions (like MOV8mr_NOREX) which allow a limited set of registers to
399 // be used as their operands, so we must be sure that replacing one LEA
400 // with another won't lead to putting a wrong register in the instruction.
401 if (MRI->getRegClass(First.getOperand(0).getReg()) !=
402 MRI->getRegClass(Last.getOperand(0).getReg()))
403 return false;
404
405 // Loop over all uses of the Last LEA to check that its def register is
406 // used only as address base for memory accesses. If so, it can be
407 // replaced, otherwise - no.
408 for (auto &MO : MRI->use_operands(Last.getOperand(0).getReg())) {
409 MachineInstr &MI = *MO.getParent();
410
411 // Get the number of the first memory operand.
412 const MCInstrDesc &Desc = MI.getDesc();
Craig Topper477649a2016-04-28 05:58:46 +0000413 int MemOpNo = X86II::getMemoryOperandNo(Desc.TSFlags);
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000414
415 // If the use instruction has no memory operand - the LEA is not
416 // replaceable.
417 if (MemOpNo < 0)
418 return false;
419
420 MemOpNo += X86II::getOperandBias(Desc);
421
422 // If the address base of the use instruction is not the LEA def register -
423 // the LEA is not replaceable.
424 if (!isIdenticalOp(MI.getOperand(MemOpNo + X86::AddrBaseReg), MO))
425 return false;
426
427 // If the LEA def register is used as any other operand of the use
428 // instruction - the LEA is not replaceable.
429 for (unsigned i = 0; i < MI.getNumOperands(); i++)
430 if (i != (unsigned)(MemOpNo + X86::AddrBaseReg) &&
431 isIdenticalOp(MI.getOperand(i), MO))
432 return false;
433
434 // Check that the new address displacement will fit 4 bytes.
435 if (MI.getOperand(MemOpNo + X86::AddrDisp).isImm() &&
436 !isInt<32>(MI.getOperand(MemOpNo + X86::AddrDisp).getImm() +
437 AddrDispShift))
438 return false;
439 }
440
441 return true;
442}
443
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000444void OptimizeLEAPass::findLEAs(const MachineBasicBlock &MBB, MemOpMap &LEAs) {
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000445 unsigned Pos = 0;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000446 for (auto &MI : MBB) {
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000447 // Assign the position number to the instruction. Note that we are going to
448 // move some instructions during the optimization however there will never
449 // be a need to move two instructions before any selected instruction. So to
450 // avoid multiple positions' updates during moves we just increase position
451 // counter by two leaving a free space for instructions which will be moved.
452 InstrPos[&MI] = Pos += 2;
453
Alexey Bataev7cf32472015-12-04 10:53:15 +0000454 if (isLEA(MI))
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000455 LEAs[getMemOpKey(MI, 1)].push_back(const_cast<MachineInstr *>(&MI));
Alexey Bataev7cf32472015-12-04 10:53:15 +0000456 }
457}
458
459// Try to find load and store instructions which recalculate addresses already
460// calculated by some LEA and replace their memory operands with its def
461// register.
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000462bool OptimizeLEAPass::removeRedundantAddrCalc(MemOpMap &LEAs) {
Alexey Bataev7cf32472015-12-04 10:53:15 +0000463 bool Changed = false;
464
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000465 assert(!LEAs.empty());
466 MachineBasicBlock *MBB = (*LEAs.begin()->second.begin())->getParent();
Alexey Bataev7cf32472015-12-04 10:53:15 +0000467
468 // Process all instructions in basic block.
469 for (auto I = MBB->begin(), E = MBB->end(); I != E;) {
470 MachineInstr &MI = *I++;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000471
472 // Instruction must be load or store.
473 if (!MI.mayLoadOrStore())
474 continue;
475
476 // Get the number of the first memory operand.
477 const MCInstrDesc &Desc = MI.getDesc();
Craig Topper477649a2016-04-28 05:58:46 +0000478 int MemOpNo = X86II::getMemoryOperandNo(Desc.TSFlags);
Alexey Bataev7cf32472015-12-04 10:53:15 +0000479
480 // If instruction has no memory operand - skip it.
481 if (MemOpNo < 0)
482 continue;
483
484 MemOpNo += X86II::getOperandBias(Desc);
485
486 // Get the best LEA instruction to replace address calculation.
487 MachineInstr *DefMI;
488 int64_t AddrDispShift;
489 int Dist;
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000490 if (!chooseBestLEA(LEAs[getMemOpKey(MI, MemOpNo)], MI, DefMI, AddrDispShift,
491 Dist))
Alexey Bataev7cf32472015-12-04 10:53:15 +0000492 continue;
493
494 // If LEA occurs before current instruction, we can freely replace
495 // the instruction. If LEA occurs after, we can lift LEA above the
496 // instruction and this way to be able to replace it. Since LEA and the
497 // instruction have similar memory operands (thus, the same def
498 // instructions for these operands), we can always do that, without
499 // worries of using registers before their defs.
500 if (Dist < 0) {
501 DefMI->removeFromParent();
502 MBB->insert(MachineBasicBlock::iterator(&MI), DefMI);
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000503 InstrPos[DefMI] = InstrPos[&MI] - 1;
504
505 // Make sure the instructions' position numbers are sane.
506 assert(((InstrPos[DefMI] == 1 && DefMI == MBB->begin()) ||
507 InstrPos[DefMI] >
508 InstrPos[std::prev(MachineBasicBlock::iterator(DefMI))]) &&
509 "Instruction positioning is broken");
Alexey Bataev7cf32472015-12-04 10:53:15 +0000510 }
511
512 // Since we can possibly extend register lifetime, clear kill flags.
513 MRI->clearKillFlags(DefMI->getOperand(0).getReg());
514
515 ++NumSubstLEAs;
516 DEBUG(dbgs() << "OptimizeLEAs: Candidate to replace: "; MI.dump(););
517
518 // Change instruction operands.
519 MI.getOperand(MemOpNo + X86::AddrBaseReg)
520 .ChangeToRegister(DefMI->getOperand(0).getReg(), false);
521 MI.getOperand(MemOpNo + X86::AddrScaleAmt).ChangeToImmediate(1);
522 MI.getOperand(MemOpNo + X86::AddrIndexReg)
523 .ChangeToRegister(X86::NoRegister, false);
524 MI.getOperand(MemOpNo + X86::AddrDisp).ChangeToImmediate(AddrDispShift);
525 MI.getOperand(MemOpNo + X86::AddrSegmentReg)
526 .ChangeToRegister(X86::NoRegister, false);
527
528 DEBUG(dbgs() << "OptimizeLEAs: Replaced by: "; MI.dump(););
529
530 Changed = true;
531 }
532
533 return Changed;
534}
535
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000536// Try to find similar LEAs in the list and replace one with another.
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000537bool OptimizeLEAPass::removeRedundantLEAs(MemOpMap &LEAs) {
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000538 bool Changed = false;
539
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000540 // Loop over all entries in the table.
541 for (auto &E : LEAs) {
542 auto &List = E.second;
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000543
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000544 // Loop over all LEA pairs.
545 auto I1 = List.begin();
546 while (I1 != List.end()) {
547 MachineInstr &First = **I1;
548 auto I2 = std::next(I1);
549 while (I2 != List.end()) {
550 MachineInstr &Last = **I2;
551 int64_t AddrDispShift;
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000552
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000553 // LEAs should be in occurence order in the list, so we can freely
554 // replace later LEAs with earlier ones.
555 assert(calcInstrDist(First, Last) > 0 &&
556 "LEAs must be in occurence order in the list");
557
558 // Check that the Last LEA instruction can be replaced by the First.
559 if (!isReplaceable(First, Last, AddrDispShift)) {
560 ++I2;
561 continue;
562 }
563
564 // Loop over all uses of the Last LEA and update their operands. Note
565 // that the correctness of this has already been checked in the
566 // isReplaceable function.
567 for (auto UI = MRI->use_begin(Last.getOperand(0).getReg()),
568 UE = MRI->use_end();
569 UI != UE;) {
570 MachineOperand &MO = *UI++;
571 MachineInstr &MI = *MO.getParent();
572
573 // Get the number of the first memory operand.
574 const MCInstrDesc &Desc = MI.getDesc();
575 int MemOpNo =
Craig Topper477649a2016-04-28 05:58:46 +0000576 X86II::getMemoryOperandNo(Desc.TSFlags) +
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000577 X86II::getOperandBias(Desc);
578
579 // Update address base.
580 MO.setReg(First.getOperand(0).getReg());
581
582 // Update address disp.
Andrey Turetskiy0babd262016-02-20 10:58:28 +0000583 MachineOperand &Op = MI.getOperand(MemOpNo + X86::AddrDisp);
584 if (Op.isImm())
585 Op.setImm(Op.getImm() + AddrDispShift);
586 else if (!Op.isJTI())
587 Op.setOffset(Op.getOffset() + AddrDispShift);
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000588 }
589
590 // Since we can possibly extend register lifetime, clear kill flags.
591 MRI->clearKillFlags(First.getOperand(0).getReg());
592
593 ++NumRedundantLEAs;
594 DEBUG(dbgs() << "OptimizeLEAs: Remove redundant LEA: "; Last.dump(););
595
596 // By this moment, all of the Last LEA's uses must be replaced. So we
597 // can freely remove it.
598 assert(MRI->use_empty(Last.getOperand(0).getReg()) &&
599 "The LEA's def register must have no uses");
600 Last.eraseFromParent();
601
602 // Erase removed LEA from the list.
603 I2 = List.erase(I2);
604
605 Changed = true;
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000606 }
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000607 ++I1;
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000608 }
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000609 }
610
611 return Changed;
612}
613
Alexey Bataev7cf32472015-12-04 10:53:15 +0000614bool OptimizeLEAPass::runOnMachineFunction(MachineFunction &MF) {
615 bool Changed = false;
Alexey Bataev7cf32472015-12-04 10:53:15 +0000616
Andrey Turetskiy45b22a42016-05-19 10:18:29 +0000617 if (DisableX86LEAOpt || skipFunction(*MF.getFunction()))
Alexey Bataev7cf32472015-12-04 10:53:15 +0000618 return false;
619
620 MRI = &MF.getRegInfo();
621 TII = MF.getSubtarget<X86Subtarget>().getInstrInfo();
622 TRI = MF.getSubtarget<X86Subtarget>().getRegisterInfo();
623
624 // Process all basic blocks.
625 for (auto &MBB : MF) {
Andrey Turetskiybca0f992016-02-04 08:57:03 +0000626 MemOpMap LEAs;
Alexey Bataev28f0c5e2016-01-11 11:52:29 +0000627 InstrPos.clear();
Alexey Bataev7cf32472015-12-04 10:53:15 +0000628
629 // Find all LEA instructions in basic block.
630 findLEAs(MBB, LEAs);
631
632 // If current basic block has no LEAs, move on to the next one.
633 if (LEAs.empty())
634 continue;
635
Andrey Turetskiy45b22a42016-05-19 10:18:29 +0000636 // Remove redundant LEA instructions.
637 Changed |= removeRedundantLEAs(LEAs);
Andrey Turetskiy1ce2c992016-01-13 11:30:44 +0000638
Andrey Turetskiy45b22a42016-05-19 10:18:29 +0000639 // Remove redundant address calculations. Do it only for -Os/-Oz since only
640 // a code size gain is expected from this part of the pass.
641 if (MF.getFunction()->optForSize())
642 Changed |= removeRedundantAddrCalc(LEAs);
Alexey Bataev7cf32472015-12-04 10:53:15 +0000643 }
644
645 return Changed;
646}