blob: 15340a3f10849ae9b07ff9324cec18f35c5e3af5 [file] [log] [blame]
Chris Lattner64105522008-01-01 01:03:04 +00001//===-- TargetInstrInfoImpl.cpp - Target Instruction Information ----------===//
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 file implements the TargetInstrInfoImpl class, it just provides default
11// implementations of various methods.
12//
13//===----------------------------------------------------------------------===//
14
15#include "llvm/Target/TargetInstrInfo.h"
Evan Cheng86050dc2010-06-18 23:09:54 +000016#include "llvm/Target/TargetLowering.h"
Dan Gohmana70dca12009-10-09 23:27:56 +000017#include "llvm/Target/TargetMachine.h"
18#include "llvm/Target/TargetRegisterInfo.h"
Owen Anderson44eb65c2008-08-14 22:49:33 +000019#include "llvm/ADT/SmallVector.h"
Dan Gohmanc54baa22008-12-03 18:43:12 +000020#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner64105522008-01-01 01:03:04 +000021#include "llvm/CodeGen/MachineInstr.h"
Evan Cheng58dcb0e2008-06-16 07:33:11 +000022#include "llvm/CodeGen/MachineInstrBuilder.h"
Dan Gohmanc76909a2009-09-25 20:36:54 +000023#include "llvm/CodeGen/MachineMemOperand.h"
Dan Gohmana70dca12009-10-09 23:27:56 +000024#include "llvm/CodeGen/MachineRegisterInfo.h"
Andrew Trick6b120722010-12-08 20:04:29 +000025#include "llvm/CodeGen/ScoreboardHazardRecognizer.h"
Dan Gohmanc54baa22008-12-03 18:43:12 +000026#include "llvm/CodeGen/PseudoSourceValue.h"
Andrew Trickc8bfd1d2011-01-21 05:51:33 +000027#include "llvm/Support/CommandLine.h"
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +000028#include "llvm/Support/Debug.h"
Evan Cheng34c75092009-07-10 23:26:12 +000029#include "llvm/Support/ErrorHandling.h"
30#include "llvm/Support/raw_ostream.h"
Chris Lattner64105522008-01-01 01:03:04 +000031using namespace llvm;
32
Andrew Trickc8bfd1d2011-01-21 05:51:33 +000033static cl::opt<bool> DisableHazardRecognizer(
34 "disable-sched-hazard", cl::Hidden, cl::init(false),
35 cl::desc("Disable hazard detection during preRA scheduling"));
36
Evan Cheng4d54e5b2010-06-22 01:18:16 +000037/// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything
38/// after it, replacing it with an unconditional branch to NewDest.
Evan Cheng86050dc2010-06-18 23:09:54 +000039void
40TargetInstrInfoImpl::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail,
41 MachineBasicBlock *NewDest) const {
42 MachineBasicBlock *MBB = Tail->getParent();
43
44 // Remove all the old successors of MBB from the CFG.
45 while (!MBB->succ_empty())
46 MBB->removeSuccessor(MBB->succ_begin());
47
48 // Remove all the dead instructions from the end of MBB.
49 MBB->erase(Tail, MBB->end());
50
51 // If MBB isn't immediately before MBB, insert a branch to it.
52 if (++MachineFunction::iterator(MBB) != MachineFunction::iterator(NewDest))
53 InsertBranch(*MBB, NewDest, 0, SmallVector<MachineOperand, 0>(),
54 Tail->getDebugLoc());
55 MBB->addSuccessor(NewDest);
56}
57
Chris Lattner64105522008-01-01 01:03:04 +000058// commuteInstruction - The default implementation of this method just exchanges
Evan Cheng34c75092009-07-10 23:26:12 +000059// the two operands returned by findCommutedOpIndices.
Evan Cheng58dcb0e2008-06-16 07:33:11 +000060MachineInstr *TargetInstrInfoImpl::commuteInstruction(MachineInstr *MI,
61 bool NewMI) const {
Evan Cheng498c2902009-07-01 08:29:08 +000062 const TargetInstrDesc &TID = MI->getDesc();
63 bool HasDef = TID.getNumDefs();
Evan Cheng34c75092009-07-10 23:26:12 +000064 if (HasDef && !MI->getOperand(0).isReg())
65 // No idea how to commute this instruction. Target should implement its own.
66 return 0;
67 unsigned Idx1, Idx2;
68 if (!findCommutedOpIndices(MI, Idx1, Idx2)) {
69 std::string msg;
70 raw_string_ostream Msg(msg);
71 Msg << "Don't know how to commute: " << *MI;
Chris Lattner75361b62010-04-07 22:58:41 +000072 report_fatal_error(Msg.str());
Evan Cheng34c75092009-07-10 23:26:12 +000073 }
Evan Cheng498c2902009-07-01 08:29:08 +000074
75 assert(MI->getOperand(Idx1).isReg() && MI->getOperand(Idx2).isReg() &&
Chris Lattner64105522008-01-01 01:03:04 +000076 "This only knows how to commute register operands so far");
Evan Cheng498c2902009-07-01 08:29:08 +000077 unsigned Reg1 = MI->getOperand(Idx1).getReg();
78 unsigned Reg2 = MI->getOperand(Idx2).getReg();
79 bool Reg1IsKill = MI->getOperand(Idx1).isKill();
80 bool Reg2IsKill = MI->getOperand(Idx2).isKill();
Evan Cheng58dcb0e2008-06-16 07:33:11 +000081 bool ChangeReg0 = false;
Evan Cheng498c2902009-07-01 08:29:08 +000082 if (HasDef && MI->getOperand(0).getReg() == Reg1) {
Evan Chenga4d16a12008-02-13 02:46:49 +000083 // Must be two address instruction!
84 assert(MI->getDesc().getOperandConstraint(0, TOI::TIED_TO) &&
85 "Expecting a two-address instruction!");
86 Reg2IsKill = false;
Evan Cheng58dcb0e2008-06-16 07:33:11 +000087 ChangeReg0 = true;
Evan Chenga4d16a12008-02-13 02:46:49 +000088 }
Evan Cheng58dcb0e2008-06-16 07:33:11 +000089
90 if (NewMI) {
91 // Create a new instruction.
Evan Cheng498c2902009-07-01 08:29:08 +000092 unsigned Reg0 = HasDef
93 ? (ChangeReg0 ? Reg2 : MI->getOperand(0).getReg()) : 0;
94 bool Reg0IsDead = HasDef ? MI->getOperand(0).isDead() : false;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000095 MachineFunction &MF = *MI->getParent()->getParent();
Evan Cheng498c2902009-07-01 08:29:08 +000096 if (HasDef)
97 return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
98 .addReg(Reg0, RegState::Define | getDeadRegState(Reg0IsDead))
99 .addReg(Reg2, getKillRegState(Reg2IsKill))
100 .addReg(Reg1, getKillRegState(Reg2IsKill));
101 else
102 return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
103 .addReg(Reg2, getKillRegState(Reg2IsKill))
104 .addReg(Reg1, getKillRegState(Reg2IsKill));
Evan Cheng58dcb0e2008-06-16 07:33:11 +0000105 }
106
107 if (ChangeReg0)
108 MI->getOperand(0).setReg(Reg2);
Evan Cheng498c2902009-07-01 08:29:08 +0000109 MI->getOperand(Idx2).setReg(Reg1);
110 MI->getOperand(Idx1).setReg(Reg2);
111 MI->getOperand(Idx2).setIsKill(Reg1IsKill);
112 MI->getOperand(Idx1).setIsKill(Reg2IsKill);
Chris Lattner64105522008-01-01 01:03:04 +0000113 return MI;
114}
115
Evan Cheng261ce1d2009-07-10 19:15:51 +0000116/// findCommutedOpIndices - If specified MI is commutable, return the two
117/// operand indices that would swap value. Return true if the instruction
118/// is not in a form which this routine understands.
119bool TargetInstrInfoImpl::findCommutedOpIndices(MachineInstr *MI,
120 unsigned &SrcOpIdx1,
121 unsigned &SrcOpIdx2) const {
Evan Cheng498c2902009-07-01 08:29:08 +0000122 const TargetInstrDesc &TID = MI->getDesc();
Evan Cheng261ce1d2009-07-10 19:15:51 +0000123 if (!TID.isCommutable())
Evan Cheng498c2902009-07-01 08:29:08 +0000124 return false;
Evan Cheng261ce1d2009-07-10 19:15:51 +0000125 // This assumes v0 = op v1, v2 and commuting would swap v1 and v2. If this
126 // is not true, then the target must implement this.
127 SrcOpIdx1 = TID.getNumDefs();
128 SrcOpIdx2 = SrcOpIdx1 + 1;
129 if (!MI->getOperand(SrcOpIdx1).isReg() ||
130 !MI->getOperand(SrcOpIdx2).isReg())
131 // No idea.
132 return false;
133 return true;
Evan Chengf20db152008-02-15 18:21:33 +0000134}
135
136
Chris Lattner64105522008-01-01 01:03:04 +0000137bool TargetInstrInfoImpl::PredicateInstruction(MachineInstr *MI,
Owen Anderson44eb65c2008-08-14 22:49:33 +0000138 const SmallVectorImpl<MachineOperand> &Pred) const {
Chris Lattner64105522008-01-01 01:03:04 +0000139 bool MadeChange = false;
Chris Lattner749c6f62008-01-07 07:27:27 +0000140 const TargetInstrDesc &TID = MI->getDesc();
141 if (!TID.isPredicable())
142 return false;
Andrew Trick6b120722010-12-08 20:04:29 +0000143
Chris Lattner749c6f62008-01-07 07:27:27 +0000144 for (unsigned j = 0, i = 0, e = MI->getNumOperands(); i != e; ++i) {
145 if (TID.OpInfo[i].isPredicate()) {
146 MachineOperand &MO = MI->getOperand(i);
Dan Gohmand735b802008-10-03 15:45:36 +0000147 if (MO.isReg()) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000148 MO.setReg(Pred[j].getReg());
149 MadeChange = true;
Dan Gohmand735b802008-10-03 15:45:36 +0000150 } else if (MO.isImm()) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000151 MO.setImm(Pred[j].getImm());
152 MadeChange = true;
Dan Gohmand735b802008-10-03 15:45:36 +0000153 } else if (MO.isMBB()) {
Chris Lattner749c6f62008-01-07 07:27:27 +0000154 MO.setMBB(Pred[j].getMBB());
155 MadeChange = true;
Chris Lattner64105522008-01-01 01:03:04 +0000156 }
Chris Lattner749c6f62008-01-07 07:27:27 +0000157 ++j;
Chris Lattner64105522008-01-01 01:03:04 +0000158 }
159 }
160 return MadeChange;
161}
Evan Chengca1267c2008-03-31 20:40:39 +0000162
163void TargetInstrInfoImpl::reMaterialize(MachineBasicBlock &MBB,
164 MachineBasicBlock::iterator I,
165 unsigned DestReg,
Evan Cheng37844532009-07-16 09:20:10 +0000166 unsigned SubIdx,
Evan Chengd57cdd52009-11-14 02:55:43 +0000167 const MachineInstr *Orig,
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +0000168 const TargetRegisterInfo &TRI) const {
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000169 MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
Jakob Stoklund Olesen9edf7de2010-06-02 22:47:25 +0000170 MI->substituteRegister(MI->getOperand(0).getReg(), DestReg, SubIdx, TRI);
Evan Chengca1267c2008-03-31 20:40:39 +0000171 MBB.insert(I, MI);
172}
173
Evan Cheng9fe20092011-01-20 08:34:58 +0000174bool
175TargetInstrInfoImpl::produceSameValue(const MachineInstr *MI0,
176 const MachineInstr *MI1,
177 const MachineRegisterInfo *MRI) const {
Evan Cheng506049f2010-03-03 01:44:33 +0000178 return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
179}
180
Jakob Stoklund Olesen30ac0462010-01-06 23:47:07 +0000181MachineInstr *TargetInstrInfoImpl::duplicate(MachineInstr *Orig,
182 MachineFunction &MF) const {
183 assert(!Orig->getDesc().isNotDuplicable() &&
184 "Instruction cannot be duplicated");
185 return MF.CloneMachineInstr(Orig);
186}
187
Jakob Stoklund Olesen1f323402010-07-09 20:43:13 +0000188// If the COPY instruction in MI can be folded to a stack operation, return
189// the register class to use.
190static const TargetRegisterClass *canFoldCopy(const MachineInstr *MI,
191 unsigned FoldIdx) {
192 assert(MI->isCopy() && "MI must be a COPY instruction");
193 if (MI->getNumOperands() != 2)
194 return 0;
195 assert(FoldIdx<2 && "FoldIdx refers no nonexistent operand");
196
197 const MachineOperand &FoldOp = MI->getOperand(FoldIdx);
198 const MachineOperand &LiveOp = MI->getOperand(1-FoldIdx);
199
200 if (FoldOp.getSubReg() || LiveOp.getSubReg())
201 return 0;
202
203 unsigned FoldReg = FoldOp.getReg();
204 unsigned LiveReg = LiveOp.getReg();
205
206 assert(TargetRegisterInfo::isVirtualRegister(FoldReg) &&
207 "Cannot fold physregs");
208
209 const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
210 const TargetRegisterClass *RC = MRI.getRegClass(FoldReg);
211
212 if (TargetRegisterInfo::isPhysicalRegister(LiveOp.getReg()))
213 return RC->contains(LiveOp.getReg()) ? RC : 0;
214
215 const TargetRegisterClass *LiveRC = MRI.getRegClass(LiveReg);
216 if (RC == LiveRC || RC->hasSubClass(LiveRC))
217 return RC;
218
219 // FIXME: Allow folding when register classes are memory compatible.
220 return 0;
221}
222
223bool TargetInstrInfoImpl::
224canFoldMemoryOperand(const MachineInstr *MI,
225 const SmallVectorImpl<unsigned> &Ops) const {
226 return MI->isCopy() && Ops.size() == 1 && canFoldCopy(MI, Ops[0]);
227}
228
Dan Gohmanc54baa22008-12-03 18:43:12 +0000229/// foldMemoryOperand - Attempt to fold a load or store of the specified stack
230/// slot into the specified machine instruction for the specified operand(s).
231/// If this is possible, a new instruction is returned with the specified
232/// operand folded, otherwise NULL is returned. The client is responsible for
233/// removing the old instruction and adding the new one in the instruction
234/// stream.
235MachineInstr*
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000236TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI,
Dan Gohmanc54baa22008-12-03 18:43:12 +0000237 const SmallVectorImpl<unsigned> &Ops,
Jakob Stoklund Olesen1f323402010-07-09 20:43:13 +0000238 int FI) const {
Dan Gohmanc54baa22008-12-03 18:43:12 +0000239 unsigned Flags = 0;
240 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
241 if (MI->getOperand(Ops[i]).isDef())
242 Flags |= MachineMemOperand::MOStore;
243 else
244 Flags |= MachineMemOperand::MOLoad;
245
Jakob Stoklund Olesen1f323402010-07-09 20:43:13 +0000246 MachineBasicBlock *MBB = MI->getParent();
247 assert(MBB && "foldMemoryOperand needs an inserted instruction");
248 MachineFunction &MF = *MBB->getParent();
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000249
Dan Gohmanc54baa22008-12-03 18:43:12 +0000250 // Ask the target to do the actual folding.
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000251 if (MachineInstr *NewMI = foldMemoryOperandImpl(MF, MI, Ops, FI)) {
252 // Add a memory operand, foldMemoryOperandImpl doesn't do that.
253 assert((!(Flags & MachineMemOperand::MOStore) ||
254 NewMI->getDesc().mayStore()) &&
255 "Folded a def to a non-store!");
256 assert((!(Flags & MachineMemOperand::MOLoad) ||
257 NewMI->getDesc().mayLoad()) &&
258 "Folded a use to a non-load!");
259 const MachineFrameInfo &MFI = *MF.getFrameInfo();
260 assert(MFI.getObjectOffset(FI) != -1);
261 MachineMemOperand *MMO =
Chris Lattner93a95ae2010-09-21 04:46:39 +0000262 MF.getMachineMemOperand(
263 MachinePointerInfo(PseudoSourceValue::getFixedStack(FI)),
264 Flags, MFI.getObjectSize(FI),
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000265 MFI.getObjectAlignment(FI));
266 NewMI->addMemOperand(MF, MMO);
Jakob Stoklund Olesen1f323402010-07-09 20:43:13 +0000267
Jakob Stoklund Olesen1f323402010-07-09 20:43:13 +0000268 // FIXME: change foldMemoryOperandImpl semantics to also insert NewMI.
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000269 return MBB->insert(MI, NewMI);
Jakob Stoklund Olesen1f323402010-07-09 20:43:13 +0000270 }
271
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000272 // Straight COPY may fold as load/store.
273 if (!MI->isCopy() || Ops.size() != 1)
274 return 0;
Dan Gohmanc54baa22008-12-03 18:43:12 +0000275
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000276 const TargetRegisterClass *RC = canFoldCopy(MI, Ops[0]);
277 if (!RC)
278 return 0;
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000279
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000280 const MachineOperand &MO = MI->getOperand(1-Ops[0]);
281 MachineBasicBlock::iterator Pos = MI;
282 const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
Dan Gohmanc54baa22008-12-03 18:43:12 +0000283
Jakob Stoklund Olesen9fac4152010-07-13 00:23:30 +0000284 if (Flags == MachineMemOperand::MOStore)
285 storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI);
286 else
287 loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI);
288 return --Pos;
Dan Gohmanc54baa22008-12-03 18:43:12 +0000289}
290
291/// foldMemoryOperand - Same as the previous version except it allows folding
292/// of any load and store from / to any address, not just from a specific
293/// stack slot.
294MachineInstr*
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000295TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI,
Dan Gohmanc54baa22008-12-03 18:43:12 +0000296 const SmallVectorImpl<unsigned> &Ops,
297 MachineInstr* LoadMI) const {
298 assert(LoadMI->getDesc().canFoldAsLoad() && "LoadMI isn't foldable!");
299#ifndef NDEBUG
300 for (unsigned i = 0, e = Ops.size(); i != e; ++i)
301 assert(MI->getOperand(Ops[i]).isUse() && "Folding load into def!");
302#endif
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000303 MachineBasicBlock &MBB = *MI->getParent();
304 MachineFunction &MF = *MBB.getParent();
Dan Gohmanc54baa22008-12-03 18:43:12 +0000305
306 // Ask the target to do the actual folding.
307 MachineInstr *NewMI = foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
308 if (!NewMI) return 0;
309
Jakob Stoklund Olesene05442d2010-07-09 17:29:08 +0000310 NewMI = MBB.insert(MI, NewMI);
311
Dan Gohmanc54baa22008-12-03 18:43:12 +0000312 // Copy the memoperands from the load to the folded instruction.
Dan Gohmanc76909a2009-09-25 20:36:54 +0000313 NewMI->setMemRefs(LoadMI->memoperands_begin(),
314 LoadMI->memoperands_end());
Dan Gohmanc54baa22008-12-03 18:43:12 +0000315
316 return NewMI;
317}
Dan Gohmana70dca12009-10-09 23:27:56 +0000318
Evan Cheng44acc242010-06-12 00:11:53 +0000319bool TargetInstrInfo::
320isReallyTriviallyReMaterializableGeneric(const MachineInstr *MI,
321 AliasAnalysis *AA) const {
Dan Gohmana70dca12009-10-09 23:27:56 +0000322 const MachineFunction &MF = *MI->getParent()->getParent();
323 const MachineRegisterInfo &MRI = MF.getRegInfo();
324 const TargetMachine &TM = MF.getTarget();
325 const TargetInstrInfo &TII = *TM.getInstrInfo();
326 const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
327
328 // A load from a fixed stack slot can be rematerialized. This may be
329 // redundant with subsequent checks, but it's target-independent,
330 // simple, and a common case.
331 int FrameIdx = 0;
332 if (TII.isLoadFromStackSlot(MI, FrameIdx) &&
333 MF.getFrameInfo()->isImmutableObjectIndex(FrameIdx))
334 return true;
335
336 const TargetInstrDesc &TID = MI->getDesc();
337
338 // Avoid instructions obviously unsafe for remat.
Evan Chengc36b7062011-01-07 23:50:32 +0000339 if (TID.isNotDuplicable() || TID.mayStore() ||
340 MI->hasUnmodeledSideEffects())
341 return false;
342
343 // Don't remat inline asm. We have no idea how expensive it is
344 // even if it's side effect free.
345 if (MI->isInlineAsm())
Dan Gohmana70dca12009-10-09 23:27:56 +0000346 return false;
347
348 // Avoid instructions which load from potentially varying memory.
349 if (TID.mayLoad() && !MI->isInvariantLoad(AA))
350 return false;
351
352 // If any of the registers accessed are non-constant, conservatively assume
353 // the instruction is not rematerializable.
354 for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
355 const MachineOperand &MO = MI->getOperand(i);
356 if (!MO.isReg()) continue;
357 unsigned Reg = MO.getReg();
358 if (Reg == 0)
359 continue;
360
361 // Check for a well-behaved physical register.
362 if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
363 if (MO.isUse()) {
364 // If the physreg has no defs anywhere, it's just an ambient register
365 // and we can freely move its uses. Alternatively, if it's allocatable,
366 // it could get allocated to something with a def during allocation.
367 if (!MRI.def_empty(Reg))
368 return false;
369 BitVector AllocatableRegs = TRI.getAllocatableSet(MF, 0);
370 if (AllocatableRegs.test(Reg))
371 return false;
372 // Check for a def among the register's aliases too.
373 for (const unsigned *Alias = TRI.getAliasSet(Reg); *Alias; ++Alias) {
374 unsigned AliasReg = *Alias;
375 if (!MRI.def_empty(AliasReg))
376 return false;
377 if (AllocatableRegs.test(AliasReg))
378 return false;
379 }
380 } else {
381 // A physreg def. We can't remat it.
382 return false;
383 }
384 continue;
385 }
386
387 // Only allow one virtual-register def, and that in the first operand.
388 if (MO.isDef() != (i == 0))
389 return false;
390
391 // For the def, it should be the only def of that register.
Chris Lattner7896c9f2009-12-03 00:50:42 +0000392 if (MO.isDef() && (llvm::next(MRI.def_begin(Reg)) != MRI.def_end() ||
Dan Gohmana70dca12009-10-09 23:27:56 +0000393 MRI.isLiveIn(Reg)))
394 return false;
395
396 // Don't allow any virtual-register uses. Rematting an instruction with
397 // virtual register uses would length the live ranges of the uses, which
398 // is not necessarily a good idea, certainly not "trivial".
399 if (MO.isUse())
400 return false;
401 }
402
403 // Everything checked out.
404 return true;
405}
Evan Cheng774bc882010-06-14 21:06:53 +0000406
Evan Cheng86050dc2010-06-18 23:09:54 +0000407/// isSchedulingBoundary - Test if the given instruction should be
408/// considered a scheduling boundary. This primarily includes labels
409/// and terminators.
410bool TargetInstrInfoImpl::isSchedulingBoundary(const MachineInstr *MI,
411 const MachineBasicBlock *MBB,
412 const MachineFunction &MF) const{
413 // Terminators and labels can't be scheduled around.
414 if (MI->getDesc().isTerminator() || MI->isLabel())
415 return true;
416
417 // Don't attempt to schedule around any instruction that defines
418 // a stack-oriented pointer, as it's unlikely to be profitable. This
419 // saves compile time, because it doesn't require every single
420 // stack slot reference to depend on the instruction that does the
421 // modification.
422 const TargetLowering &TLI = *MF.getTarget().getTargetLowering();
423 if (MI->definesRegister(TLI.getStackPointerRegisterToSaveRestore()))
424 return true;
425
426 return false;
427}
428
Andrew Trickc8bfd1d2011-01-21 05:51:33 +0000429// Provide a global flag for disabling the PreRA hazard recognizer that targets
430// may choose to honor.
431bool TargetInstrInfoImpl::usePreRAHazardRecognizer() const {
432 return !DisableHazardRecognizer;
433}
434
435// Default implementation of CreateTargetRAHazardRecognizer.
Andrew Trick2da8bc82010-12-24 05:03:26 +0000436ScheduleHazardRecognizer *TargetInstrInfoImpl::
437CreateTargetHazardRecognizer(const TargetMachine *TM,
438 const ScheduleDAG *DAG) const {
439 // Dummy hazard recognizer allows all instructions to issue.
440 return new ScheduleHazardRecognizer();
441}
442
Evan Cheng774bc882010-06-14 21:06:53 +0000443// Default implementation of CreateTargetPostRAHazardRecognizer.
444ScheduleHazardRecognizer *TargetInstrInfoImpl::
Andrew Trick2da8bc82010-12-24 05:03:26 +0000445CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
446 const ScheduleDAG *DAG) const {
447 return (ScheduleHazardRecognizer *)
448 new ScoreboardHazardRecognizer(II, DAG, "post-RA-sched");
Evan Cheng774bc882010-06-14 21:06:53 +0000449}