blob: 93dcbe233b252efc9c32e25cbc30ad4d4852fcde [file] [log] [blame]
Sirish Pande30804c22012-02-15 18:52:27 +00001//===-- HexagonPeephole.cpp - Hexagon Peephole Optimiztions ---------------===//
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// This peephole pass optimizes in the following cases.
9// 1. Optimizes redundant sign extends for the following case
10// Transform the following pattern
11// %vreg170<def> = SXTW %vreg166
12// ...
13// %vreg176<def> = COPY %vreg170:subreg_loreg
14//
15// Into
16// %vreg176<def> = COPY vreg166
17//
18// 2. Optimizes redundant negation of predicates.
19// %vreg15<def> = CMPGTrr %vreg6, %vreg2
20// ...
21// %vreg16<def> = NOT_p %vreg15<kill>
22// ...
23// JMP_c %vreg16<kill>, <BB#1>, %PC<imp-def,dead>
24//
25// Into
26// %vreg15<def> = CMPGTrr %vreg6, %vreg2;
27// ...
28// JMP_cNot %vreg15<kill>, <BB#1>, %PC<imp-def,dead>;
29//
30// Note: The peephole pass makes the instrucstions like
31// %vreg170<def> = SXTW %vreg166 or %vreg16<def> = NOT_p %vreg15<kill>
Robert Wilhelm2788d3e2013-09-28 13:42:22 +000032// redundant and relies on some form of dead removal instructions, like
Sirish Pande30804c22012-02-15 18:52:27 +000033// DCE or DIE to actually eliminate them.
34
35
36//===----------------------------------------------------------------------===//
37
Craig Topperb25fda92012-03-17 18:46:09 +000038#include "Hexagon.h"
39#include "HexagonTargetMachine.h"
Sirish Pande30804c22012-02-15 18:52:27 +000040#include "llvm/ADT/DenseMap.h"
41#include "llvm/ADT/Statistic.h"
Sirish Pande30804c22012-02-15 18:52:27 +000042#include "llvm/CodeGen/MachineFunction.h"
43#include "llvm/CodeGen/MachineFunctionPass.h"
44#include "llvm/CodeGen/MachineInstrBuilder.h"
45#include "llvm/CodeGen/MachineRegisterInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000046#include "llvm/CodeGen/Passes.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000047#include "llvm/IR/Constants.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000048#include "llvm/PassSupport.h"
Craig Topperb25fda92012-03-17 18:46:09 +000049#include "llvm/Support/CommandLine.h"
Sirish Pande30804c22012-02-15 18:52:27 +000050#include "llvm/Support/Debug.h"
51#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000052#include "llvm/Target/TargetInstrInfo.h"
Sirish Pande30804c22012-02-15 18:52:27 +000053#include "llvm/Target/TargetMachine.h"
54#include "llvm/Target/TargetRegisterInfo.h"
Sirish Pande30804c22012-02-15 18:52:27 +000055#include <algorithm>
Sirish Pande30804c22012-02-15 18:52:27 +000056
57using namespace llvm;
58
Chandler Carruth84e68b22014-04-22 02:41:26 +000059#define DEBUG_TYPE "hexagon-peephole"
60
Sirish Pande30804c22012-02-15 18:52:27 +000061static cl::opt<bool> DisableHexagonPeephole("disable-hexagon-peephole",
62 cl::Hidden, cl::ZeroOrMore, cl::init(false),
63 cl::desc("Disable Peephole Optimization"));
64
Sirish Pande30804c22012-02-15 18:52:27 +000065static cl::opt<bool> DisablePNotP("disable-hexagon-pnotp",
66 cl::Hidden, cl::ZeroOrMore, cl::init(false),
67 cl::desc("Disable Optimization of PNotP"));
68
69static cl::opt<bool> DisableOptSZExt("disable-hexagon-optszext",
70 cl::Hidden, cl::ZeroOrMore, cl::init(false),
71 cl::desc("Disable Optimization of Sign/Zero Extends"));
72
Pranav Bhandarkar7dda9122013-05-02 20:22:51 +000073static cl::opt<bool> DisableOptExtTo64("disable-hexagon-opt-ext-to-64",
74 cl::Hidden, cl::ZeroOrMore, cl::init(false),
75 cl::desc("Disable Optimization of extensions to i64."));
76
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +000077namespace llvm {
Colin LeMahieu56efafc2015-06-15 19:05:35 +000078 FunctionPass *createHexagonPeephole();
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +000079 void initializeHexagonPeepholePass(PassRegistry&);
80}
81
Sirish Pande30804c22012-02-15 18:52:27 +000082namespace {
83 struct HexagonPeephole : public MachineFunctionPass {
84 const HexagonInstrInfo *QII;
85 const HexagonRegisterInfo *QRI;
86 const MachineRegisterInfo *MRI;
87
88 public:
89 static char ID;
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +000090 HexagonPeephole() : MachineFunctionPass(ID) {
91 initializeHexagonPeepholePass(*PassRegistry::getPassRegistry());
92 }
Sirish Pande30804c22012-02-15 18:52:27 +000093
Craig Topper906c2cd2014-04-29 07:58:16 +000094 bool runOnMachineFunction(MachineFunction &MF) override;
Sirish Pande30804c22012-02-15 18:52:27 +000095
Craig Topper906c2cd2014-04-29 07:58:16 +000096 const char *getPassName() const override {
Sirish Pande30804c22012-02-15 18:52:27 +000097 return "Hexagon optimize redundant zero and size extends";
98 }
99
Craig Topper906c2cd2014-04-29 07:58:16 +0000100 void getAnalysisUsage(AnalysisUsage &AU) const override {
Sirish Pande30804c22012-02-15 18:52:27 +0000101 MachineFunctionPass::getAnalysisUsage(AU);
102 }
103
104 private:
105 void ChangeOpInto(MachineOperand &Dst, MachineOperand &Src);
106 };
107}
108
109char HexagonPeephole::ID = 0;
110
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +0000111INITIALIZE_PASS(HexagonPeephole, "hexagon-peephole", "Hexagon Peephole",
112 false, false)
Sirish Pande30804c22012-02-15 18:52:27 +0000113
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +0000114bool HexagonPeephole::runOnMachineFunction(MachineFunction &MF) {
Eric Christopherfc6de422014-08-05 02:39:49 +0000115 QII = static_cast<const HexagonInstrInfo *>(MF.getSubtarget().getInstrInfo());
Eric Christopherd5c235d2015-02-02 22:40:56 +0000116 QRI = MF.getSubtarget<HexagonSubtarget>().getRegisterInfo();
Sirish Pande30804c22012-02-15 18:52:27 +0000117 MRI = &MF.getRegInfo();
118
119 DenseMap<unsigned, unsigned> PeepholeMap;
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000120 DenseMap<unsigned, std::pair<unsigned, unsigned> > PeepholeDoubleRegsMap;
Sirish Pande30804c22012-02-15 18:52:27 +0000121
122 if (DisableHexagonPeephole) return false;
123
124 // Loop over all of the basic blocks.
125 for (MachineFunction::iterator MBBb = MF.begin(), MBBe = MF.end();
126 MBBb != MBBe; ++MBBb) {
127 MachineBasicBlock* MBB = MBBb;
128 PeepholeMap.clear();
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000129 PeepholeDoubleRegsMap.clear();
Sirish Pande30804c22012-02-15 18:52:27 +0000130
131 // Traverse the basic block.
132 for (MachineBasicBlock::iterator MII = MBB->begin(); MII != MBB->end();
133 ++MII) {
134 MachineInstr *MI = MII;
135 // Look for sign extends:
136 // %vreg170<def> = SXTW %vreg166
Colin LeMahieueb52f692014-12-11 16:43:06 +0000137 if (!DisableOptSZExt && MI->getOpcode() == Hexagon::A2_sxtw) {
Sirish Pande30804c22012-02-15 18:52:27 +0000138 assert (MI->getNumOperands() == 2);
139 MachineOperand &Dst = MI->getOperand(0);
140 MachineOperand &Src = MI->getOperand(1);
141 unsigned DstReg = Dst.getReg();
142 unsigned SrcReg = Src.getReg();
143 // Just handle virtual registers.
144 if (TargetRegisterInfo::isVirtualRegister(DstReg) &&
145 TargetRegisterInfo::isVirtualRegister(SrcReg)) {
146 // Map the following:
147 // %vreg170<def> = SXTW %vreg166
148 // PeepholeMap[170] = vreg166
149 PeepholeMap[DstReg] = SrcReg;
150 }
151 }
152
Pranav Bhandarkar7dda9122013-05-02 20:22:51 +0000153 // Look for %vreg170<def> = COMBINE_ir_V4 (0, %vreg169)
154 // %vreg170:DoublRegs, %vreg169:IntRegs
155 if (!DisableOptExtTo64 &&
Colin LeMahieu82fb8cb2014-12-30 17:53:54 +0000156 MI->getOpcode () == Hexagon::A4_combineir) {
Pranav Bhandarkar7dda9122013-05-02 20:22:51 +0000157 assert (MI->getNumOperands() == 3);
158 MachineOperand &Dst = MI->getOperand(0);
159 MachineOperand &Src1 = MI->getOperand(1);
160 MachineOperand &Src2 = MI->getOperand(2);
161 if (Src1.getImm() != 0)
162 continue;
163 unsigned DstReg = Dst.getReg();
164 unsigned SrcReg = Src2.getReg();
165 PeepholeMap[DstReg] = SrcReg;
166 }
167
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000168 // Look for this sequence below
169 // %vregDoubleReg1 = LSRd_ri %vregDoubleReg0, 32
170 // %vregIntReg = COPY %vregDoubleReg1:subreg_loreg.
171 // and convert into
172 // %vregIntReg = COPY %vregDoubleReg0:subreg_hireg.
Colin LeMahieuaa1bade2014-12-16 23:36:15 +0000173 if (MI->getOpcode() == Hexagon::S2_lsr_i_p) {
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000174 assert(MI->getNumOperands() == 3);
175 MachineOperand &Dst = MI->getOperand(0);
176 MachineOperand &Src1 = MI->getOperand(1);
177 MachineOperand &Src2 = MI->getOperand(2);
178 if (Src2.getImm() != 32)
179 continue;
180 unsigned DstReg = Dst.getReg();
181 unsigned SrcReg = Src1.getReg();
182 PeepholeDoubleRegsMap[DstReg] =
183 std::make_pair(*&SrcReg, 1/*Hexagon::subreg_hireg*/);
184 }
185
Sirish Pande30804c22012-02-15 18:52:27 +0000186 // Look for P=NOT(P).
187 if (!DisablePNotP &&
Colin LeMahieu5cf56322014-12-08 23:55:43 +0000188 (MI->getOpcode() == Hexagon::C2_not)) {
Sirish Pande30804c22012-02-15 18:52:27 +0000189 assert (MI->getNumOperands() == 2);
190 MachineOperand &Dst = MI->getOperand(0);
191 MachineOperand &Src = MI->getOperand(1);
192 unsigned DstReg = Dst.getReg();
193 unsigned SrcReg = Src.getReg();
194 // Just handle virtual registers.
195 if (TargetRegisterInfo::isVirtualRegister(DstReg) &&
196 TargetRegisterInfo::isVirtualRegister(SrcReg)) {
197 // Map the following:
198 // %vreg170<def> = NOT_xx %vreg166
199 // PeepholeMap[170] = vreg166
200 PeepholeMap[DstReg] = SrcReg;
201 }
202 }
203
204 // Look for copy:
205 // %vreg176<def> = COPY %vreg170:subreg_loreg
206 if (!DisableOptSZExt && MI->isCopy()) {
207 assert (MI->getNumOperands() == 2);
208 MachineOperand &Dst = MI->getOperand(0);
209 MachineOperand &Src = MI->getOperand(1);
210
211 // Make sure we are copying the lower 32 bits.
212 if (Src.getSubReg() != Hexagon::subreg_loreg)
213 continue;
214
215 unsigned DstReg = Dst.getReg();
216 unsigned SrcReg = Src.getReg();
217 if (TargetRegisterInfo::isVirtualRegister(DstReg) &&
218 TargetRegisterInfo::isVirtualRegister(SrcReg)) {
219 // Try to find in the map.
220 if (unsigned PeepholeSrc = PeepholeMap.lookup(SrcReg)) {
221 // Change the 1st operand.
222 MI->RemoveOperand(1);
223 MI->addOperand(MachineOperand::CreateReg(PeepholeSrc, false));
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000224 } else {
225 DenseMap<unsigned, std::pair<unsigned, unsigned> >::iterator DI =
226 PeepholeDoubleRegsMap.find(SrcReg);
227 if (DI != PeepholeDoubleRegsMap.end()) {
228 std::pair<unsigned,unsigned> PeepholeSrc = DI->second;
229 MI->RemoveOperand(1);
230 MI->addOperand(MachineOperand::CreateReg(PeepholeSrc.first,
231 false /*isDef*/,
232 false /*isImp*/,
233 false /*isKill*/,
234 false /*isDead*/,
235 false /*isUndef*/,
236 false /*isEarlyClobber*/,
237 PeepholeSrc.second));
238 }
Sirish Pande30804c22012-02-15 18:52:27 +0000239 }
240 }
241 }
242
243 // Look for Predicated instructions.
244 if (!DisablePNotP) {
245 bool Done = false;
246 if (QII->isPredicated(MI)) {
247 MachineOperand &Op0 = MI->getOperand(0);
248 unsigned Reg0 = Op0.getReg();
249 const TargetRegisterClass *RC0 = MRI->getRegClass(Reg0);
250 if (RC0->getID() == Hexagon::PredRegsRegClassID) {
251 // Handle instructions that have a prediate register in op0
252 // (most cases of predicable instructions).
253 if (TargetRegisterInfo::isVirtualRegister(Reg0)) {
254 // Try to find in the map.
255 if (unsigned PeepholeSrc = PeepholeMap.lookup(Reg0)) {
256 // Change the 1st operand and, flip the opcode.
257 MI->getOperand(0).setReg(PeepholeSrc);
258 int NewOp = QII->getInvertedPredicatedOpcode(MI->getOpcode());
259 MI->setDesc(QII->get(NewOp));
260 Done = true;
261 }
262 }
263 }
264 }
265
266 if (!Done) {
267 // Handle special instructions.
268 unsigned Op = MI->getOpcode();
269 unsigned NewOp = 0;
270 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices.
271
272 switch (Op) {
Colin LeMahieue83bc742014-11-25 20:20:09 +0000273 case Hexagon::C2_mux:
Colin LeMahieu9665f982014-12-05 21:09:27 +0000274 case Hexagon::C2_muxii:
Sirish Pande30804c22012-02-15 18:52:27 +0000275 NewOp = Op;
276 break;
Colin LeMahieu9665f982014-12-05 21:09:27 +0000277 case Hexagon::C2_muxri:
278 NewOp = Hexagon::C2_muxir;
Sirish Pande30804c22012-02-15 18:52:27 +0000279 break;
Colin LeMahieu9665f982014-12-05 21:09:27 +0000280 case Hexagon::C2_muxir:
281 NewOp = Hexagon::C2_muxri;
Sirish Pande30804c22012-02-15 18:52:27 +0000282 break;
283 }
284 if (NewOp) {
285 unsigned PSrc = MI->getOperand(PR).getReg();
286 if (unsigned POrig = PeepholeMap.lookup(PSrc)) {
287 MI->getOperand(PR).setReg(POrig);
288 MI->setDesc(QII->get(NewOp));
289 // Swap operands S1 and S2.
290 MachineOperand Op1 = MI->getOperand(S1);
291 MachineOperand Op2 = MI->getOperand(S2);
292 ChangeOpInto(MI->getOperand(S1), Op2);
293 ChangeOpInto(MI->getOperand(S2), Op1);
294 }
295 } // if (NewOp)
296 } // if (!Done)
297
298 } // if (!DisablePNotP)
299
300 } // Instruction
301 } // Basic Block
302 return true;
303}
304
305void HexagonPeephole::ChangeOpInto(MachineOperand &Dst, MachineOperand &Src) {
306 assert (&Dst != &Src && "Cannot duplicate into itself");
307 switch (Dst.getType()) {
308 case MachineOperand::MO_Register:
309 if (Src.isReg()) {
310 Dst.setReg(Src.getReg());
311 } else if (Src.isImm()) {
312 Dst.ChangeToImmediate(Src.getImm());
313 } else {
314 llvm_unreachable("Unexpected src operand type");
315 }
316 break;
317
318 case MachineOperand::MO_Immediate:
319 if (Src.isImm()) {
320 Dst.setImm(Src.getImm());
321 } else if (Src.isReg()) {
322 Dst.ChangeToRegister(Src.getReg(), Src.isDef(), Src.isImplicit(),
323 Src.isKill(), Src.isDead(), Src.isUndef(),
324 Src.isDebug());
325 } else {
326 llvm_unreachable("Unexpected src operand type");
327 }
328 break;
329
330 default:
331 llvm_unreachable("Unexpected dst operand type");
332 break;
333 }
334}
335
336FunctionPass *llvm::createHexagonPeephole() {
337 return new HexagonPeephole();
338}