blob: 80983f87192c5a2c4344f6766372b8d2cd889358 [file] [log] [blame]
Sirish Pande4bd20c52012-05-12 05:10:30 +00001//===----- HexagonNewValueJump.cpp - Hexagon Backend New Value Jump -------===//
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 implements NewValueJump pass in Hexagon.
11// Ideally, we should merge this as a Peephole pass prior to register
Benjamin Kramerbde91762012-06-02 10:20:22 +000012// allocation, but because we have a spill in between the feeder and new value
Sirish Pande4bd20c52012-05-12 05:10:30 +000013// jump instructions, we are forced to write after register allocation.
Benjamin Kramerbde91762012-06-02 10:20:22 +000014// Having said that, we should re-attempt to pull this earlier at some point
Sirish Pande4bd20c52012-05-12 05:10:30 +000015// in future.
16
17// The basic approach looks for sequence of predicated jump, compare instruciton
18// that genereates the predicate and, the feeder to the predicate. Once it finds
19// all, it collapses compare and jump instruction into a new valu jump
20// intstructions.
21//
22//
23//===----------------------------------------------------------------------===//
Jyotsna Vermaa841af72013-05-02 22:10:59 +000024#include "llvm/PassSupport.h"
Jyotsna Verma84c47102013-05-06 18:49:23 +000025#include "Hexagon.h"
Jyotsna Verma84c47102013-05-06 18:49:23 +000026#include "HexagonInstrInfo.h"
27#include "HexagonMachineFunctionInfo.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000028#include "HexagonRegisterInfo.h"
29#include "HexagonSubtarget.h"
30#include "HexagonTargetMachine.h"
31#include "llvm/ADT/DenseMap.h"
32#include "llvm/ADT/Statistic.h"
33#include "llvm/CodeGen/LiveVariables.h"
34#include "llvm/CodeGen/MachineFunctionAnalysis.h"
35#include "llvm/CodeGen/MachineFunctionPass.h"
36#include "llvm/CodeGen/MachineInstrBuilder.h"
37#include "llvm/CodeGen/MachineRegisterInfo.h"
38#include "llvm/CodeGen/Passes.h"
39#include "llvm/CodeGen/ScheduleDAGInstrs.h"
Jyotsna Verma84c47102013-05-06 18:49:23 +000040#include "llvm/Support/CommandLine.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000041#include "llvm/Support/Compiler.h"
42#include "llvm/Support/Debug.h"
43#include "llvm/Target/TargetInstrInfo.h"
44#include "llvm/Target/TargetMachine.h"
45#include "llvm/Target/TargetRegisterInfo.h"
46#include <map>
Sirish Pande4bd20c52012-05-12 05:10:30 +000047using namespace llvm;
48
Chandler Carruth84e68b22014-04-22 02:41:26 +000049#define DEBUG_TYPE "hexagon-nvj"
50
Sirish Pande4bd20c52012-05-12 05:10:30 +000051STATISTIC(NumNVJGenerated, "Number of New Value Jump Instructions created");
52
Sirish Pande4bd20c52012-05-12 05:10:30 +000053static cl::opt<int>
54DbgNVJCount("nvj-count", cl::init(-1), cl::Hidden, cl::desc(
55 "Maximum number of predicated jumps to be converted to New Value Jump"));
56
57static cl::opt<bool> DisableNewValueJumps("disable-nvjump", cl::Hidden,
58 cl::ZeroOrMore, cl::init(false),
59 cl::desc("Disable New Value Jumps"));
60
Jyotsna Verma84c47102013-05-06 18:49:23 +000061namespace llvm {
62 void initializeHexagonNewValueJumpPass(PassRegistry&);
63}
64
65
Sirish Pande4bd20c52012-05-12 05:10:30 +000066namespace {
67 struct HexagonNewValueJump : public MachineFunctionPass {
68 const HexagonInstrInfo *QII;
69 const HexagonRegisterInfo *QRI;
70
71 public:
72 static char ID;
73
Jyotsna Verma84c47102013-05-06 18:49:23 +000074 HexagonNewValueJump() : MachineFunctionPass(ID) {
75 initializeHexagonNewValueJumpPass(*PassRegistry::getPassRegistry());
76 }
Sirish Pande4bd20c52012-05-12 05:10:30 +000077
Craig Topper906c2cd2014-04-29 07:58:16 +000078 void getAnalysisUsage(AnalysisUsage &AU) const override {
Jyotsna Verma1d297502013-05-02 15:39:30 +000079 AU.addRequired<MachineBranchProbabilityInfo>();
Sirish Pande4bd20c52012-05-12 05:10:30 +000080 MachineFunctionPass::getAnalysisUsage(AU);
81 }
82
Craig Topper906c2cd2014-04-29 07:58:16 +000083 const char *getPassName() const override {
Sirish Pande4bd20c52012-05-12 05:10:30 +000084 return "Hexagon NewValueJump";
85 }
86
Craig Topper906c2cd2014-04-29 07:58:16 +000087 bool runOnMachineFunction(MachineFunction &Fn) override;
Sirish Pande4bd20c52012-05-12 05:10:30 +000088
89 private:
Jyotsna Verma1d297502013-05-02 15:39:30 +000090 /// \brief A handle to the branch probability pass.
91 const MachineBranchProbabilityInfo *MBPI;
Sirish Pande4bd20c52012-05-12 05:10:30 +000092
93 };
94
95} // end of anonymous namespace
96
97char HexagonNewValueJump::ID = 0;
98
Jyotsna Verma84c47102013-05-06 18:49:23 +000099INITIALIZE_PASS_BEGIN(HexagonNewValueJump, "hexagon-nvj",
100 "Hexagon NewValueJump", false, false)
101INITIALIZE_PASS_DEPENDENCY(MachineBranchProbabilityInfo)
102INITIALIZE_PASS_END(HexagonNewValueJump, "hexagon-nvj",
103 "Hexagon NewValueJump", false, false)
104
105
Sirish Pande4bd20c52012-05-12 05:10:30 +0000106// We have identified this II could be feeder to NVJ,
107// verify that it can be.
108static bool canBeFeederToNewValueJump(const HexagonInstrInfo *QII,
109 const TargetRegisterInfo *TRI,
110 MachineBasicBlock::iterator II,
111 MachineBasicBlock::iterator end,
112 MachineBasicBlock::iterator skip,
113 MachineFunction &MF) {
114
115 // Predicated instruction can not be feeder to NVJ.
116 if (QII->isPredicated(II))
117 return false;
118
119 // Bail out if feederReg is a paired register (double regs in
120 // our case). One would think that we can check to see if a given
121 // register cmpReg1 or cmpReg2 is a sub register of feederReg
122 // using -- if (QRI->isSubRegister(feederReg, cmpReg1) logic
123 // before the callsite of this function
124 // But we can not as it comes in the following fashion.
125 // %D0<def> = Hexagon_S2_lsr_r_p %D0<kill>, %R2<kill>
126 // %R0<def> = KILL %R0, %D0<imp-use,kill>
127 // %P0<def> = CMPEQri %R0<kill>, 0
128 // Hence, we need to check if it's a KILL instruction.
129 if (II->getOpcode() == TargetOpcode::KILL)
130 return false;
131
132
133 // Make sure there there is no 'def' or 'use' of any of the uses of
134 // feeder insn between it's definition, this MI and jump, jmpInst
135 // skipping compare, cmpInst.
136 // Here's the example.
137 // r21=memub(r22+r24<<#0)
138 // p0 = cmp.eq(r21, #0)
139 // r4=memub(r3+r21<<#0)
140 // if (p0.new) jump:t .LBB29_45
141 // Without this check, it will be converted into
142 // r4=memub(r3+r21<<#0)
143 // r21=memub(r22+r24<<#0)
144 // p0 = cmp.eq(r21, #0)
145 // if (p0.new) jump:t .LBB29_45
146 // and result WAR hazards if converted to New Value Jump.
147
148 for (unsigned i = 0; i < II->getNumOperands(); ++i) {
149 if (II->getOperand(i).isReg() &&
150 (II->getOperand(i).isUse() || II->getOperand(i).isDef())) {
151 MachineBasicBlock::iterator localII = II;
152 ++localII;
153 unsigned Reg = II->getOperand(i).getReg();
154 for (MachineBasicBlock::iterator localBegin = localII;
155 localBegin != end; ++localBegin) {
156 if (localBegin == skip ) continue;
157 // Check for Subregisters too.
158 if (localBegin->modifiesRegister(Reg, TRI) ||
159 localBegin->readsRegister(Reg, TRI))
160 return false;
161 }
162 }
163 }
164 return true;
165}
166
167// These are the common checks that need to performed
168// to determine if
169// 1. compare instruction can be moved before jump.
170// 2. feeder to the compare instruction can be moved before jump.
171static bool commonChecksToProhibitNewValueJump(bool afterRA,
172 MachineBasicBlock::iterator MII) {
173
174 // If store in path, bail out.
175 if (MII->getDesc().mayStore())
176 return false;
177
178 // if call in path, bail out.
Colin LeMahieu984ef172014-12-12 21:12:27 +0000179 if (MII->getOpcode() == Hexagon::J2_call)
Sirish Pande4bd20c52012-05-12 05:10:30 +0000180 return false;
181
182 // if NVJ is running prior to RA, do the following checks.
183 if (!afterRA) {
184 // The following Target Opcode instructions are spurious
185 // to new value jump. If they are in the path, bail out.
186 // KILL sets kill flag on the opcode. It also sets up a
187 // single register, out of pair.
188 // %D0<def> = Hexagon_S2_lsr_r_p %D0<kill>, %R2<kill>
189 // %R0<def> = KILL %R0, %D0<imp-use,kill>
190 // %P0<def> = CMPEQri %R0<kill>, 0
191 // PHI can be anything after RA.
192 // COPY can remateriaze things in between feeder, compare and nvj.
193 if (MII->getOpcode() == TargetOpcode::KILL ||
194 MII->getOpcode() == TargetOpcode::PHI ||
195 MII->getOpcode() == TargetOpcode::COPY)
196 return false;
197
198 // The following pseudo Hexagon instructions sets "use" and "def"
199 // of registers by individual passes in the backend. At this time,
200 // we don't know the scope of usage and definitions of these
201 // instructions.
Colin LeMahieue83bc742014-11-25 20:20:09 +0000202 if (MII->getOpcode() == Hexagon::TFR_condset_ii ||
Sirish Pande4bd20c52012-05-12 05:10:30 +0000203 MII->getOpcode() == Hexagon::TFR_condset_ri ||
204 MII->getOpcode() == Hexagon::TFR_condset_ir ||
205 MII->getOpcode() == Hexagon::LDriw_pred ||
206 MII->getOpcode() == Hexagon::STriw_pred)
207 return false;
208 }
209
210 return true;
211}
212
213static bool canCompareBeNewValueJump(const HexagonInstrInfo *QII,
214 const TargetRegisterInfo *TRI,
215 MachineBasicBlock::iterator II,
216 unsigned pReg,
217 bool secondReg,
218 bool optLocation,
219 MachineBasicBlock::iterator end,
220 MachineFunction &MF) {
221
222 MachineInstr *MI = II;
223
224 // If the second operand of the compare is an imm, make sure it's in the
225 // range specified by the arch.
226 if (!secondReg) {
227 int64_t v = MI->getOperand(2).getImm();
Sirish Pande4bd20c52012-05-12 05:10:30 +0000228
229 if (!(isUInt<5>(v) ||
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000230 ((MI->getOpcode() == Hexagon::C2_cmpeqi ||
231 MI->getOpcode() == Hexagon::C2_cmpgti) &&
Sirish Pande4bd20c52012-05-12 05:10:30 +0000232 (v == -1))))
233 return false;
234 }
235
Jyotsna Verma84c47102013-05-06 18:49:23 +0000236 unsigned cmpReg1, cmpOp2 = 0; // cmpOp2 assignment silences compiler warning.
Sirish Pande4bd20c52012-05-12 05:10:30 +0000237 cmpReg1 = MI->getOperand(1).getReg();
238
239 if (secondReg) {
240 cmpOp2 = MI->getOperand(2).getReg();
241
242 // Make sure that that second register is not from COPY
243 // At machine code level, we don't need this, but if we decide
244 // to move new value jump prior to RA, we would be needing this.
245 MachineRegisterInfo &MRI = MF.getRegInfo();
246 if (secondReg && !TargetRegisterInfo::isPhysicalRegister(cmpOp2)) {
247 MachineInstr *def = MRI.getVRegDef(cmpOp2);
248 if (def->getOpcode() == TargetOpcode::COPY)
249 return false;
250 }
251 }
252
253 // Walk the instructions after the compare (predicate def) to the jump,
254 // and satisfy the following conditions.
255 ++II ;
256 for (MachineBasicBlock::iterator localII = II; localII != end;
257 ++localII) {
258
259 // Check 1.
260 // If "common" checks fail, bail out.
261 if (!commonChecksToProhibitNewValueJump(optLocation, localII))
262 return false;
263
264 // Check 2.
265 // If there is a def or use of predicate (result of compare), bail out.
266 if (localII->modifiesRegister(pReg, TRI) ||
267 localII->readsRegister(pReg, TRI))
268 return false;
269
270 // Check 3.
271 // If there is a def of any of the use of the compare (operands of compare),
272 // bail out.
273 // Eg.
274 // p0 = cmp.eq(r2, r0)
275 // r2 = r4
276 // if (p0.new) jump:t .LBB28_3
277 if (localII->modifiesRegister(cmpReg1, TRI) ||
278 (secondReg && localII->modifiesRegister(cmpOp2, TRI)))
279 return false;
280 }
281 return true;
282}
283
284// Given a compare operator, return a matching New Value Jump
285// compare operator. Make sure that MI here is included in
286// HexagonInstrInfo.cpp::isNewValueJumpCandidate
Jyotsna Verma1d297502013-05-02 15:39:30 +0000287static unsigned getNewValueJumpOpcode(MachineInstr *MI, int reg,
288 bool secondRegNewified,
289 MachineBasicBlock *jmpTarget,
290 const MachineBranchProbabilityInfo
291 *MBPI) {
292 bool taken = false;
293 MachineBasicBlock *Src = MI->getParent();
294 const BranchProbability Prediction =
295 MBPI->getEdgeProbability(Src, jmpTarget);
296
297 if (Prediction >= BranchProbability(1,2))
298 taken = true;
299
Sirish Pande4bd20c52012-05-12 05:10:30 +0000300 switch (MI->getOpcode()) {
Colin LeMahieu902157c2014-11-25 18:20:52 +0000301 case Hexagon::C2_cmpeq:
Jyotsna Verma84c47102013-05-06 18:49:23 +0000302 return taken ? Hexagon::CMPEQrr_t_Jumpnv_t_V4
303 : Hexagon::CMPEQrr_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000304
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000305 case Hexagon::C2_cmpeqi: {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000306 if (reg >= 0)
Jyotsna Verma84c47102013-05-06 18:49:23 +0000307 return taken ? Hexagon::CMPEQri_t_Jumpnv_t_V4
308 : Hexagon::CMPEQri_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000309 else
Jyotsna Verma84c47102013-05-06 18:49:23 +0000310 return taken ? Hexagon::CMPEQn1_t_Jumpnv_t_V4
311 : Hexagon::CMPEQn1_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000312 }
313
Colin LeMahieu902157c2014-11-25 18:20:52 +0000314 case Hexagon::C2_cmpgt: {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000315 if (secondRegNewified)
Jyotsna Verma84c47102013-05-06 18:49:23 +0000316 return taken ? Hexagon::CMPLTrr_t_Jumpnv_t_V4
317 : Hexagon::CMPLTrr_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000318 else
Jyotsna Verma84c47102013-05-06 18:49:23 +0000319 return taken ? Hexagon::CMPGTrr_t_Jumpnv_t_V4
320 : Hexagon::CMPGTrr_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000321 }
322
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000323 case Hexagon::C2_cmpgti: {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000324 if (reg >= 0)
Jyotsna Verma84c47102013-05-06 18:49:23 +0000325 return taken ? Hexagon::CMPGTri_t_Jumpnv_t_V4
326 : Hexagon::CMPGTri_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000327 else
Jyotsna Verma84c47102013-05-06 18:49:23 +0000328 return taken ? Hexagon::CMPGTn1_t_Jumpnv_t_V4
329 : Hexagon::CMPGTn1_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000330 }
331
Colin LeMahieu902157c2014-11-25 18:20:52 +0000332 case Hexagon::C2_cmpgtu: {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000333 if (secondRegNewified)
Jyotsna Verma84c47102013-05-06 18:49:23 +0000334 return taken ? Hexagon::CMPLTUrr_t_Jumpnv_t_V4
335 : Hexagon::CMPLTUrr_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000336 else
Jyotsna Verma84c47102013-05-06 18:49:23 +0000337 return taken ? Hexagon::CMPGTUrr_t_Jumpnv_t_V4
338 : Hexagon::CMPGTUrr_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000339 }
340
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000341 case Hexagon::C2_cmpgtui:
Jyotsna Verma84c47102013-05-06 18:49:23 +0000342 return taken ? Hexagon::CMPGTUri_t_Jumpnv_t_V4
343 : Hexagon::CMPGTUri_t_Jumpnv_nt_V4;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000344
Sirish Pande4bd20c52012-05-12 05:10:30 +0000345 default:
346 llvm_unreachable("Could not find matching New Value Jump instruction.");
347 }
348 // return *some value* to avoid compiler warning
349 return 0;
350}
351
352bool HexagonNewValueJump::runOnMachineFunction(MachineFunction &MF) {
353
354 DEBUG(dbgs() << "********** Hexagon New Value Jump **********\n"
355 << "********** Function: "
Craig Toppera538d832012-08-22 06:07:19 +0000356 << MF.getName() << "\n");
Sirish Pande4bd20c52012-05-12 05:10:30 +0000357
Eric Christopher0fef34e2015-02-02 22:11:42 +0000358 // If we move NewValueJump before register allocation we'll need live variable
359 // analysis here too.
Sirish Pande4bd20c52012-05-12 05:10:30 +0000360
Eric Christopherfc6de422014-08-05 02:39:49 +0000361 QII = static_cast<const HexagonInstrInfo *>(MF.getSubtarget().getInstrInfo());
Eric Christopherd9134482014-08-04 21:25:23 +0000362 QRI = static_cast<const HexagonRegisterInfo *>(
Eric Christopherfc6de422014-08-05 02:39:49 +0000363 MF.getSubtarget().getRegisterInfo());
Jyotsna Verma1d297502013-05-02 15:39:30 +0000364 MBPI = &getAnalysis<MachineBranchProbabilityInfo>();
Sirish Pande4bd20c52012-05-12 05:10:30 +0000365
366 if (!QRI->Subtarget.hasV4TOps() ||
367 DisableNewValueJumps) {
368 return false;
369 }
370
371 int nvjCount = DbgNVJCount;
372 int nvjGenerated = 0;
373
374 // Loop through all the bb's of the function
375 for (MachineFunction::iterator MBBb = MF.begin(), MBBe = MF.end();
376 MBBb != MBBe; ++MBBb) {
377 MachineBasicBlock* MBB = MBBb;
378
379 DEBUG(dbgs() << "** dumping bb ** "
380 << MBB->getNumber() << "\n");
381 DEBUG(MBB->dump());
382 DEBUG(dbgs() << "\n" << "********** dumping instr bottom up **********\n");
383 bool foundJump = false;
384 bool foundCompare = false;
385 bool invertPredicate = false;
386 unsigned predReg = 0; // predicate reg of the jump.
387 unsigned cmpReg1 = 0;
388 int cmpOp2 = 0;
389 bool MO1IsKill = false;
390 bool MO2IsKill = false;
391 MachineBasicBlock::iterator jmpPos;
392 MachineBasicBlock::iterator cmpPos;
Craig Topper062a2ba2014-04-25 05:30:21 +0000393 MachineInstr *cmpInstr = nullptr, *jmpInstr = nullptr;
394 MachineBasicBlock *jmpTarget = nullptr;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000395 bool afterRA = false;
396 bool isSecondOpReg = false;
397 bool isSecondOpNewified = false;
398 // Traverse the basic block - bottom up
399 for (MachineBasicBlock::iterator MII = MBB->end(), E = MBB->begin();
400 MII != E;) {
401 MachineInstr *MI = --MII;
402 if (MI->isDebugValue()) {
403 continue;
404 }
405
406 if ((nvjCount == 0) || (nvjCount > -1 && nvjCount <= nvjGenerated))
407 break;
408
409 DEBUG(dbgs() << "Instr: "; MI->dump(); dbgs() << "\n");
410
411 if (!foundJump &&
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000412 (MI->getOpcode() == Hexagon::J2_jumpt ||
413 MI->getOpcode() == Hexagon::J2_jumpf ||
414 MI->getOpcode() == Hexagon::J2_jumptnewpt ||
415 MI->getOpcode() == Hexagon::J2_jumptnew ||
416 MI->getOpcode() == Hexagon::J2_jumpfnewpt ||
417 MI->getOpcode() == Hexagon::J2_jumpfnew)) {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000418 // This is where you would insert your compare and
419 // instr that feeds compare
420 jmpPos = MII;
421 jmpInstr = MI;
422 predReg = MI->getOperand(0).getReg();
423 afterRA = TargetRegisterInfo::isPhysicalRegister(predReg);
424
425 // If ifconverter had not messed up with the kill flags of the
426 // operands, the following check on the kill flag would suffice.
427 // if(!jmpInstr->getOperand(0).isKill()) break;
428
429 // This predicate register is live out out of BB
430 // this would only work if we can actually use Live
431 // variable analysis on phy regs - but LLVM does not
432 // provide LV analysis on phys regs.
433 //if(LVs.isLiveOut(predReg, *MBB)) break;
434
435 // Get all the successors of this block - which will always
436 // be 2. Check if the predicate register is live in in those
437 // successor. If yes, we can not delete the predicate -
438 // I am doing this only because LLVM does not provide LiveOut
439 // at the BB level.
440 bool predLive = false;
441 for (MachineBasicBlock::const_succ_iterator SI = MBB->succ_begin(),
442 SIE = MBB->succ_end(); SI != SIE; ++SI) {
443 MachineBasicBlock* succMBB = *SI;
444 if (succMBB->isLiveIn(predReg)) {
445 predLive = true;
446 }
447 }
448 if (predLive)
449 break;
450
451 jmpTarget = MI->getOperand(1).getMBB();
452 foundJump = true;
Colin LeMahieudb0b13c2014-12-10 21:24:10 +0000453 if (MI->getOpcode() == Hexagon::J2_jumpf ||
454 MI->getOpcode() == Hexagon::J2_jumpfnewpt ||
455 MI->getOpcode() == Hexagon::J2_jumpfnew) {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000456 invertPredicate = true;
457 }
458 continue;
459 }
460
461 // No new value jump if there is a barrier. A barrier has to be in its
462 // own packet. A barrier has zero operands. We conservatively bail out
463 // here if we see any instruction with zero operands.
464 if (foundJump && MI->getNumOperands() == 0)
465 break;
466
467 if (foundJump &&
468 !foundCompare &&
469 MI->getOperand(0).isReg() &&
470 MI->getOperand(0).getReg() == predReg) {
471
472 // Not all compares can be new value compare. Arch Spec: 7.6.1.1
473 if (QII->isNewValueJumpCandidate(MI)) {
474
475 assert((MI->getDesc().isCompare()) &&
476 "Only compare instruction can be collapsed into New Value Jump");
477 isSecondOpReg = MI->getOperand(2).isReg();
478
479 if (!canCompareBeNewValueJump(QII, QRI, MII, predReg, isSecondOpReg,
480 afterRA, jmpPos, MF))
481 break;
482
483 cmpInstr = MI;
484 cmpPos = MII;
485 foundCompare = true;
486
487 // We need cmpReg1 and cmpOp2(imm or reg) while building
488 // new value jump instruction.
489 cmpReg1 = MI->getOperand(1).getReg();
490 if (MI->getOperand(1).isKill())
491 MO1IsKill = true;
492
493 if (isSecondOpReg) {
494 cmpOp2 = MI->getOperand(2).getReg();
495 if (MI->getOperand(2).isKill())
496 MO2IsKill = true;
497 } else
498 cmpOp2 = MI->getOperand(2).getImm();
499 continue;
500 }
501 }
502
503 if (foundCompare && foundJump) {
504
505 // If "common" checks fail, bail out on this BB.
506 if (!commonChecksToProhibitNewValueJump(afterRA, MII))
507 break;
508
509 bool foundFeeder = false;
510 MachineBasicBlock::iterator feederPos = MII;
511 if (MI->getOperand(0).isReg() &&
512 MI->getOperand(0).isDef() &&
513 (MI->getOperand(0).getReg() == cmpReg1 ||
514 (isSecondOpReg &&
515 MI->getOperand(0).getReg() == (unsigned) cmpOp2))) {
516
517 unsigned feederReg = MI->getOperand(0).getReg();
518
519 // First try to see if we can get the feeder from the first operand
520 // of the compare. If we can not, and if secondOpReg is true
521 // (second operand of the compare is also register), try that one.
522 // TODO: Try to come up with some heuristic to figure out which
523 // feeder would benefit.
524
525 if (feederReg == cmpReg1) {
526 if (!canBeFeederToNewValueJump(QII, QRI, MII, jmpPos, cmpPos, MF)) {
527 if (!isSecondOpReg)
528 break;
529 else
530 continue;
531 } else
532 foundFeeder = true;
533 }
534
535 if (!foundFeeder &&
536 isSecondOpReg &&
537 feederReg == (unsigned) cmpOp2)
538 if (!canBeFeederToNewValueJump(QII, QRI, MII, jmpPos, cmpPos, MF))
539 break;
540
541 if (isSecondOpReg) {
542 // In case of CMPLT, or CMPLTU, or EQ with the second register
543 // to newify, swap the operands.
Colin LeMahieu902157c2014-11-25 18:20:52 +0000544 if (cmpInstr->getOpcode() == Hexagon::C2_cmpeq &&
Jyotsna Verma89c84822013-04-23 19:15:55 +0000545 feederReg == (unsigned) cmpOp2) {
Sirish Pande4bd20c52012-05-12 05:10:30 +0000546 unsigned tmp = cmpReg1;
547 bool tmpIsKill = MO1IsKill;
548 cmpReg1 = cmpOp2;
549 MO1IsKill = MO2IsKill;
550 cmpOp2 = tmp;
551 MO2IsKill = tmpIsKill;
552 }
553
554 // Now we have swapped the operands, all we need to check is,
555 // if the second operand (after swap) is the feeder.
556 // And if it is, make a note.
557 if (feederReg == (unsigned)cmpOp2)
558 isSecondOpNewified = true;
559 }
560
561 // Now that we are moving feeder close the jump,
562 // make sure we are respecting the kill values of
563 // the operands of the feeder.
564
565 bool updatedIsKill = false;
566 for (unsigned i = 0; i < MI->getNumOperands(); i++) {
567 MachineOperand &MO = MI->getOperand(i);
568 if (MO.isReg() && MO.isUse()) {
569 unsigned feederReg = MO.getReg();
570 for (MachineBasicBlock::iterator localII = feederPos,
571 end = jmpPos; localII != end; localII++) {
572 MachineInstr *localMI = localII;
573 for (unsigned j = 0; j < localMI->getNumOperands(); j++) {
574 MachineOperand &localMO = localMI->getOperand(j);
575 if (localMO.isReg() && localMO.isUse() &&
576 localMO.isKill() && feederReg == localMO.getReg()) {
577 // We found that there is kill of a use register
578 // Set up a kill flag on the register
579 localMO.setIsKill(false);
580 MO.setIsKill();
581 updatedIsKill = true;
582 break;
583 }
584 }
585 if (updatedIsKill) break;
586 }
587 }
588 if (updatedIsKill) break;
589 }
590
591 MBB->splice(jmpPos, MI->getParent(), MI);
592 MBB->splice(jmpPos, MI->getParent(), cmpInstr);
593 DebugLoc dl = MI->getDebugLoc();
594 MachineInstr *NewMI;
595
596 assert((QII->isNewValueJumpCandidate(cmpInstr)) &&
597 "This compare is not a New Value Jump candidate.");
598 unsigned opc = getNewValueJumpOpcode(cmpInstr, cmpOp2,
Jyotsna Verma1d297502013-05-02 15:39:30 +0000599 isSecondOpNewified,
600 jmpTarget, MBPI);
Sirish Pande4bd20c52012-05-12 05:10:30 +0000601 if (invertPredicate)
602 opc = QII->getInvertedPredicatedOpcode(opc);
603
Jyotsna Verma89c84822013-04-23 19:15:55 +0000604 if (isSecondOpReg)
Sirish Pande4bd20c52012-05-12 05:10:30 +0000605 NewMI = BuildMI(*MBB, jmpPos, dl,
606 QII->get(opc))
607 .addReg(cmpReg1, getKillRegState(MO1IsKill))
608 .addReg(cmpOp2, getKillRegState(MO2IsKill))
609 .addMBB(jmpTarget);
Jyotsna Verma89c84822013-04-23 19:15:55 +0000610
Colin LeMahieu6e0f9f82014-11-26 19:43:12 +0000611 else if ((cmpInstr->getOpcode() == Hexagon::C2_cmpeqi ||
612 cmpInstr->getOpcode() == Hexagon::C2_cmpgti) &&
Jyotsna Verma89c84822013-04-23 19:15:55 +0000613 cmpOp2 == -1 )
614 // Corresponding new-value compare jump instructions don't have the
615 // operand for -1 immediate value.
616 NewMI = BuildMI(*MBB, jmpPos, dl,
617 QII->get(opc))
618 .addReg(cmpReg1, getKillRegState(MO1IsKill))
619 .addMBB(jmpTarget);
620
621 else
Sirish Pande4bd20c52012-05-12 05:10:30 +0000622 NewMI = BuildMI(*MBB, jmpPos, dl,
623 QII->get(opc))
624 .addReg(cmpReg1, getKillRegState(MO1IsKill))
625 .addImm(cmpOp2)
626 .addMBB(jmpTarget);
Sirish Pande4bd20c52012-05-12 05:10:30 +0000627
628 assert(NewMI && "New Value Jump Instruction Not created!");
Duncan Sands0480b9b2013-05-13 07:50:47 +0000629 (void)NewMI;
Sirish Pande4bd20c52012-05-12 05:10:30 +0000630 if (cmpInstr->getOperand(0).isReg() &&
631 cmpInstr->getOperand(0).isKill())
632 cmpInstr->getOperand(0).setIsKill(false);
633 if (cmpInstr->getOperand(1).isReg() &&
634 cmpInstr->getOperand(1).isKill())
635 cmpInstr->getOperand(1).setIsKill(false);
636 cmpInstr->eraseFromParent();
637 jmpInstr->eraseFromParent();
638 ++nvjGenerated;
639 ++NumNVJGenerated;
640 break;
641 }
642 }
643 }
644 }
645
646 return true;
647
648}
649
650FunctionPass *llvm::createHexagonNewValueJump() {
651 return new HexagonNewValueJump();
652}