Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- MipsInstrInfo.h - Mips Instruction Information -----------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file contains the Mips implementation of the TargetInstrInfo class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef MIPSINSTRUCTIONINFO_H |
| 15 | #define MIPSINSTRUCTIONINFO_H |
| 16 | |
| 17 | #include "Mips.h" |
| 18 | #include "llvm/Target/TargetInstrInfo.h" |
| 19 | #include "MipsRegisterInfo.h" |
| 20 | |
| 21 | namespace llvm { |
| 22 | |
Bruno Cardoso Lopes | 2e6f430 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 23 | namespace Mips { |
| 24 | |
Bruno Cardoso Lopes | 7c19d33 | 2007-08-28 05:06:17 +0000 | [diff] [blame] | 25 | // Mips Condition Codes |
Bruno Cardoso Lopes | 2e6f430 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 26 | enum CondCode { |
| 27 | COND_E, |
| 28 | COND_GZ, |
| 29 | COND_GEZ, |
| 30 | COND_LZ, |
| 31 | COND_LEZ, |
| 32 | COND_NE, |
| 33 | COND_INVALID |
| 34 | }; |
| 35 | |
| 36 | // Turn condition code into conditional branch opcode. |
| 37 | unsigned GetCondBranchFromCond(CondCode CC); |
| 38 | |
| 39 | /// GetOppositeBranchCondition - Return the inverse of the specified cond, |
| 40 | /// e.g. turning COND_E to COND_NE. |
| 41 | CondCode GetOppositeBranchCondition(Mips::CondCode CC); |
| 42 | |
| 43 | } |
| 44 | |
Chris Lattner | d2fd6db | 2008-01-01 01:03:04 +0000 | [diff] [blame] | 45 | class MipsInstrInfo : public TargetInstrInfoImpl { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 46 | MipsTargetMachine &TM; |
| 47 | const MipsRegisterInfo RI; |
| 48 | public: |
| 49 | MipsInstrInfo(MipsTargetMachine &TM); |
| 50 | |
| 51 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 52 | /// such, whenever a client has an instance of instruction info, it should |
| 53 | /// always be able to get register info as well (through this method). |
| 54 | /// |
| 55 | virtual const MRegisterInfo &getRegisterInfo() const { return RI; } |
| 56 | |
| 57 | /// Return true if the instruction is a register to register move and |
| 58 | /// leave the source and dest operands in the passed parameters. |
| 59 | /// |
| 60 | virtual bool isMoveInstr(const MachineInstr &MI, |
| 61 | unsigned &SrcReg, unsigned &DstReg) const; |
| 62 | |
| 63 | /// isLoadFromStackSlot - If the specified machine instruction is a direct |
| 64 | /// load from a stack slot, return the virtual or physical register number of |
| 65 | /// the destination along with the FrameIndex of the loaded stack slot. If |
| 66 | /// not, return 0. This predicate must return 0 if the instruction has |
| 67 | /// any side effects other than loading from the stack slot. |
| 68 | virtual unsigned isLoadFromStackSlot(MachineInstr *MI, int &FrameIndex) const; |
| 69 | |
| 70 | /// isStoreToStackSlot - If the specified machine instruction is a direct |
| 71 | /// store to a stack slot, return the virtual or physical register number of |
| 72 | /// the source reg along with the FrameIndex of the loaded stack slot. If |
| 73 | /// not, return 0. This predicate must return 0 if the instruction has |
| 74 | /// any side effects other than storing to the stack slot. |
| 75 | virtual unsigned isStoreToStackSlot(MachineInstr *MI, int &FrameIndex) const; |
Bruno Cardoso Lopes | 2e6f430 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 76 | |
| 77 | /// Branch Analysis |
| 78 | virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 79 | MachineBasicBlock *&FBB, |
| 80 | std::vector<MachineOperand> &Cond) const; |
| 81 | virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 82 | virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
Bruno Cardoso Lopes | 2e6f430 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 83 | MachineBasicBlock *FBB, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 84 | const std::vector<MachineOperand> &Cond) const; |
Owen Anderson | 8f2c893 | 2007-12-31 06:32:00 +0000 | [diff] [blame] | 85 | virtual void copyRegToReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, |
| 86 | unsigned DestReg, unsigned SrcReg, |
| 87 | const TargetRegisterClass *DestRC, |
| 88 | const TargetRegisterClass *SrcRC) const; |
Owen Anderson | 8187543 | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 89 | virtual void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 90 | MachineBasicBlock::iterator MBBI, |
| 91 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 92 | const TargetRegisterClass *RC) const; |
| 93 | |
| 94 | virtual void storeRegToAddr(MachineFunction &MF, unsigned SrcReg, bool isKill, |
| 95 | SmallVectorImpl<MachineOperand> &Addr, |
| 96 | const TargetRegisterClass *RC, |
| 97 | SmallVectorImpl<MachineInstr*> &NewMIs) const; |
| 98 | |
| 99 | virtual void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 100 | MachineBasicBlock::iterator MBBI, |
| 101 | unsigned DestReg, int FrameIndex, |
| 102 | const TargetRegisterClass *RC) const; |
| 103 | |
| 104 | virtual void loadRegFromAddr(MachineFunction &MF, unsigned DestReg, |
| 105 | SmallVectorImpl<MachineOperand> &Addr, |
| 106 | const TargetRegisterClass *RC, |
| 107 | SmallVectorImpl<MachineInstr*> &NewMIs) const; |
Owen Anderson | 9a184ef | 2008-01-07 01:35:02 +0000 | [diff] [blame^] | 108 | |
| 109 | virtual MachineInstr* foldMemoryOperand(MachineInstr* MI, |
| 110 | SmallVectorImpl<unsigned> &Ops, |
| 111 | int FrameIndex) const; |
| 112 | |
| 113 | virtual MachineInstr* foldMemoryOperand(MachineInstr* MI, |
| 114 | SmallVectorImpl<unsigned> &Ops, |
| 115 | MachineInstr* LoadMI) const { |
| 116 | return 0; |
| 117 | } |
| 118 | |
Bruno Cardoso Lopes | 2e6f430 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 119 | virtual bool BlockHasNoFallThrough(MachineBasicBlock &MBB) const; |
| 120 | virtual bool ReverseBranchCondition(std::vector<MachineOperand> &Cond) const; |
| 121 | |
| 122 | /// Insert nop instruction when hazard condition is found |
| 123 | virtual void insertNoop(MachineBasicBlock &MBB, |
| 124 | MachineBasicBlock::iterator MI) const; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 125 | }; |
| 126 | |
| 127 | } |
| 128 | |
| 129 | #endif |