Sorry, several patches in one.
[oota-llvm.git] / lib / CodeGen / TargetInstrInfoImpl.cpp
1 //===-- 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"
16 #include "llvm/Target/TargetLowering.h"
17 #include "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetRegisterInfo.h"
19 #include "llvm/ADT/SmallVector.h"
20 #include "llvm/CodeGen/MachineFrameInfo.h"
21 #include "llvm/CodeGen/MachineInstr.h"
22 #include "llvm/CodeGen/MachineInstrBuilder.h"
23 #include "llvm/CodeGen/MachineMemOperand.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/CodeGen/ScoreboardHazardRecognizer.h"
26 #include "llvm/CodeGen/PseudoSourceValue.h"
27 #include "llvm/Support/Debug.h"
28 #include "llvm/Support/ErrorHandling.h"
29 #include "llvm/Support/raw_ostream.h"
30 using namespace llvm;
31
32 /// ReplaceTailWithBranchTo - Delete the instruction OldInst and everything
33 /// after it, replacing it with an unconditional branch to NewDest.
34 void
35 TargetInstrInfoImpl::ReplaceTailWithBranchTo(MachineBasicBlock::iterator Tail,
36                                              MachineBasicBlock *NewDest) const {
37   MachineBasicBlock *MBB = Tail->getParent();
38
39   // Remove all the old successors of MBB from the CFG.
40   while (!MBB->succ_empty())
41     MBB->removeSuccessor(MBB->succ_begin());
42
43   // Remove all the dead instructions from the end of MBB.
44   MBB->erase(Tail, MBB->end());
45
46   // If MBB isn't immediately before MBB, insert a branch to it.
47   if (++MachineFunction::iterator(MBB) != MachineFunction::iterator(NewDest))
48     InsertBranch(*MBB, NewDest, 0, SmallVector<MachineOperand, 0>(),
49                  Tail->getDebugLoc());
50   MBB->addSuccessor(NewDest);
51 }
52
53 // commuteInstruction - The default implementation of this method just exchanges
54 // the two operands returned by findCommutedOpIndices.
55 MachineInstr *TargetInstrInfoImpl::commuteInstruction(MachineInstr *MI,
56                                                       bool NewMI) const {
57   const TargetInstrDesc &TID = MI->getDesc();
58   bool HasDef = TID.getNumDefs();
59   if (HasDef && !MI->getOperand(0).isReg())
60     // No idea how to commute this instruction. Target should implement its own.
61     return 0;
62   unsigned Idx1, Idx2;
63   if (!findCommutedOpIndices(MI, Idx1, Idx2)) {
64     std::string msg;
65     raw_string_ostream Msg(msg);
66     Msg << "Don't know how to commute: " << *MI;
67     report_fatal_error(Msg.str());
68   }
69
70   assert(MI->getOperand(Idx1).isReg() && MI->getOperand(Idx2).isReg() &&
71          "This only knows how to commute register operands so far");
72   unsigned Reg1 = MI->getOperand(Idx1).getReg();
73   unsigned Reg2 = MI->getOperand(Idx2).getReg();
74   bool Reg1IsKill = MI->getOperand(Idx1).isKill();
75   bool Reg2IsKill = MI->getOperand(Idx2).isKill();
76   bool ChangeReg0 = false;
77   if (HasDef && MI->getOperand(0).getReg() == Reg1) {
78     // Must be two address instruction!
79     assert(MI->getDesc().getOperandConstraint(0, TOI::TIED_TO) &&
80            "Expecting a two-address instruction!");
81     Reg2IsKill = false;
82     ChangeReg0 = true;
83   }
84
85   if (NewMI) {
86     // Create a new instruction.
87     unsigned Reg0 = HasDef
88       ? (ChangeReg0 ? Reg2 : MI->getOperand(0).getReg()) : 0;
89     bool Reg0IsDead = HasDef ? MI->getOperand(0).isDead() : false;
90     MachineFunction &MF = *MI->getParent()->getParent();
91     if (HasDef)
92       return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
93         .addReg(Reg0, RegState::Define | getDeadRegState(Reg0IsDead))
94         .addReg(Reg2, getKillRegState(Reg2IsKill))
95         .addReg(Reg1, getKillRegState(Reg2IsKill));
96     else
97       return BuildMI(MF, MI->getDebugLoc(), MI->getDesc())
98         .addReg(Reg2, getKillRegState(Reg2IsKill))
99         .addReg(Reg1, getKillRegState(Reg2IsKill));
100   }
101
102   if (ChangeReg0)
103     MI->getOperand(0).setReg(Reg2);
104   MI->getOperand(Idx2).setReg(Reg1);
105   MI->getOperand(Idx1).setReg(Reg2);
106   MI->getOperand(Idx2).setIsKill(Reg1IsKill);
107   MI->getOperand(Idx1).setIsKill(Reg2IsKill);
108   return MI;
109 }
110
111 /// findCommutedOpIndices - If specified MI is commutable, return the two
112 /// operand indices that would swap value. Return true if the instruction
113 /// is not in a form which this routine understands.
114 bool TargetInstrInfoImpl::findCommutedOpIndices(MachineInstr *MI,
115                                                 unsigned &SrcOpIdx1,
116                                                 unsigned &SrcOpIdx2) const {
117   const TargetInstrDesc &TID = MI->getDesc();
118   if (!TID.isCommutable())
119     return false;
120   // This assumes v0 = op v1, v2 and commuting would swap v1 and v2. If this
121   // is not true, then the target must implement this.
122   SrcOpIdx1 = TID.getNumDefs();
123   SrcOpIdx2 = SrcOpIdx1 + 1;
124   if (!MI->getOperand(SrcOpIdx1).isReg() ||
125       !MI->getOperand(SrcOpIdx2).isReg())
126     // No idea.
127     return false;
128   return true;
129 }
130
131
132 bool TargetInstrInfoImpl::PredicateInstruction(MachineInstr *MI,
133                             const SmallVectorImpl<MachineOperand> &Pred) const {
134   bool MadeChange = false;
135   const TargetInstrDesc &TID = MI->getDesc();
136   if (!TID.isPredicable())
137     return false;
138
139   for (unsigned j = 0, i = 0, e = MI->getNumOperands(); i != e; ++i) {
140     if (TID.OpInfo[i].isPredicate()) {
141       MachineOperand &MO = MI->getOperand(i);
142       if (MO.isReg()) {
143         MO.setReg(Pred[j].getReg());
144         MadeChange = true;
145       } else if (MO.isImm()) {
146         MO.setImm(Pred[j].getImm());
147         MadeChange = true;
148       } else if (MO.isMBB()) {
149         MO.setMBB(Pred[j].getMBB());
150         MadeChange = true;
151       }
152       ++j;
153     }
154   }
155   return MadeChange;
156 }
157
158 void TargetInstrInfoImpl::reMaterialize(MachineBasicBlock &MBB,
159                                         MachineBasicBlock::iterator I,
160                                         unsigned DestReg,
161                                         unsigned SubIdx,
162                                         const MachineInstr *Orig,
163                                         const TargetRegisterInfo &TRI) const {
164   MachineInstr *MI = MBB.getParent()->CloneMachineInstr(Orig);
165   MI->substituteRegister(MI->getOperand(0).getReg(), DestReg, SubIdx, TRI);
166   MBB.insert(I, MI);
167 }
168
169 bool
170 TargetInstrInfoImpl::produceSameValue(const MachineInstr *MI0,
171                                       const MachineInstr *MI1,
172                                       const MachineRegisterInfo *MRI) const {
173   return MI0->isIdenticalTo(MI1, MachineInstr::IgnoreVRegDefs);
174 }
175
176 MachineInstr *TargetInstrInfoImpl::duplicate(MachineInstr *Orig,
177                                              MachineFunction &MF) const {
178   assert(!Orig->getDesc().isNotDuplicable() &&
179          "Instruction cannot be duplicated");
180   return MF.CloneMachineInstr(Orig);
181 }
182
183 // If the COPY instruction in MI can be folded to a stack operation, return
184 // the register class to use.
185 static const TargetRegisterClass *canFoldCopy(const MachineInstr *MI,
186                                               unsigned FoldIdx) {
187   assert(MI->isCopy() && "MI must be a COPY instruction");
188   if (MI->getNumOperands() != 2)
189     return 0;
190   assert(FoldIdx<2 && "FoldIdx refers no nonexistent operand");
191
192   const MachineOperand &FoldOp = MI->getOperand(FoldIdx);
193   const MachineOperand &LiveOp = MI->getOperand(1-FoldIdx);
194
195   if (FoldOp.getSubReg() || LiveOp.getSubReg())
196     return 0;
197
198   unsigned FoldReg = FoldOp.getReg();
199   unsigned LiveReg = LiveOp.getReg();
200
201   assert(TargetRegisterInfo::isVirtualRegister(FoldReg) &&
202          "Cannot fold physregs");
203
204   const MachineRegisterInfo &MRI = MI->getParent()->getParent()->getRegInfo();
205   const TargetRegisterClass *RC = MRI.getRegClass(FoldReg);
206
207   if (TargetRegisterInfo::isPhysicalRegister(LiveOp.getReg()))
208     return RC->contains(LiveOp.getReg()) ? RC : 0;
209
210   const TargetRegisterClass *LiveRC = MRI.getRegClass(LiveReg);
211   if (RC == LiveRC || RC->hasSubClass(LiveRC))
212     return RC;
213
214   // FIXME: Allow folding when register classes are memory compatible.
215   return 0;
216 }
217
218 bool TargetInstrInfoImpl::
219 canFoldMemoryOperand(const MachineInstr *MI,
220                      const SmallVectorImpl<unsigned> &Ops) const {
221   return MI->isCopy() && Ops.size() == 1 && canFoldCopy(MI, Ops[0]);
222 }
223
224 /// foldMemoryOperand - Attempt to fold a load or store of the specified stack
225 /// slot into the specified machine instruction for the specified operand(s).
226 /// If this is possible, a new instruction is returned with the specified
227 /// operand folded, otherwise NULL is returned. The client is responsible for
228 /// removing the old instruction and adding the new one in the instruction
229 /// stream.
230 MachineInstr*
231 TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI,
232                                    const SmallVectorImpl<unsigned> &Ops,
233                                    int FI) const {
234   unsigned Flags = 0;
235   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
236     if (MI->getOperand(Ops[i]).isDef())
237       Flags |= MachineMemOperand::MOStore;
238     else
239       Flags |= MachineMemOperand::MOLoad;
240
241   MachineBasicBlock *MBB = MI->getParent();
242   assert(MBB && "foldMemoryOperand needs an inserted instruction");
243   MachineFunction &MF = *MBB->getParent();
244
245   // Ask the target to do the actual folding.
246   if (MachineInstr *NewMI = foldMemoryOperandImpl(MF, MI, Ops, FI)) {
247     // Add a memory operand, foldMemoryOperandImpl doesn't do that.
248     assert((!(Flags & MachineMemOperand::MOStore) ||
249             NewMI->getDesc().mayStore()) &&
250            "Folded a def to a non-store!");
251     assert((!(Flags & MachineMemOperand::MOLoad) ||
252             NewMI->getDesc().mayLoad()) &&
253            "Folded a use to a non-load!");
254     const MachineFrameInfo &MFI = *MF.getFrameInfo();
255     assert(MFI.getObjectOffset(FI) != -1);
256     MachineMemOperand *MMO =
257       MF.getMachineMemOperand(
258                     MachinePointerInfo(PseudoSourceValue::getFixedStack(FI)),
259                               Flags, MFI.getObjectSize(FI),
260                               MFI.getObjectAlignment(FI));
261     NewMI->addMemOperand(MF, MMO);
262
263     // FIXME: change foldMemoryOperandImpl semantics to also insert NewMI.
264     return MBB->insert(MI, NewMI);
265   }
266
267   // Straight COPY may fold as load/store.
268   if (!MI->isCopy() || Ops.size() != 1)
269     return 0;
270
271   const TargetRegisterClass *RC = canFoldCopy(MI, Ops[0]);
272   if (!RC)
273     return 0;
274
275   const MachineOperand &MO = MI->getOperand(1-Ops[0]);
276   MachineBasicBlock::iterator Pos = MI;
277   const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo();
278
279   if (Flags == MachineMemOperand::MOStore)
280     storeRegToStackSlot(*MBB, Pos, MO.getReg(), MO.isKill(), FI, RC, TRI);
281   else
282     loadRegFromStackSlot(*MBB, Pos, MO.getReg(), FI, RC, TRI);
283   return --Pos;
284 }
285
286 /// foldMemoryOperand - Same as the previous version except it allows folding
287 /// of any load and store from / to any address, not just from a specific
288 /// stack slot.
289 MachineInstr*
290 TargetInstrInfo::foldMemoryOperand(MachineBasicBlock::iterator MI,
291                                    const SmallVectorImpl<unsigned> &Ops,
292                                    MachineInstr* LoadMI) const {
293   assert(LoadMI->getDesc().canFoldAsLoad() && "LoadMI isn't foldable!");
294 #ifndef NDEBUG
295   for (unsigned i = 0, e = Ops.size(); i != e; ++i)
296     assert(MI->getOperand(Ops[i]).isUse() && "Folding load into def!");
297 #endif
298   MachineBasicBlock &MBB = *MI->getParent();
299   MachineFunction &MF = *MBB.getParent();
300
301   // Ask the target to do the actual folding.
302   MachineInstr *NewMI = foldMemoryOperandImpl(MF, MI, Ops, LoadMI);
303   if (!NewMI) return 0;
304
305   NewMI = MBB.insert(MI, NewMI);
306
307   // Copy the memoperands from the load to the folded instruction.
308   NewMI->setMemRefs(LoadMI->memoperands_begin(),
309                     LoadMI->memoperands_end());
310
311   return NewMI;
312 }
313
314 bool TargetInstrInfo::
315 isReallyTriviallyReMaterializableGeneric(const MachineInstr *MI,
316                                          AliasAnalysis *AA) const {
317   const MachineFunction &MF = *MI->getParent()->getParent();
318   const MachineRegisterInfo &MRI = MF.getRegInfo();
319   const TargetMachine &TM = MF.getTarget();
320   const TargetInstrInfo &TII = *TM.getInstrInfo();
321   const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
322
323   // A load from a fixed stack slot can be rematerialized. This may be
324   // redundant with subsequent checks, but it's target-independent,
325   // simple, and a common case.
326   int FrameIdx = 0;
327   if (TII.isLoadFromStackSlot(MI, FrameIdx) &&
328       MF.getFrameInfo()->isImmutableObjectIndex(FrameIdx))
329     return true;
330
331   const TargetInstrDesc &TID = MI->getDesc();
332
333   // Avoid instructions obviously unsafe for remat.
334   if (TID.isNotDuplicable() || TID.mayStore() ||
335       MI->hasUnmodeledSideEffects())
336     return false;
337
338   // Don't remat inline asm. We have no idea how expensive it is
339   // even if it's side effect free.
340   if (MI->isInlineAsm())
341     return false;
342
343   // Avoid instructions which load from potentially varying memory.
344   if (TID.mayLoad() && !MI->isInvariantLoad(AA))
345     return false;
346
347   // If any of the registers accessed are non-constant, conservatively assume
348   // the instruction is not rematerializable.
349   for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i) {
350     const MachineOperand &MO = MI->getOperand(i);
351     if (!MO.isReg()) continue;
352     unsigned Reg = MO.getReg();
353     if (Reg == 0)
354       continue;
355
356     // Check for a well-behaved physical register.
357     if (TargetRegisterInfo::isPhysicalRegister(Reg)) {
358       if (MO.isUse()) {
359         // If the physreg has no defs anywhere, it's just an ambient register
360         // and we can freely move its uses. Alternatively, if it's allocatable,
361         // it could get allocated to something with a def during allocation.
362         if (!MRI.def_empty(Reg))
363           return false;
364         BitVector AllocatableRegs = TRI.getAllocatableSet(MF, 0);
365         if (AllocatableRegs.test(Reg))
366           return false;
367         // Check for a def among the register's aliases too.
368         for (const unsigned *Alias = TRI.getAliasSet(Reg); *Alias; ++Alias) {
369           unsigned AliasReg = *Alias;
370           if (!MRI.def_empty(AliasReg))
371             return false;
372           if (AllocatableRegs.test(AliasReg))
373             return false;
374         }
375       } else {
376         // A physreg def. We can't remat it.
377         return false;
378       }
379       continue;
380     }
381
382     // Only allow one virtual-register def, and that in the first operand.
383     if (MO.isDef() != (i == 0))
384       return false;
385
386     // For the def, it should be the only def of that register.
387     if (MO.isDef() && (llvm::next(MRI.def_begin(Reg)) != MRI.def_end() ||
388                        MRI.isLiveIn(Reg)))
389       return false;
390
391     // Don't allow any virtual-register uses. Rematting an instruction with
392     // virtual register uses would length the live ranges of the uses, which
393     // is not necessarily a good idea, certainly not "trivial".
394     if (MO.isUse())
395       return false;
396   }
397
398   // Everything checked out.
399   return true;
400 }
401
402 /// isSchedulingBoundary - Test if the given instruction should be
403 /// considered a scheduling boundary. This primarily includes labels
404 /// and terminators.
405 bool TargetInstrInfoImpl::isSchedulingBoundary(const MachineInstr *MI,
406                                                const MachineBasicBlock *MBB,
407                                                const MachineFunction &MF) const{
408   // Terminators and labels can't be scheduled around.
409   if (MI->getDesc().isTerminator() || MI->isLabel())
410     return true;
411
412   // Don't attempt to schedule around any instruction that defines
413   // a stack-oriented pointer, as it's unlikely to be profitable. This
414   // saves compile time, because it doesn't require every single
415   // stack slot reference to depend on the instruction that does the
416   // modification.
417   const TargetLowering &TLI = *MF.getTarget().getTargetLowering();
418   if (MI->definesRegister(TLI.getStackPointerRegisterToSaveRestore()))
419     return true;
420
421   return false;
422 }
423
424 // Default implementation of CreateTargetPreRAHazardRecognizer.
425 ScheduleHazardRecognizer *TargetInstrInfoImpl::
426 CreateTargetHazardRecognizer(const TargetMachine *TM,
427                              const ScheduleDAG *DAG) const {
428   // Dummy hazard recognizer allows all instructions to issue.
429   return new ScheduleHazardRecognizer();
430 }
431
432 // Default implementation of CreateTargetPostRAHazardRecognizer.
433 ScheduleHazardRecognizer *TargetInstrInfoImpl::
434 CreateTargetPostRAHazardRecognizer(const InstrItineraryData *II,
435                                    const ScheduleDAG *DAG) const {
436   return (ScheduleHazardRecognizer *)
437     new ScoreboardHazardRecognizer(II, DAG, "post-RA-sched");
438 }