blob: 9d5a2f18b39ae1b842c11d955adbb1e2899acaa9 [file] [log] [blame]
Jia Liuc5707112012-02-17 08:55:11 +00001//===-- MipsASMBackend.cpp - Mips Asm Backend ----------------------------===//
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +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 MipsAsmBackend and MipsELFObjectWriter classes.
11//
12//===----------------------------------------------------------------------===//
13//
14
15#include "MipsFixupKinds.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000016#include "MCTargetDesc/MipsMCTargetDesc.h"
17#include "llvm/ADT/Twine.h"
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000018#include "llvm/MC/MCAsmBackend.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000019#include "llvm/MC/MCAssembler.h"
20#include "llvm/MC/MCDirectives.h"
21#include "llvm/MC/MCELFObjectWriter.h"
22#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCMachObjectWriter.h"
24#include "llvm/MC/MCObjectWriter.h"
25#include "llvm/MC/MCSectionELF.h"
26#include "llvm/MC/MCSectionMachO.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000027#include "llvm/MC/MCSubtargetInfo.h"
28#include "llvm/Object/MachOFormat.h"
29#include "llvm/Support/ELF.h"
30#include "llvm/Support/ErrorHandling.h"
31#include "llvm/Support/raw_ostream.h"
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000032
Akira Hatanaka82ea7312011-09-30 21:04:02 +000033using namespace llvm;
34
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000035// Prepare value for the target space for it
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000036static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
37
38 // Add/subtract and shift
39 switch (Kind) {
40 default:
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000041 return 0;
42 case FK_GPRel_4:
43 case FK_Data_4:
44 case Mips::fixup_Mips_LO16:
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000045 break;
46 case Mips::fixup_Mips_PC16:
47 // So far we are only using this type for branches.
48 // For branches we start 1 instruction after the branch
49 // so the displacement will be one instruction size less.
50 Value -= 4;
51 // The displacement is then divided by 4 to give us an 18 bit
52 // address range.
53 Value >>= 2;
54 break;
55 case Mips::fixup_Mips_26:
56 // So far we are only using this type for jumps.
57 // The displacement is then divided by 4 to give us an 28 bit
58 // address range.
59 Value >>= 2;
60 break;
Akira Hatanaka84bfc2f2011-11-23 22:18:04 +000061 case Mips::fixup_Mips_HI16:
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000062 case Mips::fixup_Mips_GOT_Local:
63 // Get the higher 16-bits. Also add 1 if bit 15 is 1.
64 Value = (Value >> 16) + ((Value & 0x8000) != 0);
Akira Hatanaka84bfc2f2011-11-23 22:18:04 +000065 break;
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000066 }
67
68 return Value;
69}
70
Akira Hatanaka82ea7312011-09-30 21:04:02 +000071namespace {
Akira Hatanaka82ea7312011-09-30 21:04:02 +000072class MipsAsmBackend : public MCAsmBackend {
Akira Hatanakae9e520f2012-03-01 01:53:15 +000073 Triple::OSType OSType;
74 bool IsLittle; // Big or little endian
75
Akira Hatanaka82ea7312011-09-30 21:04:02 +000076public:
Akira Hatanakae9e520f2012-03-01 01:53:15 +000077 MipsAsmBackend(const Target &T, Triple::OSType _OSType, bool _isLittle) :
78 MCAsmBackend(), OSType(_OSType), IsLittle(_isLittle) {}
79
80 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
81 return createMipsELFObjectWriter(OS, OSType, IsLittle);
82 }
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +000083
84 /// ApplyFixup - Apply the \arg Value for given \arg Fixup into the provided
85 /// data fragment, at the offset specified by the fixup and following the
86 /// fixup kind as appropriate.
Jim Grosbachec343382012-01-18 18:52:16 +000087 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +000088 uint64_t Value) const {
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000089 MCFixupKind Kind = Fixup.getKind();
90 Value = adjustFixupValue((unsigned)Kind, Value);
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000091
92 if (!Value)
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000093 return; // Doesn't change encoding.
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000094
Akira Hatanakafb54afb2012-03-21 00:52:01 +000095 // Where do we start in the object
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000096 unsigned Offset = Fixup.getOffset();
Akira Hatanakafb54afb2012-03-21 00:52:01 +000097 // Number of bytes we need to fixup
98 unsigned NumBytes = (getFixupKindInfo(Kind).TargetSize + 7) / 8;
99 // Used to point to big endian bytes
100 unsigned FullSize;
101
Craig Topper9be7c942012-03-21 02:28:53 +0000102 switch ((unsigned)Kind) {
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000103 case Mips::fixup_Mips_16:
104 FullSize = 2;
105 break;
106 case Mips::fixup_Mips_64:
107 FullSize = 8;
108 break;
109 default:
110 FullSize = 4;
111 break;
112 }
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000113
114 // Grab current value, if any, from bits.
115 uint64_t CurVal = 0;
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000116
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000117 for (unsigned i = 0; i != NumBytes; ++i) {
118 unsigned Idx = IsLittle ? i : (FullSize - 1 - i);
119 CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8);
120 }
121
122 uint64_t Mask = ((uint64_t)(-1) >> (64 - getFixupKindInfo(Kind).TargetSize));
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000123 CurVal = (CurVal & ~Mask) | ((CurVal + Value) & Mask);
124
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000125 // Write out the fixed up bytes back to the code/data bits.
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000126 for (unsigned i = 0; i != NumBytes; ++i) {
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000127 unsigned Idx = IsLittle ? i : (FullSize - 1 - i);
128 Data[Offset + Idx] = (uint8_t)((CurVal >> (i*8)) & 0xff);
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000129 }
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000130 }
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000131
132 unsigned getNumFixupKinds() const { return Mips::NumTargetFixupKinds; }
133
134 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
135 const static MCFixupKindInfo Infos[Mips::NumTargetFixupKinds] = {
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000136 // This table *must* be in same the order of fixup_* kinds in
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000137 // MipsFixupKinds.h.
138 //
139 // name offset bits flags
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000140 { "fixup_Mips_16", 0, 16, 0 },
141 { "fixup_Mips_32", 0, 32, 0 },
142 { "fixup_Mips_REL32", 0, 32, 0 },
143 { "fixup_Mips_26", 0, 26, 0 },
144 { "fixup_Mips_HI16", 0, 16, 0 },
145 { "fixup_Mips_LO16", 0, 16, 0 },
146 { "fixup_Mips_GPREL16", 0, 16, 0 },
147 { "fixup_Mips_LITERAL", 0, 16, 0 },
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000148 { "fixup_Mips_GOT_Global", 0, 16, 0 },
149 { "fixup_Mips_GOT_Local", 0, 16, 0 },
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000150 { "fixup_Mips_PC16", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
151 { "fixup_Mips_CALL16", 0, 16, 0 },
152 { "fixup_Mips_GPREL32", 0, 32, 0 },
153 { "fixup_Mips_SHIFT5", 6, 5, 0 },
154 { "fixup_Mips_SHIFT6", 6, 5, 0 },
155 { "fixup_Mips_64", 0, 64, 0 },
156 { "fixup_Mips_TLSGD", 0, 16, 0 },
157 { "fixup_Mips_GOTTPREL", 0, 16, 0 },
158 { "fixup_Mips_TPREL_HI", 0, 16, 0 },
159 { "fixup_Mips_TPREL_LO", 0, 16, 0 },
Akira Hatanakabc249852011-12-22 01:05:17 +0000160 { "fixup_Mips_TLSLDM", 0, 16, 0 },
161 { "fixup_Mips_DTPREL_HI", 0, 16, 0 },
162 { "fixup_Mips_DTPREL_LO", 0, 16, 0 },
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000163 { "fixup_Mips_Branch_PCRel", 0, 16, MCFixupKindInfo::FKF_IsPCRel }
164 };
165
166 if (Kind < FirstTargetFixupKind)
167 return MCAsmBackend::getFixupKindInfo(Kind);
168
169 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
170 "Invalid kind!");
171 return Infos[Kind - FirstTargetFixupKind];
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000172 }
173
174 /// @name Target Relaxation Interfaces
175 /// @{
176
177 /// MayNeedRelaxation - Check whether the given instruction may need
178 /// relaxation.
179 ///
180 /// \param Inst - The instruction to test.
Jim Grosbachec343382012-01-18 18:52:16 +0000181 bool mayNeedRelaxation(const MCInst &Inst) const {
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000182 return false;
183 }
184
Jim Grosbach370b78d2011-12-06 00:47:03 +0000185 /// fixupNeedsRelaxation - Target specific predicate for whether a given
186 /// fixup requires the associated instruction to be relaxed.
187 bool fixupNeedsRelaxation(const MCFixup &Fixup,
188 uint64_t Value,
189 const MCInstFragment *DF,
190 const MCAsmLayout &Layout) const {
191 // FIXME.
192 assert(0 && "RelaxInstruction() unimplemented");
NAKAMURA Takumi6482e912011-12-06 01:48:32 +0000193 return false;
Jim Grosbach370b78d2011-12-06 00:47:03 +0000194 }
195
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000196 /// RelaxInstruction - Relax the instruction in the given fragment
197 /// to the next wider instruction.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000198 ///
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000199 /// \param Inst - The instruction to relax, which may be the same
200 /// as the output.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000201 /// \parm Res [output] - On return, the relaxed instruction.
Jim Grosbachec343382012-01-18 18:52:16 +0000202 void relaxInstruction(const MCInst &Inst, MCInst &Res) const {
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000203 }
Jia Liubb481f82012-02-28 07:46:26 +0000204
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000205 /// @}
206
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000207 /// WriteNopData - Write an (optimal) nop sequence of Count bytes
208 /// to the given output. If the target cannot generate such a sequence,
209 /// it should return an error.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000210 ///
211 /// \return - True on success.
Jim Grosbachec343382012-01-18 18:52:16 +0000212 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000213 return true;
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000214 }
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000215};
216
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000217} // namespace
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000218
Akira Hatanakae9e520f2012-03-01 01:53:15 +0000219// MCAsmBackend
220MCAsmBackend *llvm::createMipsAsmBackendEL(const Target &T, StringRef TT) {
221 return new MipsAsmBackend(T, Triple(TT).getOS(),
222 /*IsLittle*/true);
Rafael Espindola29a17142012-01-11 04:04:14 +0000223}
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000224
Akira Hatanakae9e520f2012-03-01 01:53:15 +0000225MCAsmBackend *llvm::createMipsAsmBackendEB(const Target &T, StringRef TT) {
226 return new MipsAsmBackend(T, Triple(TT).getOS(),
227 /*IsLittle*/false);
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000228}