blob: 8c2040d5c16fbf5b2ab0bd920f1539d608e78ac8 [file] [log] [blame]
Akira Hatanaka1083eb12013-02-14 23:20:15 +00001//===-- MipsDelaySlotFiller.cpp - Mips Delay Slot Filler ------------------===//
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +00007//
Akira Hatanakae2489122011-04-15 21:51:11 +00008//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +00009//
Akira Hatanaka1083eb12013-02-14 23:20:15 +000010// Simple pass to fill delay slots with useful instructions.
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000011//
Akira Hatanakae2489122011-04-15 21:51:11 +000012//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000013
Sasa Stankovic5fddf612014-03-10 20:34:23 +000014#include "MCTargetDesc/MipsMCNaCl.h"
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000015#include "Mips.h"
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +000016#include "MipsInstrInfo.h"
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000017#include "MipsTargetMachine.h"
Akira Hatanaka06bd1382013-02-14 23:40:57 +000018#include "llvm/ADT/BitVector.h"
Akira Hatanakaeb33ced2013-03-01 00:16:31 +000019#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/ADT/Statistic.h"
Akira Hatanakaeb33ced2013-03-01 00:16:31 +000021#include "llvm/Analysis/AliasAnalysis.h"
22#include "llvm/Analysis/ValueTracking.h"
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +000023#include "llvm/CodeGen/MachineBranchProbabilityInfo.h"
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000024#include "llvm/CodeGen/MachineFunctionPass.h"
25#include "llvm/CodeGen/MachineInstrBuilder.h"
Daniel Sanders308181e2014-06-12 10:44:10 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Akira Hatanakaeb33ced2013-03-01 00:16:31 +000027#include "llvm/CodeGen/PseudoSourceValue.h"
Akira Hatanakaf2619ee2011-09-29 23:52:13 +000028#include "llvm/Support/CommandLine.h"
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000029#include "llvm/Target/TargetInstrInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000030#include "llvm/Target/TargetMachine.h"
Akira Hatanakaf2619ee2011-09-29 23:52:13 +000031#include "llvm/Target/TargetRegisterInfo.h"
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000032
33using namespace llvm;
34
Chandler Carruth84e68b22014-04-22 02:41:26 +000035#define DEBUG_TYPE "delay-slot-filler"
36
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000037STATISTIC(FilledSlots, "Number of delay slots filled");
Akira Hatanaka9e603442011-10-05 01:19:13 +000038STATISTIC(UsefulSlots, "Number of delay slots filled with instructions that"
Akira Hatanaka02e760a2011-10-05 02:22:49 +000039 " are not NOP.");
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000040
Akira Hatanaka9d957842012-08-22 02:51:28 +000041static cl::opt<bool> DisableDelaySlotFiller(
42 "disable-mips-delay-filler",
Akira Hatanakaf2619ee2011-09-29 23:52:13 +000043 cl::init(false),
Akira Hatanaka1083eb12013-02-14 23:20:15 +000044 cl::desc("Fill all delay slots with NOPs."),
Akira Hatanakaf2619ee2011-09-29 23:52:13 +000045 cl::Hidden);
46
Akira Hatanakae01ff9d2013-03-01 00:50:52 +000047static cl::opt<bool> DisableForwardSearch(
48 "disable-mips-df-forward-search",
49 cl::init(true),
50 cl::desc("Disallow MIPS delay filler to search forward."),
51 cl::Hidden);
52
Akira Hatanakae44e30c2013-03-01 01:02:36 +000053static cl::opt<bool> DisableSuccBBSearch(
54 "disable-mips-df-succbb-search",
55 cl::init(true),
56 cl::desc("Disallow MIPS delay filler to search successor basic blocks."),
57 cl::Hidden);
58
59static cl::opt<bool> DisableBackwardSearch(
60 "disable-mips-df-backward-search",
61 cl::init(false),
62 cl::desc("Disallow MIPS delay filler to search backward."),
63 cl::Hidden);
64
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +000065namespace {
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +000066 typedef MachineBasicBlock::iterator Iter;
67 typedef MachineBasicBlock::reverse_iterator ReverseIter;
68 typedef SmallDenseMap<MachineBasicBlock*, MachineInstr*, 2> BB2BrMap;
69
Akira Hatanaka979899e2013-02-26 01:30:05 +000070 class RegDefsUses {
71 public:
Eric Christopher96e72c62015-01-29 23:27:36 +000072 RegDefsUses(const TargetRegisterInfo &TRI);
Akira Hatanaka979899e2013-02-26 01:30:05 +000073 void init(const MachineInstr &MI);
Akira Hatanakae01ff9d2013-03-01 00:50:52 +000074
75 /// This function sets all caller-saved registers in Defs.
76 void setCallerSaved(const MachineInstr &MI);
77
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +000078 /// This function sets all unallocatable registers in Defs.
79 void setUnallocatableRegs(const MachineFunction &MF);
80
81 /// Set bits in Uses corresponding to MBB's live-out registers except for
82 /// the registers that are live-in to SuccBB.
83 void addLiveOut(const MachineBasicBlock &MBB,
84 const MachineBasicBlock &SuccBB);
85
Akira Hatanaka979899e2013-02-26 01:30:05 +000086 bool update(const MachineInstr &MI, unsigned Begin, unsigned End);
87
88 private:
89 bool checkRegDefsUses(BitVector &NewDefs, BitVector &NewUses, unsigned Reg,
90 bool IsDef) const;
91
92 /// Returns true if Reg or its alias is in RegSet.
93 bool isRegInSet(const BitVector &RegSet, unsigned Reg) const;
94
95 const TargetRegisterInfo &TRI;
96 BitVector Defs, Uses;
97 };
98
Akira Hatanakae01ff9d2013-03-01 00:50:52 +000099 /// Base class for inspecting loads and stores.
100 class InspectMemInstr {
101 public:
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000102 InspectMemInstr(bool ForbidMemInstr_)
103 : OrigSeenLoad(false), OrigSeenStore(false), SeenLoad(false),
104 SeenStore(false), ForbidMemInstr(ForbidMemInstr_) {}
105
106 /// Return true if MI cannot be moved to delay slot.
107 bool hasHazard(const MachineInstr &MI);
108
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000109 virtual ~InspectMemInstr() {}
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000110
111 protected:
112 /// Flags indicating whether loads or stores have been seen.
113 bool OrigSeenLoad, OrigSeenStore, SeenLoad, SeenStore;
114
115 /// Memory instructions are not allowed to move to delay slot if this flag
116 /// is true.
117 bool ForbidMemInstr;
118
119 private:
120 virtual bool hasHazard_(const MachineInstr &MI) = 0;
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000121 };
122
123 /// This subclass rejects any memory instructions.
124 class NoMemInstr : public InspectMemInstr {
125 public:
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000126 NoMemInstr() : InspectMemInstr(true) {}
127 private:
Craig Topper56c590a2014-04-29 07:58:02 +0000128 bool hasHazard_(const MachineInstr &MI) override { return true; }
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000129 };
130
131 /// This subclass accepts loads from stacks and constant loads.
132 class LoadFromStackOrConst : public InspectMemInstr {
133 public:
134 LoadFromStackOrConst() : InspectMemInstr(false) {}
135 private:
Craig Topper56c590a2014-04-29 07:58:02 +0000136 bool hasHazard_(const MachineInstr &MI) override;
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000137 };
138
139 /// This subclass uses memory dependence information to determine whether a
140 /// memory instruction can be moved to a delay slot.
141 class MemDefsUses : public InspectMemInstr {
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000142 public:
143 MemDefsUses(const MachineFrameInfo *MFI);
144
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000145 private:
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000146 typedef PointerUnion<const Value *, const PseudoSourceValue *> ValueType;
147
Craig Topper56c590a2014-04-29 07:58:02 +0000148 bool hasHazard_(const MachineInstr &MI) override;
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000149
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000150 /// Update Defs and Uses. Return true if there exist dependences that
Akira Hatanakae9e588d2013-03-01 02:17:02 +0000151 /// disqualify the delay slot candidate between V and values in Uses and
152 /// Defs.
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000153 bool updateDefsUses(ValueType V, bool MayStore);
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000154
155 /// Get the list of underlying objects of MI's memory operand.
156 bool getUnderlyingObjects(const MachineInstr &MI,
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000157 SmallVectorImpl<ValueType> &Objects) const;
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000158
159 const MachineFrameInfo *MFI;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000160 SmallPtrSet<ValueType, 4> Uses, Defs;
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000161
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000162 /// Flags indicating whether loads or stores with no underlying objects have
163 /// been seen.
164 bool SeenNoObjLoad, SeenNoObjStore;
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000165 };
166
Akira Hatanakaa0612812013-02-07 21:32:32 +0000167 class Filler : public MachineFunctionPass {
168 public:
Bruno Cardoso Lopesfde21cf2010-12-09 17:31:11 +0000169 Filler(TargetMachine &tm)
Bill Wendlingead89ef2013-06-07 07:04:14 +0000170 : MachineFunctionPass(ID), TM(tm) { }
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000171
Craig Topper56c590a2014-04-29 07:58:02 +0000172 const char *getPassName() const override {
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000173 return "Mips Delay Slot Filler";
174 }
175
Craig Topper56c590a2014-04-29 07:58:02 +0000176 bool runOnMachineFunction(MachineFunction &F) override {
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000177 bool Changed = false;
178 for (MachineFunction::iterator FI = F.begin(), FE = F.end();
179 FI != FE; ++FI)
180 Changed |= runOnMachineBasicBlock(*FI);
Daniel Sanders308181e2014-06-12 10:44:10 +0000181
182 // This pass invalidates liveness information when it reorders
183 // instructions to fill delay slot. Without this, -verify-machineinstrs
184 // will fail.
185 if (Changed)
186 F.getRegInfo().invalidateLiveness();
187
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000188 return Changed;
189 }
190
Craig Topper56c590a2014-04-29 07:58:02 +0000191 void getAnalysisUsage(AnalysisUsage &AU) const override {
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000192 AU.addRequired<MachineBranchProbabilityInfo>();
193 MachineFunctionPass::getAnalysisUsage(AU);
194 }
Akira Hatanakaa0612812013-02-07 21:32:32 +0000195
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000196 private:
Akira Hatanakaa0612812013-02-07 21:32:32 +0000197 bool runOnMachineBasicBlock(MachineBasicBlock &MBB);
198
Jozef Kolek3b8ddb62014-11-21 22:04:35 +0000199 Iter replaceWithCompactBranch(MachineBasicBlock &MBB,
200 Iter Branch, DebugLoc DL);
201
Akira Hatanaka06bd1382013-02-14 23:40:57 +0000202 /// This function checks if it is valid to move Candidate to the delay slot
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000203 /// and returns true if it isn't. It also updates memory and register
204 /// dependence information.
205 bool delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU,
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000206 InspectMemInstr &IM) const;
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000207
Akira Hatanakaf815db52013-03-01 00:26:14 +0000208 /// This function searches range [Begin, End) for an instruction that can be
209 /// moved to the delay slot. Returns true on success.
210 template<typename IterTy>
211 bool searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End,
Akira Hatanakae9e588d2013-03-01 02:17:02 +0000212 RegDefsUses &RegDU, InspectMemInstr &IM,
Jozef Koleke7cad7a2015-01-13 15:59:17 +0000213 IterTy &Filler, Iter Slot) const;
Akira Hatanakaf815db52013-03-01 00:26:14 +0000214
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000215 /// This function searches in the backward direction for an instruction that
216 /// can be moved to the delay slot. Returns true on success.
217 bool searchBackward(MachineBasicBlock &MBB, Iter Slot) const;
218
219 /// This function searches MBB in the forward direction for an instruction
220 /// that can be moved to the delay slot. Returns true on success.
221 bool searchForward(MachineBasicBlock &MBB, Iter Slot) const;
Akira Hatanakadfd2f242013-02-14 23:11:24 +0000222
Akira Hatanaka1ff803f2013-03-25 20:11:16 +0000223 /// This function searches one of MBB's successor blocks for an instruction
224 /// that can be moved to the delay slot and inserts clones of the
225 /// instruction into the successor's predecessor blocks.
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000226 bool searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const;
227
Akira Hatanakae9e588d2013-03-01 02:17:02 +0000228 /// Pick a successor block of MBB. Return NULL if MBB doesn't have a
229 /// successor block that is not a landing pad.
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000230 MachineBasicBlock *selectSuccBB(MachineBasicBlock &B) const;
231
232 /// This function analyzes MBB and returns an instruction with an unoccupied
233 /// slot that branches to Dst.
234 std::pair<MipsInstrInfo::BranchType, MachineInstr *>
235 getBranch(MachineBasicBlock &MBB, const MachineBasicBlock &Dst) const;
236
237 /// Examine Pred and see if it is possible to insert an instruction into
238 /// one of its branches delay slot or its end.
239 bool examinePred(MachineBasicBlock &Pred, const MachineBasicBlock &Succ,
240 RegDefsUses &RegDU, bool &HasMultipleSuccs,
241 BB2BrMap &BrMap) const;
242
Akira Hatanakadfd2f242013-02-14 23:11:24 +0000243 bool terminateSearch(const MachineInstr &Candidate) const;
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000244
Akira Hatanakaa0612812013-02-07 21:32:32 +0000245 TargetMachine &TM;
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000246
Akira Hatanakaa0612812013-02-07 21:32:32 +0000247 static char ID;
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000248 };
249 char Filler::ID = 0;
250} // end of anonymous namespace
251
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000252static bool hasUnoccupiedSlot(const MachineInstr *MI) {
253 return MI->hasDelaySlot() && !MI->isBundledWithSucc();
254}
255
256/// This function inserts clones of Filler into predecessor blocks.
257static void insertDelayFiller(Iter Filler, const BB2BrMap &BrMap) {
258 MachineFunction *MF = Filler->getParent()->getParent();
259
260 for (BB2BrMap::const_iterator I = BrMap.begin(); I != BrMap.end(); ++I) {
261 if (I->second) {
262 MIBundleBuilder(I->second).append(MF->CloneMachineInstr(&*Filler));
263 ++UsefulSlots;
264 } else {
265 I->first->insert(I->first->end(), MF->CloneMachineInstr(&*Filler));
266 }
267 }
268}
269
270/// This function adds registers Filler defines to MBB's live-in register list.
271static void addLiveInRegs(Iter Filler, MachineBasicBlock &MBB) {
272 for (unsigned I = 0, E = Filler->getNumOperands(); I != E; ++I) {
273 const MachineOperand &MO = Filler->getOperand(I);
274 unsigned R;
275
276 if (!MO.isReg() || !MO.isDef() || !(R = MO.getReg()))
277 continue;
278
279#ifndef NDEBUG
280 const MachineFunction &MF = *MBB.getParent();
Eric Christopher96e72c62015-01-29 23:27:36 +0000281 assert(MF.getSubtarget().getRegisterInfo()->getAllocatableSet(MF).test(R) &&
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000282 "Shouldn't move an instruction with unallocatable registers across "
283 "basic block boundaries.");
284#endif
285
286 if (!MBB.isLiveIn(R))
287 MBB.addLiveIn(R);
288 }
289}
290
Eric Christopher96e72c62015-01-29 23:27:36 +0000291RegDefsUses::RegDefsUses(const TargetRegisterInfo &TRI)
292 : TRI(TRI), Defs(TRI.getNumRegs(), false), Uses(TRI.getNumRegs(), false) {}
Akira Hatanaka979899e2013-02-26 01:30:05 +0000293
294void RegDefsUses::init(const MachineInstr &MI) {
295 // Add all register operands which are explicit and non-variadic.
296 update(MI, 0, MI.getDesc().getNumOperands());
297
298 // If MI is a call, add RA to Defs to prevent users of RA from going into
299 // delay slot.
300 if (MI.isCall())
301 Defs.set(Mips::RA);
302
303 // Add all implicit register operands of branch instructions except
304 // register AT.
305 if (MI.isBranch()) {
306 update(MI, MI.getDesc().getNumOperands(), MI.getNumOperands());
307 Defs.reset(Mips::AT);
308 }
309}
310
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000311void RegDefsUses::setCallerSaved(const MachineInstr &MI) {
312 assert(MI.isCall());
313
314 // If MI is a call, add all caller-saved registers to Defs.
315 BitVector CallerSavedRegs(TRI.getNumRegs(), true);
316
317 CallerSavedRegs.reset(Mips::ZERO);
318 CallerSavedRegs.reset(Mips::ZERO_64);
319
320 for (const MCPhysReg *R = TRI.getCalleeSavedRegs(); *R; ++R)
321 for (MCRegAliasIterator AI(*R, &TRI, true); AI.isValid(); ++AI)
322 CallerSavedRegs.reset(*AI);
323
324 Defs |= CallerSavedRegs;
325}
326
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000327void RegDefsUses::setUnallocatableRegs(const MachineFunction &MF) {
328 BitVector AllocSet = TRI.getAllocatableSet(MF);
329
330 for (int R = AllocSet.find_first(); R != -1; R = AllocSet.find_next(R))
331 for (MCRegAliasIterator AI(R, &TRI, false); AI.isValid(); ++AI)
332 AllocSet.set(*AI);
333
334 AllocSet.set(Mips::ZERO);
335 AllocSet.set(Mips::ZERO_64);
336
337 Defs |= AllocSet.flip();
338}
339
340void RegDefsUses::addLiveOut(const MachineBasicBlock &MBB,
341 const MachineBasicBlock &SuccBB) {
342 for (MachineBasicBlock::const_succ_iterator SI = MBB.succ_begin(),
343 SE = MBB.succ_end(); SI != SE; ++SI)
344 if (*SI != &SuccBB)
345 for (MachineBasicBlock::livein_iterator LI = (*SI)->livein_begin(),
346 LE = (*SI)->livein_end(); LI != LE; ++LI)
347 Uses.set(*LI);
348}
349
Akira Hatanaka979899e2013-02-26 01:30:05 +0000350bool RegDefsUses::update(const MachineInstr &MI, unsigned Begin, unsigned End) {
351 BitVector NewDefs(TRI.getNumRegs()), NewUses(TRI.getNumRegs());
352 bool HasHazard = false;
353
354 for (unsigned I = Begin; I != End; ++I) {
355 const MachineOperand &MO = MI.getOperand(I);
356
357 if (MO.isReg() && MO.getReg())
358 HasHazard |= checkRegDefsUses(NewDefs, NewUses, MO.getReg(), MO.isDef());
359 }
360
361 Defs |= NewDefs;
362 Uses |= NewUses;
363
364 return HasHazard;
365}
366
367bool RegDefsUses::checkRegDefsUses(BitVector &NewDefs, BitVector &NewUses,
368 unsigned Reg, bool IsDef) const {
369 if (IsDef) {
370 NewDefs.set(Reg);
371 // check whether Reg has already been defined or used.
372 return (isRegInSet(Defs, Reg) || isRegInSet(Uses, Reg));
373 }
374
375 NewUses.set(Reg);
376 // check whether Reg has already been defined.
377 return isRegInSet(Defs, Reg);
378}
379
380bool RegDefsUses::isRegInSet(const BitVector &RegSet, unsigned Reg) const {
381 // Check Reg and all aliased Registers.
382 for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
383 if (RegSet.test(*AI))
384 return true;
385 return false;
386}
387
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000388bool InspectMemInstr::hasHazard(const MachineInstr &MI) {
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000389 if (!MI.mayStore() && !MI.mayLoad())
390 return false;
391
392 if (ForbidMemInstr)
393 return true;
394
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000395 OrigSeenLoad = SeenLoad;
396 OrigSeenStore = SeenStore;
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000397 SeenLoad |= MI.mayLoad();
398 SeenStore |= MI.mayStore();
399
400 // If MI is an ordered or volatile memory reference, disallow moving
401 // subsequent loads and stores to delay slot.
402 if (MI.hasOrderedMemoryRef() && (OrigSeenLoad || OrigSeenStore)) {
403 ForbidMemInstr = true;
404 return true;
405 }
406
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000407 return hasHazard_(MI);
408}
409
410bool LoadFromStackOrConst::hasHazard_(const MachineInstr &MI) {
411 if (MI.mayStore())
412 return true;
413
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000414 if (!MI.hasOneMemOperand() || !(*MI.memoperands_begin())->getPseudoValue())
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000415 return true;
416
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000417 if (const PseudoSourceValue *PSV =
418 (*MI.memoperands_begin())->getPseudoValue()) {
419 if (isa<FixedStackPseudoSourceValue>(PSV))
420 return false;
Craig Topper062a2ba2014-04-25 05:30:21 +0000421 return !PSV->isConstant(nullptr) && PSV != PseudoSourceValue::getStack();
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000422 }
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000423
424 return true;
425}
426
427MemDefsUses::MemDefsUses(const MachineFrameInfo *MFI_)
428 : InspectMemInstr(false), MFI(MFI_), SeenNoObjLoad(false),
429 SeenNoObjStore(false) {}
430
431bool MemDefsUses::hasHazard_(const MachineInstr &MI) {
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000432 bool HasHazard = false;
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000433 SmallVector<ValueType, 4> Objs;
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000434
435 // Check underlying object list.
436 if (getUnderlyingObjects(MI, Objs)) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000437 for (SmallVectorImpl<ValueType>::const_iterator I = Objs.begin();
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000438 I != Objs.end(); ++I)
439 HasHazard |= updateDefsUses(*I, MI.mayStore());
440
441 return HasHazard;
442 }
443
444 // No underlying objects found.
445 HasHazard = MI.mayStore() && (OrigSeenLoad || OrigSeenStore);
446 HasHazard |= MI.mayLoad() || OrigSeenStore;
447
448 SeenNoObjLoad |= MI.mayLoad();
449 SeenNoObjStore |= MI.mayStore();
450
451 return HasHazard;
452}
453
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000454bool MemDefsUses::updateDefsUses(ValueType V, bool MayStore) {
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000455 if (MayStore)
David Blaikie70573dc2014-11-19 07:49:26 +0000456 return !Defs.insert(V).second || Uses.count(V) || SeenNoObjStore ||
457 SeenNoObjLoad;
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000458
459 Uses.insert(V);
460 return Defs.count(V) || SeenNoObjStore;
461}
462
463bool MemDefsUses::
464getUnderlyingObjects(const MachineInstr &MI,
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000465 SmallVectorImpl<ValueType> &Objects) const {
466 if (!MI.hasOneMemOperand() ||
467 (!(*MI.memoperands_begin())->getValue() &&
468 !(*MI.memoperands_begin())->getPseudoValue()))
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000469 return false;
470
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000471 if (const PseudoSourceValue *PSV =
472 (*MI.memoperands_begin())->getPseudoValue()) {
473 if (!PSV->isAliased(MFI))
474 return false;
475 Objects.push_back(PSV);
476 return true;
477 }
478
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000479 const Value *V = (*MI.memoperands_begin())->getValue();
480
481 SmallVector<Value *, 4> Objs;
482 GetUnderlyingObjects(const_cast<Value *>(V), Objs);
483
Craig Topper31ee5862013-07-03 15:07:05 +0000484 for (SmallVectorImpl<Value *>::iterator I = Objs.begin(), E = Objs.end();
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000485 I != E; ++I) {
Nick Lewyckyaad475b2014-04-15 07:22:52 +0000486 if (!isIdentifiedObject(V))
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000487 return false;
488
489 Objects.push_back(*I);
490 }
491
492 return true;
493}
494
Jozef Kolek3b8ddb62014-11-21 22:04:35 +0000495// Replace Branch with the compact branch instruction.
496Iter Filler::replaceWithCompactBranch(MachineBasicBlock &MBB,
497 Iter Branch, DebugLoc DL) {
Eric Christopher6b6db772015-02-02 23:03:43 +0000498 const MipsInstrInfo *TII =
499 MBB.getParent()->getSubtarget<MipsSubtarget>().getInstrInfo();
Jozef Kolek3b8ddb62014-11-21 22:04:35 +0000500
501 unsigned NewOpcode =
502 (((unsigned) Branch->getOpcode()) == Mips::BEQ) ? Mips::BEQZC_MM
503 : Mips::BNEZC_MM;
504
505 const MCInstrDesc &NewDesc = TII->get(NewOpcode);
506 MachineInstrBuilder MIB = BuildMI(MBB, Branch, DL, NewDesc);
507
508 MIB.addReg(Branch->getOperand(0).getReg());
509 MIB.addMBB(Branch->getOperand(2).getMBB());
510
511 Iter tmpIter = Branch;
512 Branch = std::prev(Branch);
513 MBB.erase(tmpIter);
514
515 return Branch;
516}
517
Zoran Jovanovicb554bba2014-11-25 10:50:00 +0000518// For given opcode returns opcode of corresponding instruction with short
519// delay slot.
520static int getEquivalentCallShort(int Opcode) {
521 switch (Opcode) {
522 case Mips::BGEZAL:
523 return Mips::BGEZALS_MM;
524 case Mips::BLTZAL:
525 return Mips::BLTZALS_MM;
526 case Mips::JAL:
527 return Mips::JALS_MM;
528 case Mips::JALR:
529 return Mips::JALRS_MM;
530 case Mips::JALR16_MM:
531 return Mips::JALRS16_MM;
532 default:
533 llvm_unreachable("Unexpected call instruction for microMIPS.");
534 }
535}
536
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000537/// runOnMachineBasicBlock - Fill in delay slots for the given basic block.
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000538/// We assume there is only one delay slot per delayed instruction.
Akira Hatanaka1083eb12013-02-14 23:20:15 +0000539bool Filler::runOnMachineBasicBlock(MachineBasicBlock &MBB) {
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000540 bool Changed = false;
Eric Christopher6b6db772015-02-02 23:03:43 +0000541 const MipsSubtarget &STI = MBB.getParent()->getSubtarget<MipsSubtarget>();
Eric Christopher96e72c62015-01-29 23:27:36 +0000542 bool InMicroMipsMode = STI.inMicroMipsMode();
543 const MipsInstrInfo *TII = STI.getInstrInfo();
Akira Hatanakae7b06972011-10-05 01:30:09 +0000544
Akira Hatanakadfd2f242013-02-14 23:11:24 +0000545 for (Iter I = MBB.begin(); I != MBB.end(); ++I) {
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000546 if (!hasUnoccupiedSlot(&*I))
Akira Hatanakaa0612812013-02-07 21:32:32 +0000547 continue;
Akira Hatanaka5d4e4ea2011-10-05 01:23:39 +0000548
Zoran Jovanovicb554bba2014-11-25 10:50:00 +0000549 ++FilledSlots;
550 Changed = true;
Akira Hatanaka5d4e4ea2011-10-05 01:23:39 +0000551
Zoran Jovanovicb554bba2014-11-25 10:50:00 +0000552 // Delay slot filling is disabled at -O0.
553 if (!DisableDelaySlotFiller && (TM.getOptLevel() != CodeGenOpt::None)) {
554 bool Filled = false;
Zoran Jovanovic37bca102014-11-10 17:27:56 +0000555
Zoran Jovanovicb554bba2014-11-25 10:50:00 +0000556 if (searchBackward(MBB, I)) {
557 Filled = true;
558 } else if (I->isTerminator()) {
559 if (searchSuccBBs(MBB, I)) {
560 Filled = true;
Zoran Jovanovic37bca102014-11-10 17:27:56 +0000561 }
Zoran Jovanovicb554bba2014-11-25 10:50:00 +0000562 } else if (searchForward(MBB, I)) {
563 Filled = true;
564 }
565
566 if (Filled) {
567 // Get instruction with delay slot.
568 MachineBasicBlock::instr_iterator DSI(I);
569
570 if (InMicroMipsMode && TII->GetInstSizeInBytes(std::next(DSI)) == 2 &&
571 DSI->isCall()) {
572 // If instruction in delay slot is 16b change opcode to
573 // corresponding instruction with short delay slot.
574 DSI->setDesc(TII->get(getEquivalentCallShort(DSI->getOpcode())));
575 }
576
577 continue;
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000578 }
579 }
Akira Hatanaka5ac78682012-06-13 23:25:52 +0000580
Jozef Kolek3b8ddb62014-11-21 22:04:35 +0000581 // If instruction is BEQ or BNE with one ZERO register, then instead of
582 // adding NOP replace this instruction with the corresponding compact
583 // branch instruction, i.e. BEQZC or BNEZC.
584 unsigned Opcode = I->getOpcode();
585 if (InMicroMipsMode &&
586 (Opcode == Mips::BEQ || Opcode == Mips::BNE) &&
587 ((unsigned) I->getOperand(1).getReg()) == Mips::ZERO) {
588
589 I = replaceWithCompactBranch(MBB, I, I->getDebugLoc());
590
591 } else {
592 // Bundle the NOP to the instruction with the delay slot.
Jozef Kolek3b8ddb62014-11-21 22:04:35 +0000593 BuildMI(MBB, std::next(I), I->getDebugLoc(), TII->get(Mips::NOP));
594 MIBundleBuilder(MBB, I, std::next(I, 2));
595 }
Akira Hatanakaa0612812013-02-07 21:32:32 +0000596 }
597
Bruno Cardoso Lopes0b97ce72007-08-18 01:50:47 +0000598 return Changed;
599}
600
601/// createMipsDelaySlotFillerPass - Returns a pass that fills in delay
602/// slots in Mips MachineFunctions
603FunctionPass *llvm::createMipsDelaySlotFillerPass(MipsTargetMachine &tm) {
604 return new Filler(tm);
605}
606
Akira Hatanakaf815db52013-03-01 00:26:14 +0000607template<typename IterTy>
608bool Filler::searchRange(MachineBasicBlock &MBB, IterTy Begin, IterTy End,
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000609 RegDefsUses &RegDU, InspectMemInstr& IM,
Jozef Koleke7cad7a2015-01-13 15:59:17 +0000610 IterTy &Filler, Iter Slot) const {
Akira Hatanakaf815db52013-03-01 00:26:14 +0000611 for (IterTy I = Begin; I != End; ++I) {
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000612 // skip debug value
613 if (I->isDebugValue())
614 continue;
615
Akira Hatanakadfd2f242013-02-14 23:11:24 +0000616 if (terminateSearch(*I))
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000617 break;
618
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000619 assert((!I->isCall() && !I->isReturn() && !I->isBranch()) &&
620 "Cannot put calls, returns or branches in delay slot.");
621
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000622 if (delayHasHazard(*I, RegDU, IM))
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000623 continue;
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000624
Eric Christopher6b6db772015-02-02 23:03:43 +0000625 const MipsSubtarget &STI = MBB.getParent()->getSubtarget<MipsSubtarget>();
626 if (STI.isTargetNaCl()) {
Sasa Stankovic5fddf612014-03-10 20:34:23 +0000627 // In NaCl, instructions that must be masked are forbidden in delay slots.
628 // We only check for loads, stores and SP changes. Calls, returns and
629 // branches are not checked because non-NaCl targets never put them in
630 // delay slots.
631 unsigned AddrIdx;
Eric Christopherd9134482014-08-04 21:25:23 +0000632 if ((isBasePlusOffsetMemoryAccess(I->getOpcode(), &AddrIdx) &&
633 baseRegNeedsLoadStoreMask(I->getOperand(AddrIdx).getReg())) ||
Eric Christopher6b6db772015-02-02 23:03:43 +0000634 I->modifiesRegister(Mips::SP, STI.getRegisterInfo()))
Sasa Stankovic5fddf612014-03-10 20:34:23 +0000635 continue;
636 }
637
Eric Christopher6b6db772015-02-02 23:03:43 +0000638 bool InMicroMipsMode = STI.inMicroMipsMode();
639 const MipsInstrInfo *TII = STI.getInstrInfo();
Jozef Koleke7cad7a2015-01-13 15:59:17 +0000640 unsigned Opcode = (*Slot).getOpcode();
641 if (InMicroMipsMode && TII->GetInstSizeInBytes(&(*I)) == 2 &&
642 (Opcode == Mips::JR || Opcode == Mips::PseudoIndirectBranch ||
643 Opcode == Mips::PseudoReturn))
644 continue;
645
Akira Hatanakaf815db52013-03-01 00:26:14 +0000646 Filler = I;
647 return true;
648 }
649
650 return false;
651}
652
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000653bool Filler::searchBackward(MachineBasicBlock &MBB, Iter Slot) const {
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000654 if (DisableBackwardSearch)
655 return false;
656
Eric Christopher96e72c62015-01-29 23:27:36 +0000657 RegDefsUses RegDU(*MBB.getParent()->getSubtarget().getRegisterInfo());
Akira Hatanakaf815db52013-03-01 00:26:14 +0000658 MemDefsUses MemDU(MBB.getParent()->getFrameInfo());
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000659 ReverseIter Filler;
Akira Hatanakaf815db52013-03-01 00:26:14 +0000660
661 RegDU.init(*Slot);
662
Jozef Koleke7cad7a2015-01-13 15:59:17 +0000663 if (!searchRange(MBB, ReverseIter(Slot), MBB.rend(), RegDU, MemDU, Filler,
664 Slot))
Akira Hatanaka4c0a7122013-10-07 19:33:02 +0000665 return false;
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000666
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000667 MBB.splice(std::next(Slot), &MBB, std::next(Filler).base());
668 MIBundleBuilder(MBB, Slot, std::next(Slot, 2));
Akira Hatanaka4c0a7122013-10-07 19:33:02 +0000669 ++UsefulSlots;
670 return true;
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000671}
672
673bool Filler::searchForward(MachineBasicBlock &MBB, Iter Slot) const {
674 // Can handle only calls.
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000675 if (DisableForwardSearch || !Slot->isCall())
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000676 return false;
677
Eric Christopher96e72c62015-01-29 23:27:36 +0000678 RegDefsUses RegDU(*MBB.getParent()->getSubtarget().getRegisterInfo());
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000679 NoMemInstr NM;
680 Iter Filler;
681
682 RegDU.setCallerSaved(*Slot);
683
Jozef Koleke7cad7a2015-01-13 15:59:17 +0000684 if (!searchRange(MBB, std::next(Slot), MBB.end(), RegDU, NM, Filler, Slot))
Akira Hatanaka4c0a7122013-10-07 19:33:02 +0000685 return false;
Akira Hatanaka5d4e4ea2011-10-05 01:23:39 +0000686
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +0000687 MBB.splice(std::next(Slot), &MBB, Filler);
688 MIBundleBuilder(MBB, Slot, std::next(Slot, 2));
Akira Hatanaka4c0a7122013-10-07 19:33:02 +0000689 ++UsefulSlots;
690 return true;
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000691}
692
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000693bool Filler::searchSuccBBs(MachineBasicBlock &MBB, Iter Slot) const {
694 if (DisableSuccBBSearch)
695 return false;
696
697 MachineBasicBlock *SuccBB = selectSuccBB(MBB);
698
699 if (!SuccBB)
700 return false;
701
Eric Christopher96e72c62015-01-29 23:27:36 +0000702 RegDefsUses RegDU(*MBB.getParent()->getSubtarget().getRegisterInfo());
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000703 bool HasMultipleSuccs = false;
704 BB2BrMap BrMap;
Benjamin Kramerd2da7202014-04-21 09:34:48 +0000705 std::unique_ptr<InspectMemInstr> IM;
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000706 Iter Filler;
707
708 // Iterate over SuccBB's predecessor list.
709 for (MachineBasicBlock::pred_iterator PI = SuccBB->pred_begin(),
710 PE = SuccBB->pred_end(); PI != PE; ++PI)
711 if (!examinePred(**PI, *SuccBB, RegDU, HasMultipleSuccs, BrMap))
712 return false;
713
714 // Do not allow moving instructions which have unallocatable register operands
715 // across basic block boundaries.
716 RegDU.setUnallocatableRegs(*MBB.getParent());
717
718 // Only allow moving loads from stack or constants if any of the SuccBB's
719 // predecessors have multiple successors.
720 if (HasMultipleSuccs) {
721 IM.reset(new LoadFromStackOrConst());
722 } else {
723 const MachineFrameInfo *MFI = MBB.getParent()->getFrameInfo();
724 IM.reset(new MemDefsUses(MFI));
725 }
726
Jozef Koleke7cad7a2015-01-13 15:59:17 +0000727 if (!searchRange(MBB, SuccBB->begin(), SuccBB->end(), RegDU, *IM, Filler,
728 Slot))
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000729 return false;
730
731 insertDelayFiller(Filler, BrMap);
732 addLiveInRegs(Filler, *SuccBB);
733 Filler->eraseFromParent();
734
735 return true;
736}
737
738MachineBasicBlock *Filler::selectSuccBB(MachineBasicBlock &B) const {
739 if (B.succ_empty())
Craig Topper062a2ba2014-04-25 05:30:21 +0000740 return nullptr;
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000741
742 // Select the successor with the larget edge weight.
Benjamin Kramer3a377bc2014-03-01 11:47:00 +0000743 auto &Prob = getAnalysis<MachineBranchProbabilityInfo>();
744 MachineBasicBlock *S = *std::max_element(B.succ_begin(), B.succ_end(),
745 [&](const MachineBasicBlock *Dst0,
746 const MachineBasicBlock *Dst1) {
747 return Prob.getEdgeWeight(&B, Dst0) < Prob.getEdgeWeight(&B, Dst1);
748 });
Craig Topper062a2ba2014-04-25 05:30:21 +0000749 return S->isLandingPad() ? nullptr : S;
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000750}
751
752std::pair<MipsInstrInfo::BranchType, MachineInstr *>
753Filler::getBranch(MachineBasicBlock &MBB, const MachineBasicBlock &Dst) const {
Eric Christopher6b6db772015-02-02 23:03:43 +0000754 const MipsInstrInfo *TII =
755 MBB.getParent()->getSubtarget<MipsSubtarget>().getInstrInfo();
Craig Topper062a2ba2014-04-25 05:30:21 +0000756 MachineBasicBlock *TrueBB = nullptr, *FalseBB = nullptr;
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000757 SmallVector<MachineInstr*, 2> BranchInstrs;
758 SmallVector<MachineOperand, 2> Cond;
759
760 MipsInstrInfo::BranchType R =
761 TII->AnalyzeBranch(MBB, TrueBB, FalseBB, Cond, false, BranchInstrs);
762
763 if ((R == MipsInstrInfo::BT_None) || (R == MipsInstrInfo::BT_NoBranch))
Craig Topper062a2ba2014-04-25 05:30:21 +0000764 return std::make_pair(R, nullptr);
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000765
766 if (R != MipsInstrInfo::BT_CondUncond) {
767 if (!hasUnoccupiedSlot(BranchInstrs[0]))
Craig Topper062a2ba2014-04-25 05:30:21 +0000768 return std::make_pair(MipsInstrInfo::BT_None, nullptr);
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000769
770 assert(((R != MipsInstrInfo::BT_Uncond) || (TrueBB == &Dst)));
771
772 return std::make_pair(R, BranchInstrs[0]);
773 }
774
775 assert((TrueBB == &Dst) || (FalseBB == &Dst));
776
777 // Examine the conditional branch. See if its slot is occupied.
778 if (hasUnoccupiedSlot(BranchInstrs[0]))
779 return std::make_pair(MipsInstrInfo::BT_Cond, BranchInstrs[0]);
780
781 // If that fails, try the unconditional branch.
782 if (hasUnoccupiedSlot(BranchInstrs[1]) && (FalseBB == &Dst))
783 return std::make_pair(MipsInstrInfo::BT_Uncond, BranchInstrs[1]);
784
Craig Topper062a2ba2014-04-25 05:30:21 +0000785 return std::make_pair(MipsInstrInfo::BT_None, nullptr);
Akira Hatanaka8f7bfb32013-03-01 02:03:51 +0000786}
787
788bool Filler::examinePred(MachineBasicBlock &Pred, const MachineBasicBlock &Succ,
789 RegDefsUses &RegDU, bool &HasMultipleSuccs,
790 BB2BrMap &BrMap) const {
791 std::pair<MipsInstrInfo::BranchType, MachineInstr *> P =
792 getBranch(Pred, Succ);
793
794 // Return if either getBranch wasn't able to analyze the branches or there
795 // were no branches with unoccupied slots.
796 if (P.first == MipsInstrInfo::BT_None)
797 return false;
798
799 if ((P.first != MipsInstrInfo::BT_Uncond) &&
800 (P.first != MipsInstrInfo::BT_NoBranch)) {
801 HasMultipleSuccs = true;
802 RegDU.addLiveOut(Pred, Succ);
803 }
804
805 BrMap[&Pred] = P.second;
806 return true;
807}
808
Akira Hatanakaeb33ced2013-03-01 00:16:31 +0000809bool Filler::delayHasHazard(const MachineInstr &Candidate, RegDefsUses &RegDU,
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000810 InspectMemInstr &IM) const {
Akira Hatanaka06bd1382013-02-14 23:40:57 +0000811 bool HasHazard = (Candidate.isImplicitDef() || Candidate.isKill());
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000812
Akira Hatanakae01ff9d2013-03-01 00:50:52 +0000813 HasHazard |= IM.hasHazard(Candidate);
Akira Hatanaka979899e2013-02-26 01:30:05 +0000814 HasHazard |= RegDU.update(Candidate, 0, Candidate.getNumOperands());
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000815
Akira Hatanaka06bd1382013-02-14 23:40:57 +0000816 return HasHazard;
Akira Hatanakaf2619ee2011-09-29 23:52:13 +0000817}
818
Akira Hatanakadfd2f242013-02-14 23:11:24 +0000819bool Filler::terminateSearch(const MachineInstr &Candidate) const {
820 return (Candidate.isTerminator() || Candidate.isCall() ||
Rafael Espindolab1f25f12014-03-07 06:08:31 +0000821 Candidate.isPosition() || Candidate.isInlineAsm() ||
Akira Hatanakadfd2f242013-02-14 23:11:24 +0000822 Candidate.hasUnmodeledSideEffects());
823}