TargetInstrInfo.h revision 746ad69e088176819981b4b2c5ac8dcd49f5e60e
1//===-- llvm/Target/TargetInstrInfo.h - Instruction Info --------*- C++ -*-===//
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 describes the target machine instruction set to the code generator.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_TARGET_TARGETINSTRINFO_H
15#define LLVM_TARGET_TARGETINSTRINFO_H
16
17#include "llvm/Target/TargetInstrDesc.h"
18#include "llvm/CodeGen/MachineFunction.h"
19
20namespace llvm {
21
22class CalleeSavedInfo;
23class LiveVariables;
24class MCAsmInfo;
25class MachineMemOperand;
26class MDNode;
27class MCInst;
28class SDNode;
29class SelectionDAG;
30class TargetRegisterClass;
31class TargetRegisterInfo;
32
33template<class T> class SmallVectorImpl;
34
35
36//---------------------------------------------------------------------------
37///
38/// TargetInstrInfo - Interface to description of machine instruction set
39///
40class TargetInstrInfo {
41  const TargetInstrDesc *Descriptors; // Raw array to allow static init'n
42  unsigned NumOpcodes;                // Number of entries in the desc array
43
44  TargetInstrInfo(const TargetInstrInfo &);  // DO NOT IMPLEMENT
45  void operator=(const TargetInstrInfo &);   // DO NOT IMPLEMENT
46public:
47  TargetInstrInfo(const TargetInstrDesc *desc, unsigned NumOpcodes);
48  virtual ~TargetInstrInfo();
49
50  unsigned getNumOpcodes() const { return NumOpcodes; }
51
52  /// get - Return the machine instruction descriptor that corresponds to the
53  /// specified instruction opcode.
54  ///
55  const TargetInstrDesc &get(unsigned Opcode) const {
56    assert(Opcode < NumOpcodes && "Invalid opcode!");
57    return Descriptors[Opcode];
58  }
59
60  /// isTriviallyReMaterializable - Return true if the instruction is trivially
61  /// rematerializable, meaning it has no side effects and requires no operands
62  /// that aren't always available.
63  bool isTriviallyReMaterializable(const MachineInstr *MI,
64                                   AliasAnalysis *AA = 0) const {
65    return MI->getOpcode() == TargetOpcode::IMPLICIT_DEF ||
66           (MI->getDesc().isRematerializable() &&
67            (isReallyTriviallyReMaterializable(MI, AA) ||
68             isReallyTriviallyReMaterializableGeneric(MI, AA)));
69  }
70
71protected:
72  /// isReallyTriviallyReMaterializable - For instructions with opcodes for
73  /// which the M_REMATERIALIZABLE flag is set, this hook lets the target
74  /// specify whether the instruction is actually trivially rematerializable,
75  /// taking into consideration its operands. This predicate must return false
76  /// if the instruction has any side effects other than producing a value, or
77  /// if it requres any address registers that are not always available.
78  virtual bool isReallyTriviallyReMaterializable(const MachineInstr *MI,
79                                                 AliasAnalysis *AA) const {
80    return false;
81  }
82
83private:
84  /// isReallyTriviallyReMaterializableGeneric - For instructions with opcodes
85  /// for which the M_REMATERIALIZABLE flag is set and the target hook
86  /// isReallyTriviallyReMaterializable returns false, this function does
87  /// target-independent tests to determine if the instruction is really
88  /// trivially rematerializable.
89  bool isReallyTriviallyReMaterializableGeneric(const MachineInstr *MI,
90                                                AliasAnalysis *AA) const;
91
92public:
93  /// isMoveInstr - Return true if the instruction is a register to register
94  /// move and return the source and dest operands and their sub-register
95  /// indices by reference.
96  virtual bool isMoveInstr(const MachineInstr& MI,
97                           unsigned& SrcReg, unsigned& DstReg,
98                           unsigned& SrcSubIdx, unsigned& DstSubIdx) const {
99    return false;
100  }
101
102  /// isCoalescableExtInstr - Return true if the instruction is a "coalescable"
103  /// extension instruction. That is, it's like a copy where it's legal for the
104  /// source to overlap the destination. e.g. X86::MOVSX64rr32. If this returns
105  /// true, then it's expected the pre-extension value is available as a subreg
106  /// of the result register. This also returns the sub-register index in
107  /// SubIdx.
108  virtual bool isCoalescableExtInstr(const MachineInstr &MI,
109                                     unsigned &SrcReg, unsigned &DstReg,
110                                     unsigned &SubIdx) const {
111    return false;
112  }
113
114  /// isIdentityCopy - Return true if the instruction is a copy (or
115  /// extract_subreg, insert_subreg, subreg_to_reg) where the source and
116  /// destination registers are the same.
117  bool isIdentityCopy(const MachineInstr &MI) const {
118    unsigned SrcReg, DstReg, SrcSubIdx, DstSubIdx;
119    if (isMoveInstr(MI, SrcReg, DstReg, SrcSubIdx, DstSubIdx) &&
120        SrcReg == DstReg)
121      return true;
122
123    if (MI.getOpcode() == TargetOpcode::EXTRACT_SUBREG &&
124        MI.getOperand(0).getReg() == MI.getOperand(1).getReg())
125    return true;
126
127    if ((MI.getOpcode() == TargetOpcode::INSERT_SUBREG ||
128         MI.getOpcode() == TargetOpcode::SUBREG_TO_REG) &&
129        MI.getOperand(0).getReg() == MI.getOperand(2).getReg())
130      return true;
131    return false;
132  }
133
134  /// isLoadFromStackSlot - If the specified machine instruction is a direct
135  /// load from a stack slot, return the virtual or physical register number of
136  /// the destination along with the FrameIndex of the loaded stack slot.  If
137  /// not, return 0.  This predicate must return 0 if the instruction has
138  /// any side effects other than loading from the stack slot.
139  virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
140                                       int &FrameIndex) const {
141    return 0;
142  }
143
144  /// isLoadFromStackSlotPostFE - Check for post-frame ptr elimination
145  /// stack locations as well.  This uses a heuristic so it isn't
146  /// reliable for correctness.
147  virtual unsigned isLoadFromStackSlotPostFE(const MachineInstr *MI,
148                                             int &FrameIndex) const {
149    return 0;
150  }
151
152  /// hasLoadFromStackSlot - If the specified machine instruction has
153  /// a load from a stack slot, return true along with the FrameIndex
154  /// of the loaded stack slot and the machine mem operand containing
155  /// the reference.  If not, return false.  Unlike
156  /// isLoadFromStackSlot, this returns true for any instructions that
157  /// loads from the stack.  This is just a hint, as some cases may be
158  /// missed.
159  virtual bool hasLoadFromStackSlot(const MachineInstr *MI,
160                                    const MachineMemOperand *&MMO,
161                                    int &FrameIndex) const {
162    return 0;
163  }
164
165  /// isStoreToStackSlot - If the specified machine instruction is a direct
166  /// store to a stack slot, return the virtual or physical register number of
167  /// the source reg along with the FrameIndex of the loaded stack slot.  If
168  /// not, return 0.  This predicate must return 0 if the instruction has
169  /// any side effects other than storing to the stack slot.
170  virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
171                                      int &FrameIndex) const {
172    return 0;
173  }
174
175  /// isStoreToStackSlotPostFE - Check for post-frame ptr elimination
176  /// stack locations as well.  This uses a heuristic so it isn't
177  /// reliable for correctness.
178  virtual unsigned isStoreToStackSlotPostFE(const MachineInstr *MI,
179                                            int &FrameIndex) const {
180    return 0;
181  }
182
183  /// hasStoreToStackSlot - If the specified machine instruction has a
184  /// store to a stack slot, return true along with the FrameIndex of
185  /// the loaded stack slot and the machine mem operand containing the
186  /// reference.  If not, return false.  Unlike isStoreToStackSlot,
187  /// this returns true for any instructions that stores to the
188  /// stack.  This is just a hint, as some cases may be missed.
189  virtual bool hasStoreToStackSlot(const MachineInstr *MI,
190                                   const MachineMemOperand *&MMO,
191                                   int &FrameIndex) const {
192    return 0;
193  }
194
195  /// reMaterialize - Re-issue the specified 'original' instruction at the
196  /// specific location targeting a new destination register.
197  virtual void reMaterialize(MachineBasicBlock &MBB,
198                             MachineBasicBlock::iterator MI,
199                             unsigned DestReg, unsigned SubIdx,
200                             const MachineInstr *Orig,
201                             const TargetRegisterInfo *TRI) const = 0;
202
203  /// duplicate - Create a duplicate of the Orig instruction in MF. This is like
204  /// MachineFunction::CloneMachineInstr(), but the target may update operands
205  /// that are required to be unique.
206  ///
207  /// The instruction must be duplicable as indicated by isNotDuplicable().
208  virtual MachineInstr *duplicate(MachineInstr *Orig,
209                                  MachineFunction &MF) const = 0;
210
211  /// convertToThreeAddress - This method must be implemented by targets that
212  /// set the M_CONVERTIBLE_TO_3_ADDR flag.  When this flag is set, the target
213  /// may be able to convert a two-address instruction into one or more true
214  /// three-address instructions on demand.  This allows the X86 target (for
215  /// example) to convert ADD and SHL instructions into LEA instructions if they
216  /// would require register copies due to two-addressness.
217  ///
218  /// This method returns a null pointer if the transformation cannot be
219  /// performed, otherwise it returns the last new instruction.
220  ///
221  virtual MachineInstr *
222  convertToThreeAddress(MachineFunction::iterator &MFI,
223                   MachineBasicBlock::iterator &MBBI, LiveVariables *LV) const {
224    return 0;
225  }
226
227  /// commuteInstruction - If a target has any instructions that are commutable,
228  /// but require converting to a different instruction or making non-trivial
229  /// changes to commute them, this method can overloaded to do this.  The
230  /// default implementation of this method simply swaps the first two operands
231  /// of MI and returns it.
232  ///
233  /// If a target wants to make more aggressive changes, they can construct and
234  /// return a new machine instruction.  If an instruction cannot commute, it
235  /// can also return null.
236  ///
237  /// If NewMI is true, then a new machine instruction must be created.
238  ///
239  virtual MachineInstr *commuteInstruction(MachineInstr *MI,
240                                           bool NewMI = false) const = 0;
241
242  /// findCommutedOpIndices - If specified MI is commutable, return the two
243  /// operand indices that would swap value. Return true if the instruction
244  /// is not in a form which this routine understands.
245  virtual bool findCommutedOpIndices(MachineInstr *MI, unsigned &SrcOpIdx1,
246                                     unsigned &SrcOpIdx2) const = 0;
247
248  /// produceSameValue - Return true if two machine instructions would produce
249  /// identical values. By default, this is only true when the two instructions
250  /// are deemed identical except for defs.
251  virtual bool produceSameValue(const MachineInstr *MI0,
252                                const MachineInstr *MI1) const = 0;
253
254  /// AnalyzeBranch - Analyze the branching code at the end of MBB, returning
255  /// true if it cannot be understood (e.g. it's a switch dispatch or isn't
256  /// implemented for a target).  Upon success, this returns false and returns
257  /// with the following information in various cases:
258  ///
259  /// 1. If this block ends with no branches (it just falls through to its succ)
260  ///    just return false, leaving TBB/FBB null.
261  /// 2. If this block ends with only an unconditional branch, it sets TBB to be
262  ///    the destination block.
263  /// 3. If this block ends with a conditional branch and it falls through to a
264  ///    successor block, it sets TBB to be the branch destination block and a
265  ///    list of operands that evaluate the condition. These operands can be
266  ///    passed to other TargetInstrInfo methods to create new branches.
267  /// 4. If this block ends with a conditional branch followed by an
268  ///    unconditional branch, it returns the 'true' destination in TBB, the
269  ///    'false' destination in FBB, and a list of operands that evaluate the
270  ///    condition.  These operands can be passed to other TargetInstrInfo
271  ///    methods to create new branches.
272  ///
273  /// Note that RemoveBranch and InsertBranch must be implemented to support
274  /// cases where this method returns success.
275  ///
276  /// If AllowModify is true, then this routine is allowed to modify the basic
277  /// block (e.g. delete instructions after the unconditional branch).
278  ///
279  virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
280                             MachineBasicBlock *&FBB,
281                             SmallVectorImpl<MachineOperand> &Cond,
282                             bool AllowModify = false) const {
283    return true;
284  }
285
286  /// RemoveBranch - Remove the branching code at the end of the specific MBB.
287  /// This is only invoked in cases where AnalyzeBranch returns success. It
288  /// returns the number of instructions that were removed.
289  virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const {
290    assert(0 && "Target didn't implement TargetInstrInfo::RemoveBranch!");
291    return 0;
292  }
293
294  /// InsertBranch - Insert branch code into the end of the specified
295  /// MachineBasicBlock.  The operands to this method are the same as those
296  /// returned by AnalyzeBranch.  This is only invoked in cases where
297  /// AnalyzeBranch returns success. It returns the number of instructions
298  /// inserted.
299  ///
300  /// It is also invoked by tail merging to add unconditional branches in
301  /// cases where AnalyzeBranch doesn't apply because there was no original
302  /// branch to analyze.  At least this much must be implemented, else tail
303  /// merging needs to be disabled.
304  virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
305                            MachineBasicBlock *FBB,
306                            const SmallVectorImpl<MachineOperand> &Cond) const {
307    assert(0 && "Target didn't implement TargetInstrInfo::InsertBranch!");
308    return 0;
309  }
310
311  /// copyRegToReg - Emit instructions to copy between a pair of registers. It
312  /// returns false if the target does not how to copy between the specified
313  /// registers.
314  virtual bool copyRegToReg(MachineBasicBlock &MBB,
315                            MachineBasicBlock::iterator MI,
316                            unsigned DestReg, unsigned SrcReg,
317                            const TargetRegisterClass *DestRC,
318                            const TargetRegisterClass *SrcRC) const {
319    assert(0 && "Target didn't implement TargetInstrInfo::copyRegToReg!");
320    return false;
321  }
322
323  /// storeRegToStackSlot - Store the specified register of the given register
324  /// class to the specified stack frame index. The store instruction is to be
325  /// added to the given machine basic block before the specified machine
326  /// instruction. If isKill is true, the register operand is the last use and
327  /// must be marked kill.
328  virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
329                                   MachineBasicBlock::iterator MI,
330                                   unsigned SrcReg, bool isKill, int FrameIndex,
331                                   const TargetRegisterClass *RC,
332                                   const TargetRegisterInfo *TRI) const {
333    assert(0 && "Target didn't implement TargetInstrInfo::storeRegToStackSlot!");
334  }
335
336  /// loadRegFromStackSlot - Load the specified register of the given register
337  /// class from the specified stack frame index. The load instruction is to be
338  /// added to the given machine basic block before the specified machine
339  /// instruction.
340  virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
341                                    MachineBasicBlock::iterator MI,
342                                    unsigned DestReg, int FrameIndex,
343                                    const TargetRegisterClass *RC,
344                                    const TargetRegisterInfo *TRI) const {
345    assert(0 && "Target didn't implement TargetInstrInfo::loadRegFromStackSlot!");
346  }
347
348  /// spillCalleeSavedRegisters - Issues instruction(s) to spill all callee
349  /// saved registers and returns true if it isn't possible / profitable to do
350  /// so by issuing a series of store instructions via
351  /// storeRegToStackSlot(). Returns false otherwise.
352  virtual bool spillCalleeSavedRegisters(MachineBasicBlock &MBB,
353                                         MachineBasicBlock::iterator MI,
354                                const std::vector<CalleeSavedInfo> &CSI) const {
355    return false;
356  }
357
358  /// restoreCalleeSavedRegisters - Issues instruction(s) to restore all callee
359  /// saved registers and returns true if it isn't possible / profitable to do
360  /// so by issuing a series of load instructions via loadRegToStackSlot().
361  /// Returns false otherwise.
362  virtual bool restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
363                                           MachineBasicBlock::iterator MI,
364                                const std::vector<CalleeSavedInfo> &CSI) const {
365    return false;
366  }
367
368  /// emitFrameIndexDebugValue - Emit a target-dependent form of
369  /// DBG_VALUE encoding the address of a frame index.  Addresses would
370  /// normally be lowered the same way as other addresses on the target,
371  /// e.g. in load instructions.  For targets that do not support this
372  /// the debug info is simply lost.
373  /// If you add this for a target you should handle this DBG_VALUE in the
374  /// target-specific AsmPrinter code as well; you will probably get invalid
375  /// assembly output if you don't.
376  virtual MachineInstr *emitFrameIndexDebugValue(MachineFunction &MF,
377                                                 int FrameIx,
378                                                 uint64_t Offset,
379                                                 const MDNode *MDPtr,
380                                                 DebugLoc dl) const {
381    return 0;
382  }
383
384  /// foldMemoryOperand - Attempt to fold a load or store of the specified stack
385  /// slot into the specified machine instruction for the specified operand(s).
386  /// If this is possible, a new instruction is returned with the specified
387  /// operand folded, otherwise NULL is returned. The client is responsible for
388  /// removing the old instruction and adding the new one in the instruction
389  /// stream.
390  MachineInstr* foldMemoryOperand(MachineFunction &MF,
391                                  MachineInstr* MI,
392                                  const SmallVectorImpl<unsigned> &Ops,
393                                  int FrameIndex) const;
394
395  /// foldMemoryOperand - Same as the previous version except it allows folding
396  /// of any load and store from / to any address, not just from a specific
397  /// stack slot.
398  MachineInstr* foldMemoryOperand(MachineFunction &MF,
399                                  MachineInstr* MI,
400                                  const SmallVectorImpl<unsigned> &Ops,
401                                  MachineInstr* LoadMI) const;
402
403protected:
404  /// foldMemoryOperandImpl - Target-dependent implementation for
405  /// foldMemoryOperand. Target-independent code in foldMemoryOperand will
406  /// take care of adding a MachineMemOperand to the newly created instruction.
407  virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
408                                          MachineInstr* MI,
409                                          const SmallVectorImpl<unsigned> &Ops,
410                                          int FrameIndex) const {
411    return 0;
412  }
413
414  /// foldMemoryOperandImpl - Target-dependent implementation for
415  /// foldMemoryOperand. Target-independent code in foldMemoryOperand will
416  /// take care of adding a MachineMemOperand to the newly created instruction.
417  virtual MachineInstr* foldMemoryOperandImpl(MachineFunction &MF,
418                                              MachineInstr* MI,
419                                              const SmallVectorImpl<unsigned> &Ops,
420                                              MachineInstr* LoadMI) const {
421    return 0;
422  }
423
424public:
425  /// canFoldMemoryOperand - Returns true for the specified load / store if
426  /// folding is possible.
427  virtual
428  bool canFoldMemoryOperand(const MachineInstr *MI,
429                            const SmallVectorImpl<unsigned> &Ops) const {
430    return false;
431  }
432
433  /// unfoldMemoryOperand - Separate a single instruction which folded a load or
434  /// a store or a load and a store into two or more instruction. If this is
435  /// possible, returns true as well as the new instructions by reference.
436  virtual bool unfoldMemoryOperand(MachineFunction &MF, MachineInstr *MI,
437                                unsigned Reg, bool UnfoldLoad, bool UnfoldStore,
438                                 SmallVectorImpl<MachineInstr*> &NewMIs) const{
439    return false;
440  }
441
442  virtual bool unfoldMemoryOperand(SelectionDAG &DAG, SDNode *N,
443                                   SmallVectorImpl<SDNode*> &NewNodes) const {
444    return false;
445  }
446
447  /// getOpcodeAfterMemoryUnfold - Returns the opcode of the would be new
448  /// instruction after load / store are unfolded from an instruction of the
449  /// specified opcode. It returns zero if the specified unfolding is not
450  /// possible. If LoadRegIndex is non-null, it is filled in with the operand
451  /// index of the operand which will hold the register holding the loaded
452  /// value.
453  virtual unsigned getOpcodeAfterMemoryUnfold(unsigned Opc,
454                                      bool UnfoldLoad, bool UnfoldStore,
455                                      unsigned *LoadRegIndex = 0) const {
456    return 0;
457  }
458
459  /// areLoadsFromSameBasePtr - This is used by the pre-regalloc scheduler
460  /// to determine if two loads are loading from the same base address. It
461  /// should only return true if the base pointers are the same and the
462  /// only differences between the two addresses are the offset. It also returns
463  /// the offsets by reference.
464  virtual bool areLoadsFromSameBasePtr(SDNode *Load1, SDNode *Load2,
465                                       int64_t &Offset1, int64_t &Offset2) const {
466    return false;
467  }
468
469  /// shouldScheduleLoadsNear - This is a used by the pre-regalloc scheduler to
470  /// determine (in conjuction with areLoadsFromSameBasePtr) if two loads should
471  /// be scheduled togther. On some targets if two loads are loading from
472  /// addresses in the same cache line, it's better if they are scheduled
473  /// together. This function takes two integers that represent the load offsets
474  /// from the common base address. It returns true if it decides it's desirable
475  /// to schedule the two loads together. "NumLoads" is the number of loads that
476  /// have already been scheduled after Load1.
477  virtual bool shouldScheduleLoadsNear(SDNode *Load1, SDNode *Load2,
478                                       int64_t Offset1, int64_t Offset2,
479                                       unsigned NumLoads) const {
480    return false;
481  }
482
483  /// ReverseBranchCondition - Reverses the branch condition of the specified
484  /// condition list, returning false on success and true if it cannot be
485  /// reversed.
486  virtual
487  bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const {
488    return true;
489  }
490
491  /// insertNoop - Insert a noop into the instruction stream at the specified
492  /// point.
493  virtual void insertNoop(MachineBasicBlock &MBB,
494                          MachineBasicBlock::iterator MI) const;
495
496
497  /// getNoopForMachoTarget - Return the noop instruction to use for a noop.
498  virtual void getNoopForMachoTarget(MCInst &NopInst) const {
499    // Default to just using 'nop' string.
500  }
501
502
503  /// isPredicated - Returns true if the instruction is already predicated.
504  ///
505  virtual bool isPredicated(const MachineInstr *MI) const {
506    return false;
507  }
508
509  /// isUnpredicatedTerminator - Returns true if the instruction is a
510  /// terminator instruction that has not been predicated.
511  virtual bool isUnpredicatedTerminator(const MachineInstr *MI) const;
512
513  /// PredicateInstruction - Convert the instruction into a predicated
514  /// instruction. It returns true if the operation was successful.
515  virtual
516  bool PredicateInstruction(MachineInstr *MI,
517                        const SmallVectorImpl<MachineOperand> &Pred) const = 0;
518
519  /// SubsumesPredicate - Returns true if the first specified predicate
520  /// subsumes the second, e.g. GE subsumes GT.
521  virtual
522  bool SubsumesPredicate(const SmallVectorImpl<MachineOperand> &Pred1,
523                         const SmallVectorImpl<MachineOperand> &Pred2) const {
524    return false;
525  }
526
527  /// DefinesPredicate - If the specified instruction defines any predicate
528  /// or condition code register(s) used for predication, returns true as well
529  /// as the definition predicate(s) by reference.
530  virtual bool DefinesPredicate(MachineInstr *MI,
531                                std::vector<MachineOperand> &Pred) const {
532    return false;
533  }
534
535  /// isPredicable - Return true if the specified instruction can be predicated.
536  /// By default, this returns true for every instruction with a
537  /// PredicateOperand.
538  virtual bool isPredicable(MachineInstr *MI) const {
539    return MI->getDesc().isPredicable();
540  }
541
542  /// isSafeToMoveRegClassDefs - Return true if it's safe to move a machine
543  /// instruction that defines the specified register class.
544  virtual bool isSafeToMoveRegClassDefs(const TargetRegisterClass *RC) const {
545    return true;
546  }
547
548  /// GetInstSize - Returns the size of the specified Instruction.
549  ///
550  virtual unsigned GetInstSizeInBytes(const MachineInstr *MI) const {
551    assert(0 && "Target didn't implement TargetInstrInfo::GetInstSize!");
552    return 0;
553  }
554
555  /// GetFunctionSizeInBytes - Returns the size of the specified
556  /// MachineFunction.
557  ///
558  virtual unsigned GetFunctionSizeInBytes(const MachineFunction &MF) const = 0;
559
560  /// Measure the specified inline asm to determine an approximation of its
561  /// length.
562  virtual unsigned getInlineAsmLength(const char *Str,
563                                      const MCAsmInfo &MAI) const;
564};
565
566/// TargetInstrInfoImpl - This is the default implementation of
567/// TargetInstrInfo, which just provides a couple of default implementations
568/// for various methods.  This separated out because it is implemented in
569/// libcodegen, not in libtarget.
570class TargetInstrInfoImpl : public TargetInstrInfo {
571protected:
572  TargetInstrInfoImpl(const TargetInstrDesc *desc, unsigned NumOpcodes)
573  : TargetInstrInfo(desc, NumOpcodes) {}
574public:
575  virtual MachineInstr *commuteInstruction(MachineInstr *MI,
576                                           bool NewMI = false) const;
577  virtual bool findCommutedOpIndices(MachineInstr *MI, unsigned &SrcOpIdx1,
578                                     unsigned &SrcOpIdx2) const;
579  virtual bool PredicateInstruction(MachineInstr *MI,
580                            const SmallVectorImpl<MachineOperand> &Pred) const;
581  virtual void reMaterialize(MachineBasicBlock &MBB,
582                             MachineBasicBlock::iterator MI,
583                             unsigned DestReg, unsigned SubReg,
584                             const MachineInstr *Orig,
585                             const TargetRegisterInfo *TRI) const;
586  virtual MachineInstr *duplicate(MachineInstr *Orig,
587                                  MachineFunction &MF) const;
588  virtual bool produceSameValue(const MachineInstr *MI0,
589                                const MachineInstr *MI1) const;
590  virtual unsigned GetFunctionSizeInBytes(const MachineFunction &MF) const;
591};
592
593} // End llvm namespace
594
595#endif
596