ps][microMIPS] Implement ADDIUR2 instruction
[oota-llvm.git] / lib / Target / Mips / MCTargetDesc / MipsMCCodeEmitter.h
1 //===-- MipsMCCodeEmitter.h - Convert Mips Code to Machine Code -----------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines the MipsMCCodeEmitter class.
11 //
12 //===----------------------------------------------------------------------===//
13 //
14
15 #ifndef LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSMCCODEEMITTER_H
16 #define LLVM_LIB_TARGET_MIPS_MCTARGETDESC_MIPSMCCODEEMITTER_H
17
18 #include "llvm/MC/MCCodeEmitter.h"
19 #include "llvm/Support/DataTypes.h"
20
21 using namespace llvm;
22
23 namespace llvm {
24 class MCContext;
25 class MCExpr;
26 class MCInst;
27 class MCInstrInfo;
28 class MCFixup;
29 class MCOperand;
30 class MCSubtargetInfo;
31 class raw_ostream;
32
33 class MipsMCCodeEmitter : public MCCodeEmitter {
34   MipsMCCodeEmitter(const MipsMCCodeEmitter &) LLVM_DELETED_FUNCTION;
35   void operator=(const MipsMCCodeEmitter &) LLVM_DELETED_FUNCTION;
36   const MCInstrInfo &MCII;
37   MCContext &Ctx;
38   bool IsLittleEndian;
39
40   bool isMicroMips(const MCSubtargetInfo &STI) const;
41
42 public:
43   MipsMCCodeEmitter(const MCInstrInfo &mcii, MCContext &Ctx_, bool IsLittle)
44       : MCII(mcii), Ctx(Ctx_), IsLittleEndian(IsLittle) {}
45
46   ~MipsMCCodeEmitter() {}
47
48   void EmitByte(unsigned char C, raw_ostream &OS) const;
49
50   void EmitInstruction(uint64_t Val, unsigned Size, const MCSubtargetInfo &STI,
51                        raw_ostream &OS) const;
52
53   void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
54                          SmallVectorImpl<MCFixup> &Fixups,
55                          const MCSubtargetInfo &STI) const override;
56
57   // getBinaryCodeForInstr - TableGen'erated function for getting the
58   // binary encoding for an instruction.
59   uint64_t getBinaryCodeForInstr(const MCInst &MI,
60                                  SmallVectorImpl<MCFixup> &Fixups,
61                                  const MCSubtargetInfo &STI) const;
62
63   // getBranchJumpOpValue - Return binary encoding of the jump
64   // target operand. If the machine operand requires relocation,
65   // record the relocation and return zero.
66   unsigned getJumpTargetOpValue(const MCInst &MI, unsigned OpNo,
67                                 SmallVectorImpl<MCFixup> &Fixups,
68                                 const MCSubtargetInfo &STI) const;
69
70   // getBranchJumpOpValueMM - Return binary encoding of the microMIPS jump
71   // target operand. If the machine operand requires relocation,
72   // record the relocation and return zero.
73   unsigned getJumpTargetOpValueMM(const MCInst &MI, unsigned OpNo,
74                                   SmallVectorImpl<MCFixup> &Fixups,
75                                   const MCSubtargetInfo &STI) const;
76
77   // getUImm5Lsl2Encoding - Return binary encoding of the microMIPS jump
78   // target operand.
79   unsigned getUImm5Lsl2Encoding(const MCInst &MI, unsigned OpNo,
80                                 SmallVectorImpl<MCFixup> &Fixups,
81                                 const MCSubtargetInfo &STI) const;
82
83   unsigned getSImm3Lsa2Value(const MCInst &MI, unsigned OpNo,
84                              SmallVectorImpl<MCFixup> &Fixups,
85                              const MCSubtargetInfo &STI) const;
86
87   // getSImm9AddiuspValue - Return binary encoding of the microMIPS addiusp
88   // instruction immediate operand.
89   unsigned getSImm9AddiuspValue(const MCInst &MI, unsigned OpNo,
90                                 SmallVectorImpl<MCFixup> &Fixups,
91                                 const MCSubtargetInfo &STI) const;
92
93   // getBranchTargetOpValue - Return binary encoding of the branch
94   // target operand. If the machine operand requires relocation,
95   // record the relocation and return zero.
96   unsigned getBranchTargetOpValue(const MCInst &MI, unsigned OpNo,
97                                   SmallVectorImpl<MCFixup> &Fixups,
98                                   const MCSubtargetInfo &STI) const;
99
100   // getBranchTargetOpValue - Return binary encoding of the microMIPS branch
101   // target operand. If the machine operand requires relocation,
102   // record the relocation and return zero.
103   unsigned getBranchTargetOpValueMM(const MCInst &MI, unsigned OpNo,
104                                     SmallVectorImpl<MCFixup> &Fixups,
105                                     const MCSubtargetInfo &STI) const;
106
107   // getBranchTarget21OpValue - Return binary encoding of the branch
108   // offset operand. If the machine operand requires relocation,
109   // record the relocation and return zero.
110   unsigned getBranchTarget21OpValue(const MCInst &MI, unsigned OpNo,
111                                    SmallVectorImpl<MCFixup> &Fixups,
112                                    const MCSubtargetInfo &STI) const;
113
114   // getBranchTarget26OpValue - Return binary encoding of the branch
115   // offset operand. If the machine operand requires relocation,
116   // record the relocation and return zero.
117   unsigned getBranchTarget26OpValue(const MCInst &MI, unsigned OpNo,
118                                     SmallVectorImpl<MCFixup> &Fixups,
119                                     const MCSubtargetInfo &STI) const;
120
121   // getJumpOffset16OpValue - Return binary encoding of the jump
122   // offset operand. If the machine operand requires relocation,
123   // record the relocation and return zero.
124   unsigned getJumpOffset16OpValue(const MCInst &MI, unsigned OpNo,
125                                   SmallVectorImpl<MCFixup> &Fixups,
126                                   const MCSubtargetInfo &STI) const;
127
128   // getMachineOpValue - Return binary encoding of operand. If the machin
129   // operand requires relocation, record the relocation and return zero.
130   unsigned getMachineOpValue(const MCInst &MI, const MCOperand &MO,
131                              SmallVectorImpl<MCFixup> &Fixups,
132                              const MCSubtargetInfo &STI) const;
133
134   unsigned getMSAMemEncoding(const MCInst &MI, unsigned OpNo,
135                              SmallVectorImpl<MCFixup> &Fixups,
136                              const MCSubtargetInfo &STI) const;
137
138   unsigned getMemEncoding(const MCInst &MI, unsigned OpNo,
139                           SmallVectorImpl<MCFixup> &Fixups,
140                           const MCSubtargetInfo &STI) const;
141   unsigned getMemEncodingMMImm12(const MCInst &MI, unsigned OpNo,
142                                  SmallVectorImpl<MCFixup> &Fixups,
143                                  const MCSubtargetInfo &STI) const;
144   unsigned getSizeExtEncoding(const MCInst &MI, unsigned OpNo,
145                               SmallVectorImpl<MCFixup> &Fixups,
146                               const MCSubtargetInfo &STI) const;
147   unsigned getSizeInsEncoding(const MCInst &MI, unsigned OpNo,
148                               SmallVectorImpl<MCFixup> &Fixups,
149                               const MCSubtargetInfo &STI) const;
150
151   // getLSAImmEncoding - Return binary encoding of LSA immediate.
152   unsigned getLSAImmEncoding(const MCInst &MI, unsigned OpNo,
153                              SmallVectorImpl<MCFixup> &Fixups,
154                              const MCSubtargetInfo &STI) const;
155
156   unsigned getSimm19Lsl2Encoding(const MCInst &MI, unsigned OpNo,
157                                  SmallVectorImpl<MCFixup> &Fixups,
158                                  const MCSubtargetInfo &STI) const;
159
160   unsigned getSimm18Lsl3Encoding(const MCInst &MI, unsigned OpNo,
161                                  SmallVectorImpl<MCFixup> &Fixups,
162                                  const MCSubtargetInfo &STI) const;
163
164   unsigned getUImm3Mod8Encoding(const MCInst &MI, unsigned OpNo,
165                                 SmallVectorImpl<MCFixup> &Fixups,
166                                 const MCSubtargetInfo &STI) const;
167
168   unsigned getExprOpValue(const MCExpr *Expr, SmallVectorImpl<MCFixup> &Fixups,
169                           const MCSubtargetInfo &STI) const;
170
171 }; // class MipsMCCodeEmitter
172 } // namespace llvm.
173
174 #endif