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 | // |
Sasa Stankovic | 7b061a4 | 2014-04-30 15:06:25 +0000 | [diff] [blame] | 12 | // FIXME: We need to override TargetInstrInfo::getInlineAsmLength method in |
| 13 | // order for MipsLongBranch pass to work correctly when the code has inline |
| 14 | // assembly. The returned value doesn't have to be the asm instruction's exact |
| 15 | // size in bytes; MipsLongBranch only expects it to be the correct upper bound. |
Akira Hatanaka | e248912 | 2011-04-15 21:51:11 +0000 | [diff] [blame] | 16 | //===----------------------------------------------------------------------===// |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 17 | |
Benjamin Kramer | a7c40ef | 2014-08-13 16:26:38 +0000 | [diff] [blame] | 18 | #ifndef LLVM_LIB_TARGET_MIPS_MIPSINSTRINFO_H |
| 19 | #define LLVM_LIB_TARGET_MIPS_MIPSINSTRINFO_H |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 20 | |
| 21 | #include "Mips.h" |
Akira Hatanaka | acd1a7d | 2012-06-14 01:16:45 +0000 | [diff] [blame] | 22 | #include "MipsAnalyzeImmediate.h" |
Craig Topper | b25fda9 | 2012-03-17 18:46:09 +0000 | [diff] [blame] | 23 | #include "MipsRegisterInfo.h" |
Akira Hatanaka | 310e26a | 2013-05-13 17:57:42 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Torok Edwin | 56d0659 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 25 | #include "llvm/Support/ErrorHandling.h" |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetInstrInfo.h" |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 27 | |
Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 28 | #define GET_INSTRINFO_HEADER |
| 29 | #include "MipsGenInstrInfo.inc" |
| 30 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 31 | namespace llvm { |
Eric Christopher | a20c3cf | 2015-03-12 05:43:57 +0000 | [diff] [blame] | 32 | class MipsSubtarget; |
Evan Cheng | 703a0fb | 2011-07-01 17:57:27 +0000 | [diff] [blame] | 33 | class MipsInstrInfo : public MipsGenInstrInfo { |
Juergen Ributzka | d12ccbd | 2013-11-19 00:57:56 +0000 | [diff] [blame] | 34 | virtual void anchor(); |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 35 | protected: |
Eric Christopher | 675cb4d | 2014-07-18 23:25:00 +0000 | [diff] [blame] | 36 | const MipsSubtarget &Subtarget; |
Akira Hatanaka | 5d5e0d8 | 2011-12-12 22:39:35 +0000 | [diff] [blame] | 37 | unsigned UncondBrOpc; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 38 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 39 | public: |
Akira Hatanaka | 7320b23 | 2013-03-01 01:10:17 +0000 | [diff] [blame] | 40 | enum BranchType { |
| 41 | BT_None, // Couldn't analyze branch. |
| 42 | BT_NoBranch, // No branches found. |
| 43 | BT_Uncond, // One unconditional branch. |
| 44 | BT_Cond, // One conditional branch. |
| 45 | BT_CondUncond, // A conditional branch followed by an unconditional branch. |
| 46 | BT_Indirect // One indirct branch. |
| 47 | }; |
| 48 | |
Eric Christopher | 675cb4d | 2014-07-18 23:25:00 +0000 | [diff] [blame] | 49 | explicit MipsInstrInfo(const MipsSubtarget &STI, unsigned UncondBrOpc); |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 50 | |
Eric Christopher | 675cb4d | 2014-07-18 23:25:00 +0000 | [diff] [blame] | 51 | static const MipsInstrInfo *create(MipsSubtarget &STI); |
Akira Hatanaka | fab8929 | 2012-08-02 18:21:47 +0000 | [diff] [blame] | 52 | |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 53 | /// Branch Analysis |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 54 | bool AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 55 | MachineBasicBlock *&FBB, |
| 56 | SmallVectorImpl<MachineOperand> &Cond, |
| 57 | bool AllowModify) const override; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 58 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 59 | unsigned RemoveBranch(MachineBasicBlock &MBB) const override; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 60 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 61 | unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB, |
| 62 | MachineBasicBlock *FBB, |
| 63 | const SmallVectorImpl<MachineOperand> &Cond, |
| 64 | DebugLoc DL) const override; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 65 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 66 | bool |
| 67 | ReverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 68 | |
Akira Hatanaka | 7320b23 | 2013-03-01 01:10:17 +0000 | [diff] [blame] | 69 | BranchType AnalyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB, |
| 70 | MachineBasicBlock *&FBB, |
| 71 | SmallVectorImpl<MachineOperand> &Cond, |
| 72 | bool AllowModify, |
| 73 | SmallVectorImpl<MachineInstr*> &BranchInstrs) const; |
| 74 | |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 75 | /// Insert nop instruction when hazard condition is found |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 76 | void insertNoop(MachineBasicBlock &MBB, |
| 77 | MachineBasicBlock::iterator MI) const override; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 78 | |
| 79 | /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As |
| 80 | /// such, whenever a client has an instance of instruction info, it should |
| 81 | /// always be able to get register info as well (through this method). |
| 82 | /// |
Akira Hatanaka | cb37e13 | 2012-07-31 23:41:32 +0000 | [diff] [blame] | 83 | virtual const MipsRegisterInfo &getRegisterInfo() const = 0; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 84 | |
Akira Hatanaka | 067d815 | 2013-05-13 17:43:19 +0000 | [diff] [blame] | 85 | virtual unsigned getOppositeBranchOpc(unsigned Opc) const = 0; |
Akira Hatanaka | acd1a7d | 2012-06-14 01:16:45 +0000 | [diff] [blame] | 86 | |
| 87 | /// Return the number of bytes of code the specified instruction may be. |
| 88 | unsigned GetInstSizeInBytes(const MachineInstr *MI) const; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 89 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 90 | void storeRegToStackSlot(MachineBasicBlock &MBB, |
| 91 | MachineBasicBlock::iterator MBBI, |
| 92 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 93 | const TargetRegisterClass *RC, |
| 94 | const TargetRegisterInfo *TRI) const override { |
Akira Hatanaka | 465facca | 2013-03-29 02:14:12 +0000 | [diff] [blame] | 95 | storeRegToStack(MBB, MBBI, SrcReg, isKill, FrameIndex, RC, TRI, 0); |
| 96 | } |
| 97 | |
Craig Topper | 56c590a | 2014-04-29 07:58:02 +0000 | [diff] [blame] | 98 | void loadRegFromStackSlot(MachineBasicBlock &MBB, |
| 99 | MachineBasicBlock::iterator MBBI, |
| 100 | unsigned DestReg, int FrameIndex, |
| 101 | const TargetRegisterClass *RC, |
| 102 | const TargetRegisterInfo *TRI) const override { |
Akira Hatanaka | 465facca | 2013-03-29 02:14:12 +0000 | [diff] [blame] | 103 | loadRegFromStack(MBB, MBBI, DestReg, FrameIndex, RC, TRI, 0); |
| 104 | } |
| 105 | |
| 106 | virtual void storeRegToStack(MachineBasicBlock &MBB, |
| 107 | MachineBasicBlock::iterator MI, |
| 108 | unsigned SrcReg, bool isKill, int FrameIndex, |
| 109 | const TargetRegisterClass *RC, |
| 110 | const TargetRegisterInfo *TRI, |
| 111 | int64_t Offset) const = 0; |
| 112 | |
| 113 | virtual void loadRegFromStack(MachineBasicBlock &MBB, |
| 114 | MachineBasicBlock::iterator MI, |
| 115 | unsigned DestReg, int FrameIndex, |
| 116 | const TargetRegisterClass *RC, |
| 117 | const TargetRegisterInfo *TRI, |
| 118 | int64_t Offset) const = 0; |
| 119 | |
Vasileios Kalintiris | 6d68778 | 2015-04-02 10:42:44 +0000 | [diff] [blame^] | 120 | virtual void adjustStackPtr(unsigned SP, int64_t Amount, |
| 121 | MachineBasicBlock &MBB, |
| 122 | MachineBasicBlock::iterator I) const = 0; |
| 123 | |
Akira Hatanaka | 310e26a | 2013-05-13 17:57:42 +0000 | [diff] [blame] | 124 | /// Create an instruction which has the same operands and memory operands |
| 125 | /// as MI but has a new opcode. |
| 126 | MachineInstrBuilder genInstrWithNewOpc(unsigned NewOpc, |
| 127 | MachineBasicBlock::iterator I) const; |
| 128 | |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 129 | protected: |
| 130 | bool isZeroImm(const MachineOperand &op) const; |
| 131 | |
| 132 | MachineMemOperand *GetMemOperand(MachineBasicBlock &MBB, int FI, |
| 133 | unsigned Flag) const; |
| 134 | |
| 135 | private: |
Akira Hatanaka | 067d815 | 2013-05-13 17:43:19 +0000 | [diff] [blame] | 136 | virtual unsigned getAnalyzableBrOpc(unsigned Opc) const = 0; |
Akira Hatanaka | b7fa3c9 | 2012-07-31 21:49:49 +0000 | [diff] [blame] | 137 | |
| 138 | void AnalyzeCondBr(const MachineInstr *Inst, unsigned Opc, |
| 139 | MachineBasicBlock *&BB, |
| 140 | SmallVectorImpl<MachineOperand> &Cond) const; |
| 141 | |
| 142 | void BuildCondBr(MachineBasicBlock &MBB, MachineBasicBlock *TBB, DebugLoc DL, |
| 143 | const SmallVectorImpl<MachineOperand>& Cond) const; |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 144 | }; |
| 145 | |
Akira Hatanaka | fab8929 | 2012-08-02 18:21:47 +0000 | [diff] [blame] | 146 | /// Create MipsInstrInfo objects. |
Eric Christopher | 675cb4d | 2014-07-18 23:25:00 +0000 | [diff] [blame] | 147 | const MipsInstrInfo *createMips16InstrInfo(const MipsSubtarget &STI); |
| 148 | const MipsInstrInfo *createMipsSEInstrInfo(const MipsSubtarget &STI); |
Akira Hatanaka | fab8929 | 2012-08-02 18:21:47 +0000 | [diff] [blame] | 149 | |
Bruno Cardoso Lopes | 35e43c4 | 2007-06-06 07:42:06 +0000 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | #endif |