blob: 9f649dad8bc074fc222b190d334425c655bcb643 [file] [log] [blame]
Preston Gurd8b7ab4b2013-04-25 20:29:37 +00001//===-- X86FixupLEAs.cpp - use or replace 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//
Sanjay Patel63604412014-07-16 20:18:49 +000010// This file defines the pass that finds instructions that can be
11// re-written as LEA instructions in order to reduce pipeline delays.
Michael Kuperstein12982a82015-11-11 11:44:31 +000012// When optimizing for size it replaces suitable LEAs with INC or DEC.
Preston Gurd8b7ab4b2013-04-25 20:29:37 +000013//
14//===----------------------------------------------------------------------===//
15
Preston Gurd8b7ab4b2013-04-25 20:29:37 +000016#include "X86.h"
17#include "X86InstrInfo.h"
18#include "X86Subtarget.h"
19#include "llvm/ADT/Statistic.h"
20#include "llvm/CodeGen/LiveVariables.h"
21#include "llvm/CodeGen/MachineFunctionPass.h"
22#include "llvm/CodeGen/MachineInstrBuilder.h"
23#include "llvm/CodeGen/MachineRegisterInfo.h"
24#include "llvm/CodeGen/Passes.h"
25#include "llvm/Support/Debug.h"
26#include "llvm/Support/raw_ostream.h"
27#include "llvm/Target/TargetInstrInfo.h"
28using namespace llvm;
29
Lama Saba52e89252017-05-16 16:01:36 +000030namespace llvm {
31void initializeFixupLEAPassPass(PassRegistry &);
32}
33
34#define FIXUPLEA_DESC "X86 LEA Fixup"
35#define FIXUPLEA_NAME "x86-fixup-LEAs"
36
37#define DEBUG_TYPE FIXUPLEA_NAME
Chandler Carruth84e68b22014-04-22 02:41:26 +000038
Preston Gurd8b7ab4b2013-04-25 20:29:37 +000039STATISTIC(NumLEAs, "Number of LEA instructions created");
40
41namespace {
Eric Christopher31b81ce2014-06-03 21:01:35 +000042class FixupLEAPass : public MachineFunctionPass {
43 enum RegUsageState { RU_NotUsed, RU_Write, RU_Read };
Lama Saba52e89252017-05-16 16:01:36 +000044
Eric Christopher31b81ce2014-06-03 21:01:35 +000045 /// \brief Loop over all of the instructions in the basic block
46 /// replacing applicable instructions with LEA instructions,
47 /// where appropriate.
48 bool processBasicBlock(MachineFunction &MF, MachineFunction::iterator MFI);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +000049
Preston Gurd128920d2013-04-25 21:31:33 +000050
Eric Christopher31b81ce2014-06-03 21:01:35 +000051 /// \brief Given a machine register, look for the instruction
52 /// which writes it in the current basic block. If found,
53 /// try to replace it with an equivalent LEA instruction.
Eric Christopher572e03a2015-06-19 01:53:21 +000054 /// If replacement succeeds, then also process the newly created
Eric Christopher31b81ce2014-06-03 21:01:35 +000055 /// instruction.
56 void seekLEAFixup(MachineOperand &p, MachineBasicBlock::iterator &I,
57 MachineFunction::iterator MFI);
Preston Gurd128920d2013-04-25 21:31:33 +000058
Eric Christopher31b81ce2014-06-03 21:01:35 +000059 /// \brief Given a memory access or LEA instruction
60 /// whose address mode uses a base and/or index register, look for
61 /// an opportunity to replace the instruction which sets the base or index
62 /// register with an equivalent LEA instruction.
63 void processInstruction(MachineBasicBlock::iterator &I,
64 MachineFunction::iterator MFI);
Preston Gurd128920d2013-04-25 21:31:33 +000065
Eric Christopher31b81ce2014-06-03 21:01:35 +000066 /// \brief Given a LEA instruction which is unprofitable
67 /// on Silvermont try to replace it with an equivalent ADD instruction
68 void processInstructionForSLM(MachineBasicBlock::iterator &I,
69 MachineFunction::iterator MFI);
Alexey Volkov6226de62014-05-20 08:55:50 +000070
Lama Saba52e89252017-05-16 16:01:36 +000071
72 /// \brief Given a LEA instruction which is unprofitable
73 /// on SNB+ try to replace it with other instructions.
74 /// According to Intel's Optimization Reference Manual:
75 /// " For LEA instructions with three source operands and some specific
76 /// situations, instruction latency has increased to 3 cycles, and must
77 /// dispatch via port 1:
78 /// - LEA that has all three source operands: base, index, and offset
79 /// - LEA that uses base and index registers where the base is EBP, RBP,
80 /// or R13
81 /// - LEA that uses RIP relative addressing mode
82 /// - LEA that uses 16-bit addressing mode "
83 /// This function currently handles the first 2 cases only.
84 MachineInstr *processInstrForSlow3OpLEA(MachineInstr &MI,
85 MachineFunction::iterator MFI);
86
Michael Kuperstein12982a82015-11-11 11:44:31 +000087 /// \brief Look for LEAs that add 1 to reg or subtract 1 from reg
88 /// and convert them to INC or DEC respectively.
89 bool fixupIncDec(MachineBasicBlock::iterator &I,
90 MachineFunction::iterator MFI) const;
91
Eric Christopher31b81ce2014-06-03 21:01:35 +000092 /// \brief Determine if an instruction references a machine register
93 /// and, if so, whether it reads or writes the register.
94 RegUsageState usesRegister(MachineOperand &p, MachineBasicBlock::iterator I);
Preston Gurd128920d2013-04-25 21:31:33 +000095
Eric Christopher31b81ce2014-06-03 21:01:35 +000096 /// \brief Step backwards through a basic block, looking
97 /// for an instruction which writes a register within
98 /// a maximum of INSTR_DISTANCE_THRESHOLD instruction latency cycles.
99 MachineBasicBlock::iterator searchBackwards(MachineOperand &p,
100 MachineBasicBlock::iterator &I,
101 MachineFunction::iterator MFI);
Preston Gurd128920d2013-04-25 21:31:33 +0000102
Eric Christopher31b81ce2014-06-03 21:01:35 +0000103 /// \brief if an instruction can be converted to an
104 /// equivalent LEA, insert the new instruction into the basic block
105 /// and return a pointer to it. Otherwise, return zero.
106 MachineInstr *postRAConvertToLEA(MachineFunction::iterator &MFI,
107 MachineBasicBlock::iterator &MBBI) const;
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000108
Eric Christopher31b81ce2014-06-03 21:01:35 +0000109public:
Lama Saba52e89252017-05-16 16:01:36 +0000110 static char ID;
111
112 StringRef getPassName() const override { return FIXUPLEA_DESC; }
113
114 FixupLEAPass() : MachineFunctionPass(ID) {
115 initializeFixupLEAPassPass(*PassRegistry::getPassRegistry());
116 }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000117
Eric Christopher31b81ce2014-06-03 21:01:35 +0000118 /// \brief Loop over all of the basic blocks,
119 /// replacing instructions by equivalent LEA instructions
120 /// if needed and when possible.
121 bool runOnMachineFunction(MachineFunction &MF) override;
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000122
Derek Schuff1dbf7a52016-04-04 17:09:25 +0000123 // This pass runs after regalloc and doesn't support VReg operands.
124 MachineFunctionProperties getRequiredProperties() const override {
125 return MachineFunctionProperties().set(
Matthias Braun1eb47362016-08-25 01:27:13 +0000126 MachineFunctionProperties::Property::NoVRegs);
Derek Schuff1dbf7a52016-04-04 17:09:25 +0000127 }
128
Eric Christopher31b81ce2014-06-03 21:01:35 +0000129private:
130 MachineFunction *MF;
Eric Christopher31b81ce2014-06-03 21:01:35 +0000131 const X86InstrInfo *TII; // Machine instruction info.
Michael Kuperstein12982a82015-11-11 11:44:31 +0000132 bool OptIncDec;
133 bool OptLEA;
Eric Christopher31b81ce2014-06-03 21:01:35 +0000134};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000135}
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000136
Lama Saba52e89252017-05-16 16:01:36 +0000137char FixupLEAPass::ID = 0;
138
139INITIALIZE_PASS(FixupLEAPass, FIXUPLEA_NAME, FIXUPLEA_DESC, false, false)
140
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000141MachineInstr *
142FixupLEAPass::postRAConvertToLEA(MachineFunction::iterator &MFI,
Preston Gurd128920d2013-04-25 21:31:33 +0000143 MachineBasicBlock::iterator &MBBI) const {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000144 MachineInstr &MI = *MBBI;
145 switch (MI.getOpcode()) {
Alexey Volkov6226de62014-05-20 08:55:50 +0000146 case X86::MOV32rr:
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000147 case X86::MOV64rr: {
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000148 const MachineOperand &Src = MI.getOperand(1);
149 const MachineOperand &Dest = MI.getOperand(0);
150 MachineInstr *NewMI =
151 BuildMI(*MF, MI.getDebugLoc(),
152 TII->get(MI.getOpcode() == X86::MOV32rr ? X86::LEA32r
153 : X86::LEA64r))
Diana Picus116bbab2017-01-13 09:58:52 +0000154 .add(Dest)
155 .add(Src)
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000156 .addImm(1)
157 .addReg(0)
158 .addImm(0)
159 .addReg(0);
Eric Christopher31b81ce2014-06-03 21:01:35 +0000160 MFI->insert(MBBI, NewMI); // Insert the new inst
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000161 return NewMI;
162 }
163 case X86::ADD64ri32:
164 case X86::ADD64ri8:
165 case X86::ADD64ri32_DB:
166 case X86::ADD64ri8_DB:
167 case X86::ADD32ri:
168 case X86::ADD32ri8:
169 case X86::ADD32ri_DB:
170 case X86::ADD32ri8_DB:
171 case X86::ADD16ri:
172 case X86::ADD16ri8:
173 case X86::ADD16ri_DB:
174 case X86::ADD16ri8_DB:
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000175 if (!MI.getOperand(2).isImm()) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000176 // convertToThreeAddress will call getImm()
177 // which requires isImm() to be true
Craig Topper062a2ba2014-04-25 05:30:21 +0000178 return nullptr;
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000179 }
Preston Gurdf03a6e72013-09-30 23:51:22 +0000180 break;
Preston Gurdf0b62882013-09-30 23:18:42 +0000181 case X86::ADD16rr:
182 case X86::ADD16rr_DB:
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000183 if (MI.getOperand(1).getReg() != MI.getOperand(2).getReg()) {
Preston Gurdf0b62882013-09-30 23:18:42 +0000184 // if src1 != src2, then convertToThreeAddress will
185 // need to create a Virtual register, which we cannot do
186 // after register allocation.
Craig Topper062a2ba2014-04-25 05:30:21 +0000187 return nullptr;
Preston Gurdf0b62882013-09-30 23:18:42 +0000188 }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000189 }
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000190 return TII->convertToThreeAddress(MFI, MI, nullptr);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000191}
192
Eric Christopher31b81ce2014-06-03 21:01:35 +0000193FunctionPass *llvm::createX86FixupLEAs() { return new FixupLEAPass(); }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000194
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000195bool FixupLEAPass::runOnMachineFunction(MachineFunction &Func) {
Andrew Kaylor2bee5ef2016-04-26 21:44:24 +0000196 if (skipFunction(*Func.getFunction()))
197 return false;
198
Eric Christopherdd240fd2014-06-03 21:01:39 +0000199 MF = &Func;
Eric Christopher4369c9b2015-02-20 08:01:52 +0000200 const X86Subtarget &ST = Func.getSubtarget<X86Subtarget>();
Michael Kuperstein12982a82015-11-11 11:44:31 +0000201 OptIncDec = !ST.slowIncDec() || Func.getFunction()->optForMinSize();
Lama Saba52e89252017-05-16 16:01:36 +0000202 OptLEA = ST.LEAusesAG() || ST.slowLEA() || ST.slow3OpsLEA();
Michael Kuperstein12982a82015-11-11 11:44:31 +0000203
204 if (!OptLEA && !OptIncDec)
Eric Christopher0d5c99e2014-05-22 01:46:02 +0000205 return false;
206
Eric Christopherd361ff82015-02-05 19:27:01 +0000207 TII = ST.getInstrInfo();
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000208
209 DEBUG(dbgs() << "Start X86FixupLEAs\n";);
210 // Process all basic blocks.
211 for (MachineFunction::iterator I = Func.begin(), E = Func.end(); I != E; ++I)
212 processBasicBlock(Func, I);
213 DEBUG(dbgs() << "End X86FixupLEAs\n";);
214
215 return true;
216}
217
Eric Christopher31b81ce2014-06-03 21:01:35 +0000218FixupLEAPass::RegUsageState
219FixupLEAPass::usesRegister(MachineOperand &p, MachineBasicBlock::iterator I) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000220 RegUsageState RegUsage = RU_NotUsed;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000221 MachineInstr &MI = *I;
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000222
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000223 for (unsigned int i = 0; i < MI.getNumOperands(); ++i) {
224 MachineOperand &opnd = MI.getOperand(i);
Eric Christopher31b81ce2014-06-03 21:01:35 +0000225 if (opnd.isReg() && opnd.getReg() == p.getReg()) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000226 if (opnd.isDef())
227 return RU_Write;
228 RegUsage = RU_Read;
229 }
230 }
231 return RegUsage;
232}
233
234/// getPreviousInstr - Given a reference to an instruction in a basic
235/// block, return a reference to the previous instruction in the block,
236/// wrapping around to the last instruction of the block if the block
237/// branches to itself.
Eric Christopher31b81ce2014-06-03 21:01:35 +0000238static inline bool getPreviousInstr(MachineBasicBlock::iterator &I,
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000239 MachineFunction::iterator MFI) {
240 if (I == MFI->begin()) {
Duncan P. N. Exon Smithd77de642015-10-19 21:48:29 +0000241 if (MFI->isPredecessor(&*MFI)) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000242 I = --MFI->end();
243 return true;
Eric Christopher31b81ce2014-06-03 21:01:35 +0000244 } else
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000245 return false;
246 }
247 --I;
248 return true;
249}
250
Eric Christopher31b81ce2014-06-03 21:01:35 +0000251MachineBasicBlock::iterator
252FixupLEAPass::searchBackwards(MachineOperand &p, MachineBasicBlock::iterator &I,
253 MachineFunction::iterator MFI) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000254 int InstrDistance = 1;
255 MachineBasicBlock::iterator CurInst;
256 static const int INSTR_DISTANCE_THRESHOLD = 5;
257
258 CurInst = I;
259 bool Found;
260 Found = getPreviousInstr(CurInst, MFI);
Eric Christopher31b81ce2014-06-03 21:01:35 +0000261 while (Found && I != CurInst) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000262 if (CurInst->isCall() || CurInst->isInlineAsm())
263 break;
264 if (InstrDistance > INSTR_DISTANCE_THRESHOLD)
265 break; // too far back to make a difference
Eric Christopher31b81ce2014-06-03 21:01:35 +0000266 if (usesRegister(p, CurInst) == RU_Write) {
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000267 return CurInst;
268 }
Eric Christopherd9134482014-08-04 21:25:23 +0000269 InstrDistance += TII->getInstrLatency(
Duncan P. N. Exon Smith9cfc75c2016-06-30 00:01:54 +0000270 MF->getSubtarget().getInstrItineraryData(), *CurInst);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000271 Found = getPreviousInstr(CurInst, MFI);
272 }
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000273 return MachineBasicBlock::iterator();
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000274}
275
Lama Saba52e89252017-05-16 16:01:36 +0000276static inline bool isLEA(const int Opcode) {
277 return Opcode == X86::LEA16r || Opcode == X86::LEA32r ||
278 Opcode == X86::LEA64r || Opcode == X86::LEA64_32r;
279}
280
281static inline bool isInefficientLEAReg(unsigned int Reg) {
282 return Reg == X86::EBP || Reg == X86::RBP || Reg == X86::R13;
283}
284
285static inline bool isRegOperand(const MachineOperand &Op) {
286 return Op.isReg() && Op.getReg() != X86::NoRegister;
287}
288/// hasIneffecientLEARegs - LEA that uses base and index registers
289/// where the base is EBP, RBP, or R13
290static inline bool hasInefficientLEABaseReg(const MachineOperand &Base,
291 const MachineOperand &Index) {
292 return Base.isReg() && isInefficientLEAReg(Base.getReg()) &&
293 isRegOperand(Index);
294}
295
296static inline bool hasLEAOffset(const MachineOperand &Offset) {
297 return (Offset.isImm() && Offset.getImm() != 0) || Offset.isGlobal();
298}
299
300// LEA instruction that has all three operands: offset, base and index
301static inline bool isThreeOperandsLEA(const MachineOperand &Base,
302 const MachineOperand &Index,
303 const MachineOperand &Offset) {
304 return isRegOperand(Base) && isRegOperand(Index) && hasLEAOffset(Offset);
305}
306
307static inline int getADDrrFromLEA(int LEAOpcode) {
308 switch (LEAOpcode) {
309 default:
310 llvm_unreachable("Unexpected LEA instruction");
311 case X86::LEA16r:
312 return X86::ADD16rr;
313 case X86::LEA32r:
314 return X86::ADD32rr;
315 case X86::LEA64_32r:
316 case X86::LEA64r:
317 return X86::ADD64rr;
318 }
319}
320
321static inline int getADDriFromLEA(int LEAOpcode, const MachineOperand &Offset) {
322 bool IsInt8 = Offset.isImm() && isInt<8>(Offset.getImm());
323 switch (LEAOpcode) {
324 default:
325 llvm_unreachable("Unexpected LEA instruction");
326 case X86::LEA16r:
327 return IsInt8 ? X86::ADD16ri8 : X86::ADD16ri;
328 case X86::LEA32r:
329 case X86::LEA64_32r:
330 return IsInt8 ? X86::ADD32ri8 : X86::ADD32ri;
331 case X86::LEA64r:
332 return IsInt8 ? X86::ADD64ri8 : X86::ADD64ri32;
333 }
Michael Kuperstein12982a82015-11-11 11:44:31 +0000334}
335
336/// isLEASimpleIncOrDec - Does this LEA have one these forms:
337/// lea %reg, 1(%reg)
338/// lea %reg, -1(%reg)
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000339static inline bool isLEASimpleIncOrDec(MachineInstr &LEA) {
340 unsigned SrcReg = LEA.getOperand(1 + X86::AddrBaseReg).getReg();
341 unsigned DstReg = LEA.getOperand(0).getReg();
Michael Kuperstein12982a82015-11-11 11:44:31 +0000342 unsigned AddrDispOp = 1 + X86::AddrDisp;
343 return SrcReg == DstReg &&
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000344 LEA.getOperand(1 + X86::AddrIndexReg).getReg() == 0 &&
345 LEA.getOperand(1 + X86::AddrSegmentReg).getReg() == 0 &&
346 LEA.getOperand(AddrDispOp).isImm() &&
347 (LEA.getOperand(AddrDispOp).getImm() == 1 ||
348 LEA.getOperand(AddrDispOp).getImm() == -1);
Michael Kuperstein12982a82015-11-11 11:44:31 +0000349}
350
351bool FixupLEAPass::fixupIncDec(MachineBasicBlock::iterator &I,
352 MachineFunction::iterator MFI) const {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000353 MachineInstr &MI = *I;
354 int Opcode = MI.getOpcode();
Michael Kuperstein12982a82015-11-11 11:44:31 +0000355 if (!isLEA(Opcode))
356 return false;
357
358 if (isLEASimpleIncOrDec(MI) && TII->isSafeToClobberEFLAGS(*MFI, I)) {
359 int NewOpcode;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000360 bool isINC = MI.getOperand(4).getImm() == 1;
Michael Kuperstein12982a82015-11-11 11:44:31 +0000361 switch (Opcode) {
362 case X86::LEA16r:
363 NewOpcode = isINC ? X86::INC16r : X86::DEC16r;
364 break;
365 case X86::LEA32r:
366 case X86::LEA64_32r:
367 NewOpcode = isINC ? X86::INC32r : X86::DEC32r;
368 break;
369 case X86::LEA64r:
370 NewOpcode = isINC ? X86::INC64r : X86::DEC64r;
371 break;
372 }
373
374 MachineInstr *NewMI =
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000375 BuildMI(*MFI, I, MI.getDebugLoc(), TII->get(NewOpcode))
Diana Picus116bbab2017-01-13 09:58:52 +0000376 .add(MI.getOperand(0))
377 .add(MI.getOperand(1));
Michael Kuperstein12982a82015-11-11 11:44:31 +0000378 MFI->erase(I);
379 I = static_cast<MachineBasicBlock::iterator>(NewMI);
380 return true;
381 }
382 return false;
383}
384
Eric Christopher31b81ce2014-06-03 21:01:35 +0000385void FixupLEAPass::processInstruction(MachineBasicBlock::iterator &I,
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000386 MachineFunction::iterator MFI) {
387 // Process a load, store, or LEA instruction.
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000388 MachineInstr &MI = *I;
389 const MCInstrDesc &Desc = MI.getDesc();
Craig Topper477649a2016-04-28 05:58:46 +0000390 int AddrOffset = X86II::getMemoryOperandNo(Desc.TSFlags);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000391 if (AddrOffset >= 0) {
392 AddrOffset += X86II::getOperandBias(Desc);
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000393 MachineOperand &p = MI.getOperand(AddrOffset + X86::AddrBaseReg);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000394 if (p.isReg() && p.getReg() != X86::ESP) {
395 seekLEAFixup(p, I, MFI);
396 }
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000397 MachineOperand &q = MI.getOperand(AddrOffset + X86::AddrIndexReg);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000398 if (q.isReg() && q.getReg() != X86::ESP) {
399 seekLEAFixup(q, I, MFI);
400 }
401 }
402}
403
Eric Christopher31b81ce2014-06-03 21:01:35 +0000404void FixupLEAPass::seekLEAFixup(MachineOperand &p,
405 MachineBasicBlock::iterator &I,
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000406 MachineFunction::iterator MFI) {
407 MachineBasicBlock::iterator MBI = searchBackwards(p, I, MFI);
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000408 if (MBI != MachineBasicBlock::iterator()) {
Eric Christopher31b81ce2014-06-03 21:01:35 +0000409 MachineInstr *NewMI = postRAConvertToLEA(MFI, MBI);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000410 if (NewMI) {
411 ++NumLEAs;
Alexey Volkov6226de62014-05-20 08:55:50 +0000412 DEBUG(dbgs() << "FixLEA: Candidate to replace:"; MBI->dump(););
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000413 // now to replace with an equivalent LEA...
Alexey Volkov6226de62014-05-20 08:55:50 +0000414 DEBUG(dbgs() << "FixLEA: Replaced by: "; NewMI->dump(););
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000415 MFI->erase(MBI);
416 MachineBasicBlock::iterator J =
Eric Christopher31b81ce2014-06-03 21:01:35 +0000417 static_cast<MachineBasicBlock::iterator>(NewMI);
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000418 processInstruction(J, MFI);
419 }
420 }
421}
422
Alexey Volkov6226de62014-05-20 08:55:50 +0000423void FixupLEAPass::processInstructionForSLM(MachineBasicBlock::iterator &I,
424 MachineFunction::iterator MFI) {
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000425 MachineInstr &MI = *I;
Lama Saba52e89252017-05-16 16:01:36 +0000426 const int Opcode = MI.getOpcode();
427 if (!isLEA(Opcode))
Alexey Volkov6226de62014-05-20 08:55:50 +0000428 return;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000429 if (MI.getOperand(5).getReg() != 0 || !MI.getOperand(4).isImm() ||
Alexey Volkov6226de62014-05-20 08:55:50 +0000430 !TII->isSafeToClobberEFLAGS(*MFI, I))
431 return;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000432 const unsigned DstR = MI.getOperand(0).getReg();
433 const unsigned SrcR1 = MI.getOperand(1).getReg();
434 const unsigned SrcR2 = MI.getOperand(3).getReg();
Alexey Volkov6226de62014-05-20 08:55:50 +0000435 if ((SrcR1 == 0 || SrcR1 != DstR) && (SrcR2 == 0 || SrcR2 != DstR))
436 return;
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000437 if (MI.getOperand(2).getImm() > 1)
Alexey Volkov6226de62014-05-20 08:55:50 +0000438 return;
Alexey Volkov6226de62014-05-20 08:55:50 +0000439 DEBUG(dbgs() << "FixLEA: Candidate to replace:"; I->dump(););
440 DEBUG(dbgs() << "FixLEA: Replaced by: ";);
Craig Topper66f09ad2014-06-08 22:29:17 +0000441 MachineInstr *NewMI = nullptr;
Alexey Volkov6226de62014-05-20 08:55:50 +0000442 // Make ADD instruction for two registers writing to LEA's destination
443 if (SrcR1 != 0 && SrcR2 != 0) {
Lama Saba52e89252017-05-16 16:01:36 +0000444 const MCInstrDesc &ADDrr = TII->get(getADDrrFromLEA(Opcode));
445 const MachineOperand &Src = MI.getOperand(SrcR1 == DstR ? 3 : 1);
446 NewMI =
447 BuildMI(*MFI, I, MI.getDebugLoc(), ADDrr, DstR).addReg(DstR).add(Src);
Alexey Volkov6226de62014-05-20 08:55:50 +0000448 DEBUG(NewMI->dump(););
449 }
450 // Make ADD instruction for immediate
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000451 if (MI.getOperand(4).getImm() != 0) {
Lama Saba52e89252017-05-16 16:01:36 +0000452 const MCInstrDesc &ADDri =
453 TII->get(getADDriFromLEA(Opcode, MI.getOperand(4)));
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000454 const MachineOperand &SrcR = MI.getOperand(SrcR1 == DstR ? 1 : 3);
Lama Saba52e89252017-05-16 16:01:36 +0000455 NewMI = BuildMI(*MFI, I, MI.getDebugLoc(), ADDri, DstR)
Diana Picus116bbab2017-01-13 09:58:52 +0000456 .add(SrcR)
Duncan P. N. Exon Smith7b4c18e2016-07-12 03:18:50 +0000457 .addImm(MI.getOperand(4).getImm());
Alexey Volkov6226de62014-05-20 08:55:50 +0000458 DEBUG(NewMI->dump(););
459 }
460 if (NewMI) {
461 MFI->erase(I);
Lama Saba52e89252017-05-16 16:01:36 +0000462 I = NewMI;
Alexey Volkov6226de62014-05-20 08:55:50 +0000463 }
464}
465
Lama Saba52e89252017-05-16 16:01:36 +0000466MachineInstr *
467FixupLEAPass::processInstrForSlow3OpLEA(MachineInstr &MI,
468 MachineFunction::iterator MFI) {
469
470 const int LEAOpcode = MI.getOpcode();
471 if (!isLEA(LEAOpcode))
472 return nullptr;
473
474 const MachineOperand &Dst = MI.getOperand(0);
475 const MachineOperand &Base = MI.getOperand(1);
476 const MachineOperand &Scale = MI.getOperand(2);
477 const MachineOperand &Index = MI.getOperand(3);
478 const MachineOperand &Offset = MI.getOperand(4);
479 const MachineOperand &Segment = MI.getOperand(5);
480
481 if (!(isThreeOperandsLEA(Base, Index, Offset) ||
482 hasInefficientLEABaseReg(Base, Index)) ||
483 !TII->isSafeToClobberEFLAGS(*MFI, MI) ||
484 Segment.getReg() != X86::NoRegister)
485 return nullptr;
486
487 unsigned int DstR = Dst.getReg();
488 unsigned int BaseR = Base.getReg();
489 unsigned int IndexR = Index.getReg();
490 unsigned SSDstR =
491 (LEAOpcode == X86::LEA64_32r) ? getX86SubSuperRegister(DstR, 64) : DstR;
492 bool IsScale1 = Scale.getImm() == 1;
493 bool IsInefficientBase = isInefficientLEAReg(BaseR);
494 bool IsInefficientIndex = isInefficientLEAReg(IndexR);
495
496 // Skip these cases since it takes more than 2 instructions
497 // to replace the LEA instruction.
498 if (IsInefficientBase && SSDstR == BaseR && !IsScale1)
499 return nullptr;
500 if (LEAOpcode == X86::LEA64_32r && IsInefficientBase &&
501 (IsInefficientIndex || !IsScale1))
502 return nullptr;
503
504 const DebugLoc DL = MI.getDebugLoc();
505 const MCInstrDesc &ADDrr = TII->get(getADDrrFromLEA(LEAOpcode));
506 const MCInstrDesc &ADDri = TII->get(getADDriFromLEA(LEAOpcode, Offset));
507
508 DEBUG(dbgs() << "FixLEA: Candidate to replace:"; MI.dump(););
509 DEBUG(dbgs() << "FixLEA: Replaced by: ";);
510
511 // First try to replace LEA with one or two (for the 3-op LEA case)
512 // add instructions:
513 // 1.lea (%base,%index,1), %base => add %index,%base
514 // 2.lea (%base,%index,1), %index => add %base,%index
515 if (IsScale1 && (DstR == BaseR || DstR == IndexR)) {
516 const MachineOperand &Src = DstR == BaseR ? Index : Base;
517 MachineInstr *NewMI =
518 BuildMI(*MFI, MI, DL, ADDrr, DstR).addReg(DstR).add(Src);
519 DEBUG(NewMI->dump(););
520 // Create ADD instruction for the Offset in case of 3-Ops LEA.
521 if (hasLEAOffset(Offset)) {
522 NewMI = BuildMI(*MFI, MI, DL, ADDri, DstR).addReg(DstR).add(Offset);
523 DEBUG(NewMI->dump(););
524 }
525 return NewMI;
526 }
527 // If the base is inefficient try switching the index and base operands,
528 // otherwise just break the 3-Ops LEA inst into 2-Ops LEA + ADD instruction:
529 // lea offset(%base,%index,scale),%dst =>
530 // lea (%base,%index,scale); add offset,%dst
531 if (!IsInefficientBase || (!IsInefficientIndex && IsScale1)) {
532 MachineInstr *NewMI = BuildMI(*MFI, MI, DL, TII->get(LEAOpcode))
533 .add(Dst)
534 .add(IsInefficientBase ? Index : Base)
535 .add(Scale)
536 .add(IsInefficientBase ? Base : Index)
537 .addImm(0)
538 .add(Segment);
539 DEBUG(NewMI->dump(););
540 // Create ADD instruction for the Offset in case of 3-Ops LEA.
541 if (hasLEAOffset(Offset)) {
542 NewMI = BuildMI(*MFI, MI, DL, ADDri, DstR).addReg(DstR).add(Offset);
543 DEBUG(NewMI->dump(););
544 }
545 return NewMI;
546 }
547 // Handle the rest of the cases with inefficient base register:
548 assert(SSDstR != BaseR && "SSDstR == BaseR should be handled already!");
549 assert(IsInefficientBase && "efficient base should be handled already!");
550
551 // lea (%base,%index,1), %dst => mov %base,%dst; add %index,%dst
552 if (IsScale1 && !hasLEAOffset(Offset)) {
553 TII->copyPhysReg(*MFI, MI, DL, DstR, BaseR, Base.isKill());
554 DEBUG(MI.getPrevNode()->dump(););
555
556 MachineInstr *NewMI =
557 BuildMI(*MFI, MI, DL, ADDrr, DstR).addReg(DstR).add(Index);
558 DEBUG(NewMI->dump(););
559 return NewMI;
560 }
561 // lea offset(%base,%index,scale), %dst =>
562 // lea offset( ,%index,scale), %dst; add %base,%dst
563 MachineInstr *NewMI = BuildMI(*MFI, MI, DL, TII->get(LEAOpcode))
564 .add(Dst)
565 .addReg(0)
566 .add(Scale)
567 .add(Index)
568 .add(Offset)
569 .add(Segment);
570 DEBUG(NewMI->dump(););
571
572 NewMI = BuildMI(*MFI, MI, DL, ADDrr, DstR).addReg(DstR).add(Base);
573 DEBUG(NewMI->dump(););
574 return NewMI;
575}
576
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000577bool FixupLEAPass::processBasicBlock(MachineFunction &MF,
578 MachineFunction::iterator MFI) {
579
Alexey Volkov6226de62014-05-20 08:55:50 +0000580 for (MachineBasicBlock::iterator I = MFI->begin(); I != MFI->end(); ++I) {
Michael Kuperstein12982a82015-11-11 11:44:31 +0000581 if (OptIncDec)
582 if (fixupIncDec(I, MFI))
583 continue;
584
585 if (OptLEA) {
586 if (MF.getSubtarget<X86Subtarget>().isSLM())
587 processInstructionForSLM(I, MFI);
Lama Saba52e89252017-05-16 16:01:36 +0000588
589 else {
590 if (MF.getSubtarget<X86Subtarget>().slow3OpsLEA()) {
591 if (auto *NewMI = processInstrForSlow3OpLEA(*I, MFI)) {
592 MFI->erase(I);
593 I = NewMI;
594 }
595 } else
596 processInstruction(I, MFI);
597 }
Michael Kuperstein12982a82015-11-11 11:44:31 +0000598 }
Alexey Volkov6226de62014-05-20 08:55:50 +0000599 }
Preston Gurd8b7ab4b2013-04-25 20:29:37 +0000600 return false;
601}