blob: 699148b22b11396a263bdd788ec76c7707c3a094 [file] [log] [blame]
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +00001//===-- MipsASMBackend.cpp - ---------===//
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 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 {
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000072
Akira Hatanaka82ea7312011-09-30 21:04:02 +000073class MipsELFObjectWriter : public MCELFObjectTargetWriter {
74public:
Rafael Espindoladc9a8a32011-12-21 17:00:36 +000075 MipsELFObjectWriter(bool is64Bit, uint8_t OSABI, uint16_t EMachine,
Akira Hatanaka82ea7312011-09-30 21:04:02 +000076 bool HasRelocationAddend)
Rafael Espindoladc9a8a32011-12-21 17:00:36 +000077 : MCELFObjectTargetWriter(is64Bit, OSABI, EMachine,
Akira Hatanaka82ea7312011-09-30 21:04:02 +000078 HasRelocationAddend) {}
79};
80
81class MipsAsmBackend : public MCAsmBackend {
82public:
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000083 MipsAsmBackend(const Target &T) : MCAsmBackend() {}
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +000084
85 /// ApplyFixup - Apply the \arg Value for given \arg Fixup into the provided
86 /// data fragment, at the offset specified by the fixup and following the
87 /// fixup kind as appropriate.
88 void ApplyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
89 uint64_t Value) const {
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000090 MCFixupKind Kind = Fixup.getKind();
91 Value = adjustFixupValue((unsigned)Kind, Value);
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000092
93 if (!Value)
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000094 return; // Doesn't change encoding.
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000095
96 unsigned Offset = Fixup.getOffset();
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000097 // FIXME: The below code will not work across endian models
98 // How many bytes/bits are we fixing up?
99 unsigned NumBytes = ((getFixupKindInfo(Kind).TargetSize-1)/8)+1;
100 uint64_t Mask = ((uint64_t)1 << getFixupKindInfo(Kind).TargetSize) - 1;
101
102 // Grab current value, if any, from bits.
103 uint64_t CurVal = 0;
104 for (unsigned i = 0; i != NumBytes; ++i)
105 CurVal |= ((uint8_t)Data[Offset + i]) << (i * 8);
106
107 CurVal = (CurVal & ~Mask) | ((CurVal + Value) & Mask);
108
109 // Write out the bytes back to the code/data bits.
110 // First the unaffected bits and then the fixup.
111 for (unsigned i = 0; i != NumBytes; ++i) {
112 Data[Offset + i] = uint8_t((CurVal >> (i * 8)) & 0xff);
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000113 }
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000114}
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000115
116 unsigned getNumFixupKinds() const { return Mips::NumTargetFixupKinds; }
117
118 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
119 const static MCFixupKindInfo Infos[Mips::NumTargetFixupKinds] = {
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000120 // This table *must* be in same the order of fixup_* kinds in
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000121 // MipsFixupKinds.h.
122 //
123 // name offset bits flags
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000124 { "fixup_Mips_16", 0, 16, 0 },
125 { "fixup_Mips_32", 0, 32, 0 },
126 { "fixup_Mips_REL32", 0, 32, 0 },
127 { "fixup_Mips_26", 0, 26, 0 },
128 { "fixup_Mips_HI16", 0, 16, 0 },
129 { "fixup_Mips_LO16", 0, 16, 0 },
130 { "fixup_Mips_GPREL16", 0, 16, 0 },
131 { "fixup_Mips_LITERAL", 0, 16, 0 },
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000132 { "fixup_Mips_GOT_Global", 0, 16, 0 },
133 { "fixup_Mips_GOT_Local", 0, 16, 0 },
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000134 { "fixup_Mips_PC16", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
135 { "fixup_Mips_CALL16", 0, 16, 0 },
136 { "fixup_Mips_GPREL32", 0, 32, 0 },
137 { "fixup_Mips_SHIFT5", 6, 5, 0 },
138 { "fixup_Mips_SHIFT6", 6, 5, 0 },
139 { "fixup_Mips_64", 0, 64, 0 },
140 { "fixup_Mips_TLSGD", 0, 16, 0 },
141 { "fixup_Mips_GOTTPREL", 0, 16, 0 },
142 { "fixup_Mips_TPREL_HI", 0, 16, 0 },
143 { "fixup_Mips_TPREL_LO", 0, 16, 0 },
144 { "fixup_Mips_Branch_PCRel", 0, 16, MCFixupKindInfo::FKF_IsPCRel }
145 };
146
147 if (Kind < FirstTargetFixupKind)
148 return MCAsmBackend::getFixupKindInfo(Kind);
149
150 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
151 "Invalid kind!");
152 return Infos[Kind - FirstTargetFixupKind];
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000153 }
154
155 /// @name Target Relaxation Interfaces
156 /// @{
157
158 /// MayNeedRelaxation - Check whether the given instruction may need
159 /// relaxation.
160 ///
161 /// \param Inst - The instruction to test.
162 bool MayNeedRelaxation(const MCInst &Inst) const {
163 return false;
164 }
165
Jim Grosbach370b78d2011-12-06 00:47:03 +0000166 /// fixupNeedsRelaxation - Target specific predicate for whether a given
167 /// fixup requires the associated instruction to be relaxed.
168 bool fixupNeedsRelaxation(const MCFixup &Fixup,
169 uint64_t Value,
170 const MCInstFragment *DF,
171 const MCAsmLayout &Layout) const {
172 // FIXME.
173 assert(0 && "RelaxInstruction() unimplemented");
NAKAMURA Takumi6482e912011-12-06 01:48:32 +0000174 return false;
Jim Grosbach370b78d2011-12-06 00:47:03 +0000175 }
176
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000177 /// RelaxInstruction - Relax the instruction in the given fragment
178 /// to the next wider instruction.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000179 ///
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000180 /// \param Inst - The instruction to relax, which may be the same
181 /// as the output.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000182 /// \parm Res [output] - On return, the relaxed instruction.
183 void RelaxInstruction(const MCInst &Inst, MCInst &Res) const {
184 }
185
186 /// @}
187
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000188 /// WriteNopData - Write an (optimal) nop sequence of Count bytes
189 /// to the given output. If the target cannot generate such a sequence,
190 /// it should return an error.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000191 ///
192 /// \return - True on success.
193 bool WriteNopData(uint64_t Count, MCObjectWriter *OW) const {
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000194 return true;
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000195 }
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000196};
197
198class MipsEB_AsmBackend : public MipsAsmBackend {
199public:
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000200 uint8_t OSABI;
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000201
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000202 MipsEB_AsmBackend(const Target &T, uint8_t _OSABI)
203 : MipsAsmBackend(T), OSABI(_OSABI) {}
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000204
205 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
206 return createELFObjectWriter(createELFObjectTargetWriter(),
207 OS, /*IsLittleEndian*/ false);
208 }
209
210 MCELFObjectTargetWriter *createELFObjectTargetWriter() const {
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000211 return new MipsELFObjectWriter(false, OSABI, ELF::EM_MIPS, false);
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000212 }
213};
214
215class MipsEL_AsmBackend : public MipsAsmBackend {
216public:
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000217 uint8_t OSABI;
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000218
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000219 MipsEL_AsmBackend(const Target &T, uint8_t _OSABI)
220 : MipsAsmBackend(T), OSABI(_OSABI) {}
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000221
222 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
223 return createELFObjectWriter(createELFObjectTargetWriter(),
224 OS, /*IsLittleEndian*/ true);
225 }
226
227 MCELFObjectTargetWriter *createELFObjectTargetWriter() const {
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000228 return new MipsELFObjectWriter(false, OSABI, ELF::EM_MIPS, false);
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000229 }
230};
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000231} // namespace
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000232
233MCAsmBackend *llvm::createMipsAsmBackend(const Target &T, StringRef TT) {
234 Triple TheTriple(TT);
235
236 // just return little endian for now
237 //
Rafael Espindoladc9a8a32011-12-21 17:00:36 +0000238 uint8_t OSABI = MCELFObjectTargetWriter::getOSABI(Triple(TT).getOS());
239 return new MipsEL_AsmBackend(T, OSABI);
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000240}