1 //===- MBlazeInstrInfo.h - MBlaze 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 MBlaze implementation of the TargetInstrInfo class.
12 //===----------------------------------------------------------------------===//
14 #ifndef MBLAZEINSTRUCTIONINFO_H
15 #define MBLAZEINSTRUCTIONINFO_H
18 #include "llvm/Support/ErrorHandling.h"
19 #include "llvm/Target/TargetInstrInfo.h"
20 #include "MBlazeRegisterInfo.h"
26 // MBlaze Branch Codes
35 // MBlaze Condition Codes
37 // To be used with float branch True
55 // To be used with float branch False
56 // This conditions have the same mnemonic as the
57 // above ones, but are used with a branch False;
75 // Only integer conditions
85 // Turn condition code into conditional branch opcode.
86 unsigned GetCondBranchFromCond(CondCode CC);
88 /// GetOppositeBranchCondition - Return the inverse of the specified cond,
89 /// e.g. turning COND_E to COND_NE.
90 CondCode GetOppositeBranchCondition(MBlaze::CondCode CC);
92 /// MBlazeCCToString - Map each FP condition code to its string
93 inline static const char *MBlazeFCCToString(MBlaze::CondCode CC)
96 default: llvm_unreachable("Unknown condition code");
98 case FCOND_T: return "f";
100 case FCOND_OR: return "un";
102 case FCOND_NEQ: return "eq";
104 case FCOND_OGL: return "ueq";
106 case FCOND_UGE: return "olt";
108 case FCOND_OGE: return "ult";
110 case FCOND_UGT: return "ole";
112 case FCOND_OGT: return "ule";
114 case FCOND_ST: return "sf";
116 case FCOND_GLE: return "ngle";
118 case FCOND_SNE: return "seq";
120 case FCOND_GL: return "ngl";
122 case FCOND_NLT: return "lt";
124 case FCOND_GE: return "ge";
126 case FCOND_NLE: return "nle";
128 case FCOND_GT: return "gt";
133 /// MBlazeII - This namespace holds all of the target specific flags that
134 /// instruction info tracks.
138 // PseudoFrm - This represents an instruction that is a pseudo instruction
139 // or one that has not been implemented yet. It is illegal to code generate
140 // it, but tolerated for intermediate implementation stages.
162 //===------------------------------------------------------------------===//
163 // MBlaze Specific MachineOperand flags.
166 /// MO_GOT - Represents the offset into the global offset table at which
167 /// the address the relocation entry symbol resides during execution.
170 /// MO_GOT_CALL - Represents the offset into the global offset table at
171 /// which the address of a call site relocation entry symbol resides
172 /// during execution. This is different from the above since this flag
173 /// can only be present in call instructions.
176 /// MO_GPREL - Represents the offset from the current gp value to be used
177 /// for the relocatable object file being produced.
180 /// MO_ABS_HILO - Represents the hi or low part of an absolute symbol
187 class MBlazeInstrInfo : public TargetInstrInfoImpl {
188 MBlazeTargetMachine &TM;
189 const MBlazeRegisterInfo RI;
191 explicit MBlazeInstrInfo(MBlazeTargetMachine &TM);
193 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
194 /// such, whenever a client has an instance of instruction info, it should
195 /// always be able to get register info as well (through this method).
197 virtual const MBlazeRegisterInfo &getRegisterInfo() const { return RI; }
199 /// isLoadFromStackSlot - If the specified machine instruction is a direct
200 /// load from a stack slot, return the virtual or physical register number of
201 /// the destination along with the FrameIndex of the loaded stack slot. If
202 /// not, return 0. This predicate must return 0 if the instruction has
203 /// any side effects other than loading from the stack slot.
204 virtual unsigned isLoadFromStackSlot(const MachineInstr *MI,
205 int &FrameIndex) const;
207 /// isStoreToStackSlot - If the specified machine instruction is a direct
208 /// store to a stack slot, return the virtual or physical register number of
209 /// the source reg along with the FrameIndex of the loaded stack slot. If
210 /// not, return 0. This predicate must return 0 if the instruction has
211 /// any side effects other than storing to the stack slot.
212 virtual unsigned isStoreToStackSlot(const MachineInstr *MI,
213 int &FrameIndex) const;
216 virtual unsigned InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
217 MachineBasicBlock *FBB,
218 const SmallVectorImpl<MachineOperand> &Cond,
220 virtual void copyPhysReg(MachineBasicBlock &MBB,
221 MachineBasicBlock::iterator I, DebugLoc DL,
222 unsigned DestReg, unsigned SrcReg,
224 virtual void storeRegToStackSlot(MachineBasicBlock &MBB,
225 MachineBasicBlock::iterator MBBI,
226 unsigned SrcReg, bool isKill, int FrameIndex,
227 const TargetRegisterClass *RC,
228 const TargetRegisterInfo *TRI) const;
230 virtual void loadRegFromStackSlot(MachineBasicBlock &MBB,
231 MachineBasicBlock::iterator MBBI,
232 unsigned DestReg, int FrameIndex,
233 const TargetRegisterClass *RC,
234 const TargetRegisterInfo *TRI) const;
236 /// Insert nop instruction when hazard condition is found
237 virtual void insertNoop(MachineBasicBlock &MBB,
238 MachineBasicBlock::iterator MI) const;
240 /// getGlobalBaseReg - Return a virtual register initialized with the
241 /// the global base register value. Output instructions required to
242 /// initialize the register in the function entry block, if necessary.
244 unsigned getGlobalBaseReg(MachineFunction *MF) const;