Jia Liu | f54f60f | 2012-02-28 07:46:26 +0000 | [diff] [blame] | 1 | //===-- MipsInstrInfo.h - Mips Instruction Information ----------*- C++ -*-===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 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. |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 7 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 9 | // |
| 10 | // This file contains the Mips implementation of the TargetInstrInfo class. |
| 11 | // |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 12 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 13 | |
| 14 | #ifndef MIPSINSTRUCTIONINFO_H |
| 15 | #define MIPSINSTRUCTIONINFO_H |
| 16 | |
| 17 | #include "Mips.h" |
Akira Hatanaka | acd1a7d | 2012-06-14 01:16:45 +0000 | [diff] [blame^] | 18 | #include "MipsAnalyzeImmediate.h" |
Craig Topper | b25fda9 | 2012-03-17 18:46:09 +0000 | [diff] [blame] | 19 | #include "MipsRegisterInfo.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 20 | #include "llvm/Support/ErrorHandling.h" |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 21 | #include "llvm/Target/TargetInstrInfo.h" |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 22 | |
Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 23 | #define GET_INSTRINFO_HEADER |
| 24 | #include "MipsGenInstrInfo.inc" |
| 25 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 26 | namespace llvm { |
| 27 | |
Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 28 | class MipsInstrInfo : public MipsGenInstrInfo { |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 29 | MipsTargetMachine &TM; |
Akira Hatanaka | e6ced5b | 2011-10-11 00:37:28 +0000 | [diff] [blame] | 30 | bool IsN64; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 31 | const MipsRegisterInfo RI; |
Akira Hatanaka | 5d5e0d8 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 32 | unsigned UncondBrOpc; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 33 | public: |
Dan Gohman | c60c67f | 2008-03-25 22:06:05 +0000 | [diff] [blame] | 34 | explicit MipsInstrInfo(MipsTargetMachine &TM); |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 35 | |
| 36 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 37 | /// such, whenever a client has an instance of instruction info, it should |
| 38 | /// always be able to get register info as well (through this method). |
| 39 | /// |
Akira Hatanaka | 9c6028f | 2011-07-07 23:56:50 +0000 | [diff] [blame] | 40 | virtual const MipsRegisterInfo &getRegisterInfo() const; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 41 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 42 | /// isLoadFromStackSlot - If the specified machine instruction is a direct |
| 43 | /// load from a stack slot, return the virtual or physical register number of |
| 44 | /// the destination along with the FrameIndex of the loaded stack slot. If |
| 45 | /// not, return 0. This predicate must return 0 if the instruction has |
| 46 | /// any side effects other than loading from the stack slot. |
Dan Gohman | 0b27325 | 2008-11-18 19:49:32 +0000 | [diff] [blame] | 47 | virtual unsigned isLoadFromStackSlot(const MachineInstr *MI, |
| 48 | int &FrameIndex) const; |
Bruno Cardoso Lopes | ed874ef | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 49 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 50 | /// isStoreToStackSlot - If the specified machine instruction is a direct |
| 51 | /// store to a stack slot, return the virtual or physical register number of |
| 52 | /// the source reg along with the FrameIndex of the loaded stack slot. If |
| 53 | /// not, return 0. This predicate must return 0 if the instruction has |
| 54 | /// any side effects other than storing to the stack slot. |
Dan Gohman | 0b27325 | 2008-11-18 19:49:32 +0000 | [diff] [blame] | 55 | virtual unsigned isStoreToStackSlot(const MachineInstr *MI, |
| 56 | int &FrameIndex) const; |
Bruno Cardoso Lopes | ed874ef | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 57 | |
Bruno Cardoso Lopes | 0c53063 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 58 | /// Branch Analysis |
| 59 | virtual bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 60 | MachineBasicBlock *&FBB, |
Evan Cheng | 64dfcac | 2009-02-09 07:14:22 +0000 | [diff] [blame] | 61 | SmallVectorImpl<MachineOperand> &Cond, |
| 62 | bool AllowModify) const; |
Bruno Cardoso Lopes | 0c53063 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 63 | virtual unsigned RemoveBranch(MachineBasicBlock &MBB) const; |
Akira Hatanaka | 93f898f | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 64 | |
| 65 | private: |
| 66 | void BuildCondBr(MachineBasicBlock &MBB, MachineBasicBlock *TBB, DebugLoc DL, |
| 67 | const SmallVectorImpl<MachineOperand>& Cond) const; |
Akira Hatanaka | d0ac2c9 | 2012-05-25 20:52:52 +0000 | [diff] [blame] | 68 | void ExpandExtractElementF64(MachineBasicBlock &MBB, |
| 69 | MachineBasicBlock::iterator I) const; |
| 70 | void ExpandBuildPairF64(MachineBasicBlock &MBB, |
| 71 | MachineBasicBlock::iterator I) const; |
Akira Hatanaka | 93f898f | 2011-04-01 17:39:08 +0000 | [diff] [blame] | 72 | |
| 73 | public: |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 74 | virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
Bruno Cardoso Lopes | 0c53063 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 75 | MachineBasicBlock *FBB, |
Stuart Hastings | 0125b64 | 2010-06-17 22:43:56 +0000 | [diff] [blame] | 76 | const SmallVectorImpl<MachineOperand> &Cond, |
| 77 | DebugLoc DL) const; |
Jakob Stoklund Olesen | 7002c31 | 2010-07-11 01:08:31 +0000 | [diff] [blame] | 78 | virtual void copyPhysReg(MachineBasicBlock &MBB, |
| 79 | MachineBasicBlock::iterator MI, DebugLoc DL, |
| 80 | unsigned DestReg, unsigned SrcReg, |
| 81 | bool KillSrc) const; |
Owen Anderson | eee1460 | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 82 | virtual void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 83 | MachineBasicBlock::iterator MBBI, |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 84 | unsigned SrcReg, bool isKill, int FrameIndex, |
Evan Cheng | efb126a | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 85 | const TargetRegisterClass *RC, |
| 86 | const TargetRegisterInfo *TRI) const; |
Owen Anderson | eee1460 | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 87 | |
Owen Anderson | eee1460 | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 88 | virtual void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 89 | MachineBasicBlock::iterator MBBI, |
| 90 | unsigned DestReg, int FrameIndex, |
Evan Cheng | efb126a | 2010-05-06 19:06:44 +0000 | [diff] [blame] | 91 | const TargetRegisterClass *RC, |
| 92 | const TargetRegisterInfo *TRI) const; |
Owen Anderson | eee1460 | 2008-01-01 21:11:32 +0000 | [diff] [blame] | 93 | |
Akira Hatanaka | d0ac2c9 | 2012-05-25 20:52:52 +0000 | [diff] [blame] | 94 | virtual bool expandPostRAPseudo(MachineBasicBlock::iterator MI) const; |
| 95 | |
Akira Hatanaka | f2bcad9 | 2011-07-01 01:04:43 +0000 | [diff] [blame] | 96 | virtual MachineInstr* emitFrameIndexDebugValue(MachineFunction &MF, |
| 97 | int FrameIx, uint64_t Offset, |
| 98 | const MDNode *MDPtr, |
| 99 | DebugLoc DL) const; |
| 100 | |
Owen Anderson | 4f6bf04 | 2008-08-14 22:49:33 +0000 | [diff] [blame] | 101 | virtual |
| 102 | bool ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const; |
Bruno Cardoso Lopes | 0c53063 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 103 | |
| 104 | /// Insert nop instruction when hazard condition is found |
Bruno Cardoso Lopes | ed874ef | 2011-03-04 17:51:39 +0000 | [diff] [blame] | 105 | virtual void insertNoop(MachineBasicBlock &MBB, |
Bruno Cardoso Lopes | 0c53063 | 2007-08-18 01:59:45 +0000 | [diff] [blame] | 106 | MachineBasicBlock::iterator MI) const; |
Akira Hatanaka | acd1a7d | 2012-06-14 01:16:45 +0000 | [diff] [blame^] | 107 | |
| 108 | /// Return the number of bytes of code the specified instruction may be. |
| 109 | unsigned GetInstSizeInBytes(const MachineInstr *MI) const; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 110 | }; |
| 111 | |
Akira Hatanaka | acd1a7d | 2012-06-14 01:16:45 +0000 | [diff] [blame^] | 112 | namespace Mips { |
| 113 | /// GetOppositeBranchOpc - Return the inverse of the specified |
| 114 | /// opcode, e.g. turning BEQ to BNE. |
| 115 | unsigned GetOppositeBranchOpc(unsigned Opc); |
| 116 | |
| 117 | /// Emit a series of instructions to load an immediate. All instructions |
| 118 | /// except for the last one are emitted. The function returns the number of |
| 119 | /// MachineInstrs generated. The opcode-immediate pair of the last |
| 120 | /// instruction is returned in LastInst, if it is not 0. |
| 121 | unsigned |
| 122 | loadImmediate(int64_t Imm, bool IsN64, const TargetInstrInfo &TII, |
| 123 | MachineBasicBlock& MBB, MachineBasicBlock::iterator II, |
| 124 | DebugLoc DL, bool LastInstrIsADDiu, |
| 125 | MipsAnalyzeImmediate::Inst *LastInst); |
| 126 | } |
| 127 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | #endif |