[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / lib / Target / Mips / MipsInstrInfo.h
blobc96ed202df30b6a15fb42da3ccbefbac07049127
1 //===- MipsInstrInfo.h - Mips Instruction Information -----------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This file contains the Mips implementation of the TargetInstrInfo class.
11 // FIXME: We need to override TargetInstrInfo::getInlineAsmLength method in
12 // order for MipsLongBranch pass to work correctly when the code has inline
13 // assembly. The returned value doesn't have to be the asm instruction's exact
14 // size in bytes; MipsLongBranch only expects it to be the correct upper bound.
15 //===----------------------------------------------------------------------===//
17 #ifndef LLVM_LIB_TARGET_MIPS_MIPSINSTRINFO_H
18 #define LLVM_LIB_TARGET_MIPS_MIPSINSTRINFO_H
20 #include "MCTargetDesc/MipsMCTargetDesc.h"
21 #include "Mips.h"
22 #include "MipsRegisterInfo.h"
23 #include "llvm/ADT/ArrayRef.h"
24 #include "llvm/CodeGen/MachineBasicBlock.h"
25 #include "llvm/CodeGen/MachineInstrBuilder.h"
26 #include "llvm/CodeGen/MachineMemOperand.h"
27 #include "llvm/CodeGen/TargetInstrInfo.h"
28 #include <cstdint>
30 #define GET_INSTRINFO_HEADER
31 #include "MipsGenInstrInfo.inc"
33 namespace llvm {
35 class MachineInstr;
36 class MachineOperand;
37 class MipsSubtarget;
38 class TargetRegisterClass;
39 class TargetRegisterInfo;
41 class MipsInstrInfo : public MipsGenInstrInfo {
42 virtual void anchor();
44 protected:
45 const MipsSubtarget &Subtarget;
46 unsigned UncondBrOpc;
48 public:
49 enum BranchType {
50 BT_None, // Couldn't analyze branch.
51 BT_NoBranch, // No branches found.
52 BT_Uncond, // One unconditional branch.
53 BT_Cond, // One conditional branch.
54 BT_CondUncond, // A conditional branch followed by an unconditional branch.
55 BT_Indirect // One indirct branch.
58 explicit MipsInstrInfo(const MipsSubtarget &STI, unsigned UncondBrOpc);
60 static const MipsInstrInfo *create(MipsSubtarget &STI);
62 /// Branch Analysis
63 bool analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
64 MachineBasicBlock *&FBB,
65 SmallVectorImpl<MachineOperand> &Cond,
66 bool AllowModify) const override;
68 unsigned removeBranch(MachineBasicBlock &MBB,
69 int *BytesRemoved = nullptr) const override;
71 unsigned insertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
72 MachineBasicBlock *FBB, ArrayRef<MachineOperand> Cond,
73 const DebugLoc &DL,
74 int *BytesAdded = nullptr) const override;
76 bool
77 reverseBranchCondition(SmallVectorImpl<MachineOperand> &Cond) const override;
79 BranchType analyzeBranch(MachineBasicBlock &MBB, MachineBasicBlock *&TBB,
80 MachineBasicBlock *&FBB,
81 SmallVectorImpl<MachineOperand> &Cond,
82 bool AllowModify,
83 SmallVectorImpl<MachineInstr *> &BranchInstrs) const;
85 /// Determine the opcode of a non-delay slot form for a branch if one exists.
86 unsigned getEquivalentCompactForm(const MachineBasicBlock::iterator I) const;
88 /// Determine if the branch target is in range.
89 bool isBranchOffsetInRange(unsigned BranchOpc,
90 int64_t BrOffset) const override;
92 /// Predicate to determine if an instruction can go in a forbidden slot.
93 bool SafeInForbiddenSlot(const MachineInstr &MI) const;
95 /// Predicate to determine if an instruction has a forbidden slot.
96 bool HasForbiddenSlot(const MachineInstr &MI) const;
98 /// Insert nop instruction when hazard condition is found
99 void insertNoop(MachineBasicBlock &MBB,
100 MachineBasicBlock::iterator MI) const override;
102 /// getRegisterInfo - TargetInstrInfo is a superset of MRegister info. As
103 /// such, whenever a client has an instance of instruction info, it should
104 /// always be able to get register info as well (through this method).
105 virtual const MipsRegisterInfo &getRegisterInfo() const = 0;
107 virtual unsigned getOppositeBranchOpc(unsigned Opc) const = 0;
109 virtual bool isBranchWithImm(unsigned Opc) const {
110 return false;
113 /// Return the number of bytes of code the specified instruction may be.
114 unsigned getInstSizeInBytes(const MachineInstr &MI) const override;
116 void storeRegToStackSlot(MachineBasicBlock &MBB,
117 MachineBasicBlock::iterator MBBI,
118 Register SrcReg, bool isKill, int FrameIndex,
119 const TargetRegisterClass *RC,
120 const TargetRegisterInfo *TRI) const override {
121 storeRegToStack(MBB, MBBI, SrcReg, isKill, FrameIndex, RC, TRI, 0);
124 void loadRegFromStackSlot(MachineBasicBlock &MBB,
125 MachineBasicBlock::iterator MBBI,
126 Register DestReg, int FrameIndex,
127 const TargetRegisterClass *RC,
128 const TargetRegisterInfo *TRI) const override {
129 loadRegFromStack(MBB, MBBI, DestReg, FrameIndex, RC, TRI, 0);
132 virtual void storeRegToStack(MachineBasicBlock &MBB,
133 MachineBasicBlock::iterator MI,
134 Register SrcReg, bool isKill, int FrameIndex,
135 const TargetRegisterClass *RC,
136 const TargetRegisterInfo *TRI,
137 int64_t Offset) const = 0;
139 virtual void loadRegFromStack(MachineBasicBlock &MBB,
140 MachineBasicBlock::iterator MI,
141 Register DestReg, int FrameIndex,
142 const TargetRegisterClass *RC,
143 const TargetRegisterInfo *TRI,
144 int64_t Offset) const = 0;
146 virtual void adjustStackPtr(unsigned SP, int64_t Amount,
147 MachineBasicBlock &MBB,
148 MachineBasicBlock::iterator I) const = 0;
150 /// Create an instruction which has the same operands and memory operands
151 /// as MI but has a new opcode.
152 MachineInstrBuilder genInstrWithNewOpc(unsigned NewOpc,
153 MachineBasicBlock::iterator I) const;
155 bool findCommutedOpIndices(const MachineInstr &MI, unsigned &SrcOpIdx1,
156 unsigned &SrcOpIdx2) const override;
158 /// Perform target specific instruction verification.
159 bool verifyInstruction(const MachineInstr &MI,
160 StringRef &ErrInfo) const override;
162 std::pair<unsigned, unsigned>
163 decomposeMachineOperandsTargetFlags(unsigned TF) const override;
165 ArrayRef<std::pair<unsigned, const char *>>
166 getSerializableDirectMachineOperandTargetFlags() const override;
168 Optional<RegImmPair> isAddImmediate(const MachineInstr &MI,
169 Register Reg) const override;
171 Optional<ParamLoadedValue> describeLoadedValue(const MachineInstr &MI,
172 Register Reg) const override;
174 protected:
175 bool isZeroImm(const MachineOperand &op) const;
177 MachineMemOperand *GetMemOperand(MachineBasicBlock &MBB, int FI,
178 MachineMemOperand::Flags Flags) const;
180 private:
181 virtual unsigned getAnalyzableBrOpc(unsigned Opc) const = 0;
183 void AnalyzeCondBr(const MachineInstr *Inst, unsigned Opc,
184 MachineBasicBlock *&BB,
185 SmallVectorImpl<MachineOperand> &Cond) const;
187 void BuildCondBr(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
188 const DebugLoc &DL, ArrayRef<MachineOperand> Cond) const;
191 /// Create MipsInstrInfo objects.
192 const MipsInstrInfo *createMips16InstrInfo(const MipsSubtarget &STI);
193 const MipsInstrInfo *createMipsSEInstrInfo(const MipsSubtarget &STI);
195 } // end namespace llvm
197 #endif // LLVM_LIB_TARGET_MIPS_MIPSINSTRINFO_H