1 //===- MipsInstrInfo.h - Mips Instruction Information -----------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the Mips implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef MIPSINSTRUCTIONINFO_H
15 #define MIPSINSTRUCTIONINFO_H
18 #include "llvm/Support/ErrorHandling.h"
19 #include "llvm/Target/TargetInstrInfo.h"
20 #include "MipsRegisterInfo.h"
22 #define GET_INSTRINFO_HEADER
23 #include "MipsGenInstrInfo.inc"
28 /// GetOppositeBranchOpc - Return the inverse of the specified
29 /// opcode, e.g. turning BEQ to BNE.
30 unsigned GetOppositeBranchOpc(unsigned Opc
);
33 /// MipsII - This namespace holds all of the target specific flags that
34 /// instruction info tracks.
37 /// Target Operand Flag enum.
39 //===------------------------------------------------------------------===//
40 // Mips Specific MachineOperand flags.
44 /// MO_GOT - Represents the offset into the global offset table at which
45 /// the address the relocation entry symbol resides during execution.
48 /// MO_GOT_CALL - Represents the offset into the global offset table at
49 /// which the address of a call site relocation entry symbol resides
50 /// during execution. This is different from the above since this flag
51 /// can only be present in call instructions.
54 /// MO_GPREL - Represents the offset from the current gp value to be used
55 /// for the relocatable object file being produced.
58 /// MO_ABS_HI/LO - Represents the hi or low part of an absolute symbol
63 /// MO_TLSGD - Represents the offset into the global offset table at which
64 // the module ID and TSL block offset reside during execution (General
68 /// MO_GOTTPREL - Represents the offset from the thread pointer (Initial
72 /// MO_TPREL_HI/LO - Represents the hi and low part of the offset from
73 // the thread pointer (Local Exec TLS).
79 class MipsInstrInfo
: public MipsGenInstrInfo
{
80 MipsTargetMachine
&TM
;
81 const MipsRegisterInfo RI
;
83 explicit MipsInstrInfo(MipsTargetMachine
&TM
);
85 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
86 /// such, whenever a client has an instance of instruction info, it should
87 /// always be able to get register info as well (through this method).
89 virtual const MipsRegisterInfo
&getRegisterInfo() const;
91 /// isLoadFromStackSlot - If the specified machine instruction is a direct
92 /// load from a stack slot, return the virtual or physical register number of
93 /// the destination along with the FrameIndex of the loaded stack slot. If
94 /// not, return 0. This predicate must return 0 if the instruction has
95 /// any side effects other than loading from the stack slot.
96 virtual unsigned isLoadFromStackSlot(const MachineInstr
*MI
,
97 int &FrameIndex
) const;
99 /// isStoreToStackSlot - If the specified machine instruction is a direct
100 /// store to a stack slot, return the virtual or physical register number of
101 /// the source reg along with the FrameIndex of the loaded stack slot. If
102 /// not, return 0. This predicate must return 0 if the instruction has
103 /// any side effects other than storing to the stack slot.
104 virtual unsigned isStoreToStackSlot(const MachineInstr
*MI
,
105 int &FrameIndex
) const;
108 virtual bool AnalyzeBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*&TBB
,
109 MachineBasicBlock
*&FBB
,
110 SmallVectorImpl
<MachineOperand
> &Cond
,
111 bool AllowModify
) const;
112 virtual unsigned RemoveBranch(MachineBasicBlock
&MBB
) const;
115 void BuildCondBr(MachineBasicBlock
&MBB
, MachineBasicBlock
*TBB
, DebugLoc DL
,
116 const SmallVectorImpl
<MachineOperand
>& Cond
) const;
119 virtual unsigned InsertBranch(MachineBasicBlock
&MBB
, MachineBasicBlock
*TBB
,
120 MachineBasicBlock
*FBB
,
121 const SmallVectorImpl
<MachineOperand
> &Cond
,
123 virtual void copyPhysReg(MachineBasicBlock
&MBB
,
124 MachineBasicBlock::iterator MI
, DebugLoc DL
,
125 unsigned DestReg
, unsigned SrcReg
,
127 virtual void storeRegToStackSlot(MachineBasicBlock
&MBB
,
128 MachineBasicBlock::iterator MBBI
,
129 unsigned SrcReg
, bool isKill
, int FrameIndex
,
130 const TargetRegisterClass
*RC
,
131 const TargetRegisterInfo
*TRI
) const;
133 virtual void loadRegFromStackSlot(MachineBasicBlock
&MBB
,
134 MachineBasicBlock::iterator MBBI
,
135 unsigned DestReg
, int FrameIndex
,
136 const TargetRegisterClass
*RC
,
137 const TargetRegisterInfo
*TRI
) const;
139 virtual MachineInstr
* emitFrameIndexDebugValue(MachineFunction
&MF
,
140 int FrameIx
, uint64_t Offset
,
145 bool ReverseBranchCondition(SmallVectorImpl
<MachineOperand
> &Cond
) const;
147 /// Insert nop instruction when hazard condition is found
148 virtual void insertNoop(MachineBasicBlock
&MBB
,
149 MachineBasicBlock::iterator MI
) const;
151 /// getGlobalBaseReg - Return a virtual register initialized with the
152 /// the global base register value. Output instructions required to
153 /// initialize the register in the function entry block, if necessary.
155 unsigned getGlobalBaseReg(MachineFunction
*MF
) const;