blob: 06882e138c0073221fd93739f282817b5fd25e59 [file] [log] [blame]
Jia Liu9f610112012-02-17 08:55:11 +00001//===-- MipsMCCodeEmitter.cpp - Convert Mips Code to Machine Code ---------===//
Akira Hatanaka750ecec2011-09-30 20:40:03 +00002//
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 implements the MipsMCCodeEmitter class.
11//
12//===----------------------------------------------------------------------===//
13//
14#define DEBUG_TYPE "mccodeemitter"
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000015#include "MCTargetDesc/MipsBaseInfo.h"
Jack Carteraa7aeaa2012-10-02 23:09:40 +000016#include "MCTargetDesc/MipsDirectObjLower.h"
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000017#include "MCTargetDesc/MipsFixupKinds.h"
18#include "MCTargetDesc/MipsMCTargetDesc.h"
19#include "llvm/ADT/APFloat.h"
20#include "llvm/ADT/Statistic.h"
Akira Hatanaka750ecec2011-09-30 20:40:03 +000021#include "llvm/MC/MCCodeEmitter.h"
22#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCInst.h"
24#include "llvm/MC/MCInstrInfo.h"
25#include "llvm/MC/MCRegisterInfo.h"
26#include "llvm/MC/MCSubtargetInfo.h"
Akira Hatanaka750ecec2011-09-30 20:40:03 +000027#include "llvm/Support/raw_ostream.h"
Akira Hatanaka750ecec2011-09-30 20:40:03 +000028
29using namespace llvm;
30
31namespace {
32class MipsMCCodeEmitter : public MCCodeEmitter {
Craig Topper2ed23ce2012-09-15 17:08:51 +000033 MipsMCCodeEmitter(const MipsMCCodeEmitter &) LLVM_DELETED_FUNCTION;
34 void operator=(const MipsMCCodeEmitter &) LLVM_DELETED_FUNCTION;
Akira Hatanaka750ecec2011-09-30 20:40:03 +000035 const MCInstrInfo &MCII;
Akira Hatanaka1ee768d2012-03-01 01:53:15 +000036 bool IsLittleEndian;
Akira Hatanaka750ecec2011-09-30 20:40:03 +000037
38public:
Craig Topper2ed23ce2012-09-15 17:08:51 +000039 MipsMCCodeEmitter(const MCInstrInfo &mcii, bool IsLittle) :
40 MCII(mcii), IsLittleEndian(IsLittle) {}
Akira Hatanaka750ecec2011-09-30 20:40:03 +000041
42 ~MipsMCCodeEmitter() {}
43
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000044 void EmitByte(unsigned char C, raw_ostream &OS) const {
45 OS << (char)C;
Akira Hatanaka750ecec2011-09-30 20:40:03 +000046 }
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000047
48 void EmitInstruction(uint64_t Val, unsigned Size, raw_ostream &OS) const {
49 // Output the instruction encoding in little endian byte order.
Akira Hatanaka0137dfe2012-03-21 00:52:01 +000050 for (unsigned i = 0; i < Size; ++i) {
51 unsigned Shift = IsLittleEndian ? i * 8 : (Size - 1 - i) * 8;
52 EmitByte((Val >> Shift) & 0xff, OS);
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000053 }
54 }
55
56 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
57 SmallVectorImpl<MCFixup> &Fixups) const;
58
59 // getBinaryCodeForInstr - TableGen'erated function for getting the
60 // binary encoding for an instruction.
Owen Andersond845d9d2012-01-24 18:37:29 +000061 uint64_t getBinaryCodeForInstr(const MCInst &MI,
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000062 SmallVectorImpl<MCFixup> &Fixups) const;
63
64 // getBranchJumpOpValue - Return binary encoding of the jump
65 // target operand. If the machine operand requires relocation,
66 // record the relocation and return zero.
67 unsigned getJumpTargetOpValue(const MCInst &MI, unsigned OpNo,
68 SmallVectorImpl<MCFixup> &Fixups) const;
69
70 // getBranchTargetOpValue - Return binary encoding of the branch
71 // target operand. If the machine operand requires relocation,
72 // record the relocation and return zero.
73 unsigned getBranchTargetOpValue(const MCInst &MI, unsigned OpNo,
74 SmallVectorImpl<MCFixup> &Fixups) const;
75
76 // getMachineOpValue - Return binary encoding of operand. If the machin
77 // operand requires relocation, record the relocation and return zero.
78 unsigned getMachineOpValue(const MCInst &MI,const MCOperand &MO,
79 SmallVectorImpl<MCFixup> &Fixups) const;
80
81 unsigned getMemEncoding(const MCInst &MI, unsigned OpNo,
82 SmallVectorImpl<MCFixup> &Fixups) const;
83 unsigned getSizeExtEncoding(const MCInst &MI, unsigned OpNo,
84 SmallVectorImpl<MCFixup> &Fixups) const;
85 unsigned getSizeInsEncoding(const MCInst &MI, unsigned OpNo,
86 SmallVectorImpl<MCFixup> &Fixups) const;
87
Akira Hatanaka750ecec2011-09-30 20:40:03 +000088}; // class MipsMCCodeEmitter
89} // namespace
90
Akira Hatanaka1ee768d2012-03-01 01:53:15 +000091MCCodeEmitter *llvm::createMipsMCCodeEmitterEB(const MCInstrInfo &MCII,
Jim Grosbachc3b04272012-05-15 17:35:52 +000092 const MCRegisterInfo &MRI,
Akira Hatanaka1ee768d2012-03-01 01:53:15 +000093 const MCSubtargetInfo &STI,
94 MCContext &Ctx)
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +000095{
Craig Topper2ed23ce2012-09-15 17:08:51 +000096 return new MipsMCCodeEmitter(MCII, false);
Akira Hatanaka1ee768d2012-03-01 01:53:15 +000097}
98
99MCCodeEmitter *llvm::createMipsMCCodeEmitterEL(const MCInstrInfo &MCII,
Jim Grosbachc3b04272012-05-15 17:35:52 +0000100 const MCRegisterInfo &MRI,
Akira Hatanaka1ee768d2012-03-01 01:53:15 +0000101 const MCSubtargetInfo &STI,
102 MCContext &Ctx)
103{
Craig Topper2ed23ce2012-09-15 17:08:51 +0000104 return new MipsMCCodeEmitter(MCII, true);
Akira Hatanaka750ecec2011-09-30 20:40:03 +0000105}
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000106
107/// EncodeInstruction - Emit the instruction.
108/// Size the instruction (currently only 4 bytes
109void MipsMCCodeEmitter::
110EncodeInstruction(const MCInst &MI, raw_ostream &OS,
111 SmallVectorImpl<MCFixup> &Fixups) const
112{
Jack Carteraa7aeaa2012-10-02 23:09:40 +0000113
114 // Non-pseudo instructions that get changed for direct object
115 // only based on operand values.
116 // If this list of instructions get much longer we will move
117 // the check to a function call. Until then, this is more efficient.
118 MCInst TmpInst = MI;
119 switch (MI.getOpcode()) {
120 // If shift amount is >= 32 it the inst needs to be lowered further
121 case Mips::DSLL:
122 case Mips::DSRL:
123 case Mips::DSRA:
124 Mips::LowerLargeShift(TmpInst);
125 break;
126 // Double extract instruction is chosen by pos and size operands
127 case Mips::DEXT:
128 case Mips::DINS:
129 Mips::LowerDextDins(TmpInst);
130 }
131
132 uint32_t Binary = getBinaryCodeForInstr(TmpInst, Fixups);
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000133
134 // Check for unimplemented opcodes.
Jack Carteraa7aeaa2012-10-02 23:09:40 +0000135 // Unfortunately in MIPS both NOP and SLL will come in with Binary == 0
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000136 // so we have to special check for them.
Jack Carteraa7aeaa2012-10-02 23:09:40 +0000137 unsigned Opcode = TmpInst.getOpcode();
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000138 if ((Opcode != Mips::NOP) && (Opcode != Mips::SLL) && !Binary)
139 llvm_unreachable("unimplemented opcode in EncodeInstruction()");
140
Jack Carteraa7aeaa2012-10-02 23:09:40 +0000141 const MCInstrDesc &Desc = MCII.get(TmpInst.getOpcode());
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000142 uint64_t TSFlags = Desc.TSFlags;
143
144 // Pseudo instructions don't get encoded and shouldn't be here
145 // in the first place!
146 if ((TSFlags & MipsII::FormMask) == MipsII::Pseudo)
147 llvm_unreachable("Pseudo opcode found in EncodeInstruction()");
148
149 // For now all instructions are 4 bytes
150 int Size = 4; // FIXME: Have Desc.getSize() return the correct value!
151
152 EmitInstruction(Binary, Size, OS);
153}
154
155/// getBranchTargetOpValue - Return binary encoding of the branch
156/// target operand. If the machine operand requires relocation,
157/// record the relocation and return zero.
158unsigned MipsMCCodeEmitter::
159getBranchTargetOpValue(const MCInst &MI, unsigned OpNo,
160 SmallVectorImpl<MCFixup> &Fixups) const {
161
162 const MCOperand &MO = MI.getOperand(OpNo);
Jack Carter71e6a742012-09-06 00:43:26 +0000163
164 // If the destination is an immediate, we have nothing to do.
165 if (MO.isImm()) return MO.getImm();
166 assert(MO.isExpr() &&
167 "getBranchTargetOpValue expects only expressions or immediates");
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000168
169 const MCExpr *Expr = MO.getExpr();
170 Fixups.push_back(MCFixup::Create(0, Expr,
171 MCFixupKind(Mips::fixup_Mips_PC16)));
172 return 0;
173}
174
175/// getJumpTargetOpValue - Return binary encoding of the jump
176/// target operand. If the machine operand requires relocation,
177/// record the relocation and return zero.
178unsigned MipsMCCodeEmitter::
179getJumpTargetOpValue(const MCInst &MI, unsigned OpNo,
180 SmallVectorImpl<MCFixup> &Fixups) const {
181
182 const MCOperand &MO = MI.getOperand(OpNo);
Jack Carter71e6a742012-09-06 00:43:26 +0000183 // If the destination is an immediate, we have nothing to do.
184 if (MO.isImm()) return MO.getImm();
185 assert(MO.isExpr() &&
186 "getJumpTargetOpValue expects only expressions or an immediate");
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000187
188 const MCExpr *Expr = MO.getExpr();
189 Fixups.push_back(MCFixup::Create(0, Expr,
190 MCFixupKind(Mips::fixup_Mips_26)));
191 return 0;
192}
193
194/// getMachineOpValue - Return binary encoding of operand. If the machine
195/// operand requires relocation, record the relocation and return zero.
196unsigned MipsMCCodeEmitter::
197getMachineOpValue(const MCInst &MI, const MCOperand &MO,
198 SmallVectorImpl<MCFixup> &Fixups) const {
199 if (MO.isReg()) {
200 unsigned Reg = MO.getReg();
201 unsigned RegNo = getMipsRegisterNumbering(Reg);
202 return RegNo;
203 } else if (MO.isImm()) {
204 return static_cast<unsigned>(MO.getImm());
205 } else if (MO.isFPImm()) {
206 return static_cast<unsigned>(APFloat(MO.getFPImm())
207 .bitcastToAPInt().getHiBits(32).getLimitedValue());
Akira Hatanaka5fd22482012-06-14 21:10:56 +0000208 }
Akira Hatanaka049e9e42011-11-23 22:19:28 +0000209
Akira Hatanakafe384a22012-03-27 02:33:05 +0000210 // MO must be an Expr.
211 assert(MO.isExpr());
Akira Hatanaka049e9e42011-11-23 22:19:28 +0000212
Akira Hatanakafe384a22012-03-27 02:33:05 +0000213 const MCExpr *Expr = MO.getExpr();
214 MCExpr::ExprKind Kind = Expr->getKind();
Akira Hatanakae2eed962011-12-22 01:05:17 +0000215
Akira Hatanakafe384a22012-03-27 02:33:05 +0000216 if (Kind == MCExpr::Binary) {
217 Expr = static_cast<const MCBinaryExpr*>(Expr)->getLHS();
218 Kind = Expr->getKind();
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000219 }
Akira Hatanakafe384a22012-03-27 02:33:05 +0000220
221 assert (Kind == MCExpr::SymbolRef);
Akira Hatanaka5fd22482012-06-14 21:10:56 +0000222
Bill Wendlingf9774c32012-04-22 07:23:04 +0000223 Mips::Fixups FixupKind = Mips::Fixups(0);
Akira Hatanakafe384a22012-03-27 02:33:05 +0000224
225 switch(cast<MCSymbolRefExpr>(Expr)->getKind()) {
Jack Carterb9f9de92012-06-27 22:48:25 +0000226 default: llvm_unreachable("Unknown fixup kind!");
227 break;
Jack Carterb9f9de92012-06-27 22:48:25 +0000228 case MCSymbolRefExpr::VK_Mips_GPOFF_HI :
229 FixupKind = Mips::fixup_Mips_GPOFF_HI;
230 break;
231 case MCSymbolRefExpr::VK_Mips_GPOFF_LO :
232 FixupKind = Mips::fixup_Mips_GPOFF_LO;
233 break;
234 case MCSymbolRefExpr::VK_Mips_GOT_PAGE :
235 FixupKind = Mips::fixup_Mips_GOT_PAGE;
236 break;
237 case MCSymbolRefExpr::VK_Mips_GOT_OFST :
238 FixupKind = Mips::fixup_Mips_GOT_OFST;
239 break;
Jack Carter5ddcfda2012-07-13 19:15:47 +0000240 case MCSymbolRefExpr::VK_Mips_GOT_DISP :
241 FixupKind = Mips::fixup_Mips_GOT_DISP;
242 break;
Akira Hatanakafe384a22012-03-27 02:33:05 +0000243 case MCSymbolRefExpr::VK_Mips_GPREL:
244 FixupKind = Mips::fixup_Mips_GPREL16;
245 break;
246 case MCSymbolRefExpr::VK_Mips_GOT_CALL:
247 FixupKind = Mips::fixup_Mips_CALL16;
248 break;
249 case MCSymbolRefExpr::VK_Mips_GOT16:
250 FixupKind = Mips::fixup_Mips_GOT_Global;
251 break;
252 case MCSymbolRefExpr::VK_Mips_GOT:
253 FixupKind = Mips::fixup_Mips_GOT_Local;
254 break;
255 case MCSymbolRefExpr::VK_Mips_ABS_HI:
256 FixupKind = Mips::fixup_Mips_HI16;
257 break;
258 case MCSymbolRefExpr::VK_Mips_ABS_LO:
259 FixupKind = Mips::fixup_Mips_LO16;
260 break;
261 case MCSymbolRefExpr::VK_Mips_TLSGD:
262 FixupKind = Mips::fixup_Mips_TLSGD;
263 break;
264 case MCSymbolRefExpr::VK_Mips_TLSLDM:
265 FixupKind = Mips::fixup_Mips_TLSLDM;
266 break;
267 case MCSymbolRefExpr::VK_Mips_DTPREL_HI:
268 FixupKind = Mips::fixup_Mips_DTPREL_HI;
269 break;
270 case MCSymbolRefExpr::VK_Mips_DTPREL_LO:
271 FixupKind = Mips::fixup_Mips_DTPREL_LO;
272 break;
273 case MCSymbolRefExpr::VK_Mips_GOTTPREL:
274 FixupKind = Mips::fixup_Mips_GOTTPREL;
275 break;
276 case MCSymbolRefExpr::VK_Mips_TPREL_HI:
277 FixupKind = Mips::fixup_Mips_TPREL_HI;
278 break;
279 case MCSymbolRefExpr::VK_Mips_TPREL_LO:
280 FixupKind = Mips::fixup_Mips_TPREL_LO;
281 break;
Jack Carter84491ab2012-08-06 21:26:03 +0000282 case MCSymbolRefExpr::VK_Mips_HIGHER:
283 FixupKind = Mips::fixup_Mips_HIGHER;
284 break;
285 case MCSymbolRefExpr::VK_Mips_HIGHEST:
286 FixupKind = Mips::fixup_Mips_HIGHEST;
287 break;
Akira Hatanakafe384a22012-03-27 02:33:05 +0000288 } // switch
289
290 Fixups.push_back(MCFixup::Create(0, MO.getExpr(), MCFixupKind(FixupKind)));
291
292 // All of the information is in the fixup.
293 return 0;
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000294}
295
296/// getMemEncoding - Return binary encoding of memory related operand.
297/// If the offset operand requires relocation, record the relocation.
298unsigned
299MipsMCCodeEmitter::getMemEncoding(const MCInst &MI, unsigned OpNo,
300 SmallVectorImpl<MCFixup> &Fixups) const {
301 // Base register is encoded in bits 20-16, offset is encoded in bits 15-0.
302 assert(MI.getOperand(OpNo).isReg());
303 unsigned RegBits = getMachineOpValue(MI, MI.getOperand(OpNo),Fixups) << 16;
304 unsigned OffBits = getMachineOpValue(MI, MI.getOperand(OpNo+1), Fixups);
305
306 return (OffBits & 0xFFFF) | RegBits;
307}
308
309unsigned
310MipsMCCodeEmitter::getSizeExtEncoding(const MCInst &MI, unsigned OpNo,
311 SmallVectorImpl<MCFixup> &Fixups) const {
Akira Hatanaka049e9e42011-11-23 22:19:28 +0000312 assert(MI.getOperand(OpNo).isImm());
Bruno Cardoso Lopes56b70de2011-12-07 22:35:30 +0000313 unsigned SizeEncoding = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups);
314 return SizeEncoding - 1;
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000315}
316
Akira Hatanaka049e9e42011-11-23 22:19:28 +0000317// FIXME: should be called getMSBEncoding
318//
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000319unsigned
320MipsMCCodeEmitter::getSizeInsEncoding(const MCInst &MI, unsigned OpNo,
321 SmallVectorImpl<MCFixup> &Fixups) const {
Akira Hatanaka049e9e42011-11-23 22:19:28 +0000322 assert(MI.getOperand(OpNo-1).isImm());
323 assert(MI.getOperand(OpNo).isImm());
Bruno Cardoso Lopes56b70de2011-12-07 22:35:30 +0000324 unsigned Position = getMachineOpValue(MI, MI.getOperand(OpNo-1), Fixups);
325 unsigned Size = getMachineOpValue(MI, MI.getOperand(OpNo), Fixups);
Akira Hatanaka049e9e42011-11-23 22:19:28 +0000326
Bruno Cardoso Lopes56b70de2011-12-07 22:35:30 +0000327 return Position + Size - 1;
Bruno Cardoso Lopesc85e3ff2011-11-11 22:58:42 +0000328}
329
330#include "MipsGenMCCodeEmitter.inc"
331