blob: 7d961a238ae2887586397cf300e949df89a6095a [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// ...
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +000013// %vreg176<def> = COPY %vreg170:isub_lo
Sirish Pande30804c22012-02-15 18:52:27 +000014//
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",
Krzysztof Parzyszek3af70c12016-04-19 21:36:24 +000070 cl::Hidden, cl::ZeroOrMore, cl::init(true),
Sirish Pande30804c22012-02-15 18:52:27 +000071 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",
Krzysztof Parzyszek3af70c12016-04-19 21:36:24 +000074 cl::Hidden, cl::ZeroOrMore, cl::init(true),
Pranav Bhandarkar7dda9122013-05-02 20:22:51 +000075 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
Mehdi Amini117296c2016-10-01 02:56:57 +000096 StringRef 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 }
Sirish Pande30804c22012-02-15 18:52:27 +0000103 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000104}
Sirish Pande30804c22012-02-15 18:52:27 +0000105
106char HexagonPeephole::ID = 0;
107
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +0000108INITIALIZE_PASS(HexagonPeephole, "hexagon-peephole", "Hexagon Peephole",
109 false, false)
Sirish Pande30804c22012-02-15 18:52:27 +0000110
Krzysztof Parzyszek18ee1192013-05-06 21:58:00 +0000111bool HexagonPeephole::runOnMachineFunction(MachineFunction &MF) {
Andrew Kaylor5b444a22016-04-26 19:46:28 +0000112 if (skipFunction(*MF.getFunction()))
113 return false;
114
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) {
Duncan P. N. Exon Smitha72c6e22015-10-20 00:46:39 +0000127 MachineBasicBlock *MBB = &*MBBb;
Sirish Pande30804c22012-02-15 18:52:27 +0000128 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.
Krzysztof Parzyszek5b933fe2017-06-21 21:03:34 +0000132 for (auto I = MBB->begin(), E = MBB->end(), NextI = I; I != E; I = NextI) {
133 NextI = std::next(I);
134 MachineInstr &MI = *I;
Sirish Pande30804c22012-02-15 18:52:27 +0000135 // Look for sign extends:
136 // %vreg170<def> = SXTW %vreg166
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000137 if (!DisableOptSZExt && MI.getOpcode() == Hexagon::A2_sxtw) {
138 assert(MI.getNumOperands() == 2);
139 MachineOperand &Dst = MI.getOperand(0);
140 MachineOperand &Src = MI.getOperand(1);
Sirish Pande30804c22012-02-15 18:52:27 +0000141 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
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000155 if (!DisableOptExtTo64 && MI.getOpcode() == Hexagon::A4_combineir) {
156 assert(MI.getNumOperands() == 3);
157 MachineOperand &Dst = MI.getOperand(0);
158 MachineOperand &Src1 = MI.getOperand(1);
159 MachineOperand &Src2 = MI.getOperand(2);
Pranav Bhandarkar7dda9122013-05-02 20:22:51 +0000160 if (Src1.getImm() != 0)
161 continue;
162 unsigned DstReg = Dst.getReg();
163 unsigned SrcReg = Src2.getReg();
164 PeepholeMap[DstReg] = SrcReg;
165 }
166
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000167 // Look for this sequence below
168 // %vregDoubleReg1 = LSRd_ri %vregDoubleReg0, 32
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000169 // %vregIntReg = COPY %vregDoubleReg1:isub_lo.
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000170 // and convert into
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000171 // %vregIntReg = COPY %vregDoubleReg0:isub_hi.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000172 if (MI.getOpcode() == Hexagon::S2_lsr_i_p) {
173 assert(MI.getNumOperands() == 3);
174 MachineOperand &Dst = MI.getOperand(0);
175 MachineOperand &Src1 = MI.getOperand(1);
176 MachineOperand &Src2 = MI.getOperand(2);
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000177 if (Src2.getImm() != 32)
178 continue;
179 unsigned DstReg = Dst.getReg();
180 unsigned SrcReg = Src1.getReg();
181 PeepholeDoubleRegsMap[DstReg] =
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000182 std::make_pair(*&SrcReg, Hexagon::isub_hi);
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000183 }
184
Sirish Pande30804c22012-02-15 18:52:27 +0000185 // Look for P=NOT(P).
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000186 if (!DisablePNotP && MI.getOpcode() == Hexagon::C2_not) {
187 assert(MI.getNumOperands() == 2);
188 MachineOperand &Dst = MI.getOperand(0);
189 MachineOperand &Src = MI.getOperand(1);
Sirish Pande30804c22012-02-15 18:52:27 +0000190 unsigned DstReg = Dst.getReg();
191 unsigned SrcReg = Src.getReg();
192 // Just handle virtual registers.
193 if (TargetRegisterInfo::isVirtualRegister(DstReg) &&
194 TargetRegisterInfo::isVirtualRegister(SrcReg)) {
195 // Map the following:
196 // %vreg170<def> = NOT_xx %vreg166
197 // PeepholeMap[170] = vreg166
198 PeepholeMap[DstReg] = SrcReg;
199 }
200 }
201
202 // Look for copy:
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000203 // %vreg176<def> = COPY %vreg170:isub_lo
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000204 if (!DisableOptSZExt && MI.isCopy()) {
205 assert(MI.getNumOperands() == 2);
206 MachineOperand &Dst = MI.getOperand(0);
207 MachineOperand &Src = MI.getOperand(1);
Sirish Pande30804c22012-02-15 18:52:27 +0000208
209 // Make sure we are copying the lower 32 bits.
Krzysztof Parzyszeka5409972016-11-09 16:19:08 +0000210 if (Src.getSubReg() != Hexagon::isub_lo)
Sirish Pande30804c22012-02-15 18:52:27 +0000211 continue;
212
213 unsigned DstReg = Dst.getReg();
214 unsigned SrcReg = Src.getReg();
215 if (TargetRegisterInfo::isVirtualRegister(DstReg) &&
216 TargetRegisterInfo::isVirtualRegister(SrcReg)) {
217 // Try to find in the map.
218 if (unsigned PeepholeSrc = PeepholeMap.lookup(SrcReg)) {
219 // Change the 1st operand.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000220 MI.RemoveOperand(1);
221 MI.addOperand(MachineOperand::CreateReg(PeepholeSrc, false));
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000222 } else {
223 DenseMap<unsigned, std::pair<unsigned, unsigned> >::iterator DI =
224 PeepholeDoubleRegsMap.find(SrcReg);
225 if (DI != PeepholeDoubleRegsMap.end()) {
226 std::pair<unsigned,unsigned> PeepholeSrc = DI->second;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000227 MI.RemoveOperand(1);
228 MI.addOperand(MachineOperand::CreateReg(
229 PeepholeSrc.first, false /*isDef*/, false /*isImp*/,
230 false /*isKill*/, false /*isDead*/, false /*isUndef*/,
231 false /*isEarlyClobber*/, PeepholeSrc.second));
Pranav Bhandarkar823f9eb2012-09-05 16:01:40 +0000232 }
Sirish Pande30804c22012-02-15 18:52:27 +0000233 }
234 }
235 }
236
237 // Look for Predicated instructions.
238 if (!DisablePNotP) {
239 bool Done = false;
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000240 if (QII->isPredicated(MI)) {
241 MachineOperand &Op0 = MI.getOperand(0);
Sirish Pande30804c22012-02-15 18:52:27 +0000242 unsigned Reg0 = Op0.getReg();
243 const TargetRegisterClass *RC0 = MRI->getRegClass(Reg0);
244 if (RC0->getID() == Hexagon::PredRegsRegClassID) {
245 // Handle instructions that have a prediate register in op0
246 // (most cases of predicable instructions).
247 if (TargetRegisterInfo::isVirtualRegister(Reg0)) {
248 // Try to find in the map.
249 if (unsigned PeepholeSrc = PeepholeMap.lookup(Reg0)) {
250 // Change the 1st operand and, flip the opcode.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000251 MI.getOperand(0).setReg(PeepholeSrc);
Krzysztof Parzyszek7773c582016-08-04 14:17:16 +0000252 MRI->clearKillFlags(PeepholeSrc);
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000253 int NewOp = QII->getInvertedPredicatedOpcode(MI.getOpcode());
254 MI.setDesc(QII->get(NewOp));
Sirish Pande30804c22012-02-15 18:52:27 +0000255 Done = true;
256 }
257 }
258 }
259 }
260
261 if (!Done) {
262 // Handle special instructions.
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000263 unsigned Op = MI.getOpcode();
Sirish Pande30804c22012-02-15 18:52:27 +0000264 unsigned NewOp = 0;
265 unsigned PR = 1, S1 = 2, S2 = 3; // Operand indices.
266
267 switch (Op) {
Colin LeMahieue83bc742014-11-25 20:20:09 +0000268 case Hexagon::C2_mux:
Colin LeMahieu9665f982014-12-05 21:09:27 +0000269 case Hexagon::C2_muxii:
Sirish Pande30804c22012-02-15 18:52:27 +0000270 NewOp = Op;
271 break;
Colin LeMahieu9665f982014-12-05 21:09:27 +0000272 case Hexagon::C2_muxri:
273 NewOp = Hexagon::C2_muxir;
Sirish Pande30804c22012-02-15 18:52:27 +0000274 break;
Colin LeMahieu9665f982014-12-05 21:09:27 +0000275 case Hexagon::C2_muxir:
276 NewOp = Hexagon::C2_muxri;
Sirish Pande30804c22012-02-15 18:52:27 +0000277 break;
278 }
279 if (NewOp) {
Duncan P. N. Exon Smith98226e32016-07-12 01:55:32 +0000280 unsigned PSrc = MI.getOperand(PR).getReg();
Sirish Pande30804c22012-02-15 18:52:27 +0000281 if (unsigned POrig = PeepholeMap.lookup(PSrc)) {
Krzysztof Parzyszek5b933fe2017-06-21 21:03:34 +0000282 BuildMI(*MBB, MI.getIterator(), MI.getDebugLoc(),
283 QII->get(NewOp), MI.getOperand(0).getReg())
284 .addReg(POrig)
285 .add(MI.getOperand(S2))
286 .add(MI.getOperand(S1));
Krzysztof Parzyszek7773c582016-08-04 14:17:16 +0000287 MRI->clearKillFlags(POrig);
Krzysztof Parzyszek5b933fe2017-06-21 21:03:34 +0000288 MI.eraseFromParent();
Sirish Pande30804c22012-02-15 18:52:27 +0000289 }
290 } // if (NewOp)
291 } // if (!Done)
292
293 } // if (!DisablePNotP)
294
295 } // Instruction
296 } // Basic Block
297 return true;
298}
299
Sirish Pande30804c22012-02-15 18:52:27 +0000300FunctionPass *llvm::createHexagonPeephole() {
301 return new HexagonPeephole();
302}