blob: 6e8dacefe0e01172d308efbf95d34321c2fa13cb [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"
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000017#include "llvm/MC/MCAsmBackend.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000018#include "llvm/MC/MCAssembler.h"
19#include "llvm/MC/MCDirectives.h"
20#include "llvm/MC/MCELFObjectWriter.h"
Craig Topperf1d0f772012-03-26 06:58:25 +000021#include "llvm/MC/MCFixupKindInfo.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000022#include "llvm/MC/MCObjectWriter.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000023#include "llvm/MC/MCSubtargetInfo.h"
Akira Hatanaka82ea7312011-09-30 21:04:02 +000024#include "llvm/Support/ErrorHandling.h"
25#include "llvm/Support/raw_ostream.h"
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000026
Akira Hatanaka82ea7312011-09-30 21:04:02 +000027using namespace llvm;
28
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000029// Prepare value for the target space for it
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000030static unsigned adjustFixupValue(unsigned Kind, uint64_t Value) {
31
32 // Add/subtract and shift
33 switch (Kind) {
34 default:
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000035 return 0;
36 case FK_GPRel_4:
37 case FK_Data_4:
38 case Mips::fixup_Mips_LO16:
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000039 break;
40 case Mips::fixup_Mips_PC16:
41 // So far we are only using this type for branches.
42 // For branches we start 1 instruction after the branch
43 // so the displacement will be one instruction size less.
44 Value -= 4;
45 // The displacement is then divided by 4 to give us an 18 bit
46 // address range.
47 Value >>= 2;
48 break;
49 case Mips::fixup_Mips_26:
50 // So far we are only using this type for jumps.
51 // The displacement is then divided by 4 to give us an 28 bit
52 // address range.
53 Value >>= 2;
54 break;
Akira Hatanaka84bfc2f2011-11-23 22:18:04 +000055 case Mips::fixup_Mips_HI16:
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000056 case Mips::fixup_Mips_GOT_Local:
57 // Get the higher 16-bits. Also add 1 if bit 15 is 1.
Akira Hatanakabca9c252012-03-27 01:50:08 +000058 Value = ((Value + 0x8000) >> 16) & 0xffff;
Akira Hatanaka84bfc2f2011-11-23 22:18:04 +000059 break;
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000060 }
61
62 return Value;
63}
64
Akira Hatanaka82ea7312011-09-30 21:04:02 +000065namespace {
Akira Hatanaka82ea7312011-09-30 21:04:02 +000066class MipsAsmBackend : public MCAsmBackend {
Akira Hatanakae9e520f2012-03-01 01:53:15 +000067 Triple::OSType OSType;
68 bool IsLittle; // Big or little endian
69
Akira Hatanaka82ea7312011-09-30 21:04:02 +000070public:
Akira Hatanakae9e520f2012-03-01 01:53:15 +000071 MipsAsmBackend(const Target &T, Triple::OSType _OSType, bool _isLittle) :
72 MCAsmBackend(), OSType(_OSType), IsLittle(_isLittle) {}
73
74 MCObjectWriter *createObjectWriter(raw_ostream &OS) const {
75 return createMipsELFObjectWriter(OS, OSType, IsLittle);
76 }
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +000077
78 /// ApplyFixup - Apply the \arg Value for given \arg Fixup into the provided
79 /// data fragment, at the offset specified by the fixup and following the
80 /// fixup kind as appropriate.
Jim Grosbachec343382012-01-18 18:52:16 +000081 void applyFixup(const MCFixup &Fixup, char *Data, unsigned DataSize,
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +000082 uint64_t Value) const {
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000083 MCFixupKind Kind = Fixup.getKind();
84 Value = adjustFixupValue((unsigned)Kind, Value);
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000085
86 if (!Value)
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +000087 return; // Doesn't change encoding.
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000088
Akira Hatanakafb54afb2012-03-21 00:52:01 +000089 // Where do we start in the object
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +000090 unsigned Offset = Fixup.getOffset();
Akira Hatanakafb54afb2012-03-21 00:52:01 +000091 // Number of bytes we need to fixup
92 unsigned NumBytes = (getFixupKindInfo(Kind).TargetSize + 7) / 8;
93 // Used to point to big endian bytes
94 unsigned FullSize;
95
Craig Topper9be7c942012-03-21 02:28:53 +000096 switch ((unsigned)Kind) {
Akira Hatanakafb54afb2012-03-21 00:52:01 +000097 case Mips::fixup_Mips_16:
98 FullSize = 2;
99 break;
100 case Mips::fixup_Mips_64:
101 FullSize = 8;
102 break;
103 default:
104 FullSize = 4;
105 break;
106 }
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000107
108 // Grab current value, if any, from bits.
109 uint64_t CurVal = 0;
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000110
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000111 for (unsigned i = 0; i != NumBytes; ++i) {
112 unsigned Idx = IsLittle ? i : (FullSize - 1 - i);
113 CurVal |= (uint64_t)((uint8_t)Data[Offset + Idx]) << (i*8);
114 }
115
116 uint64_t Mask = ((uint64_t)(-1) >> (64 - getFixupKindInfo(Kind).TargetSize));
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000117 CurVal = (CurVal & ~Mask) | ((CurVal + Value) & Mask);
118
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000119 // Write out the fixed up bytes back to the code/data bits.
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000120 for (unsigned i = 0; i != NumBytes; ++i) {
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000121 unsigned Idx = IsLittle ? i : (FullSize - 1 - i);
122 Data[Offset + Idx] = (uint8_t)((CurVal >> (i*8)) & 0xff);
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000123 }
Akira Hatanakafb54afb2012-03-21 00:52:01 +0000124 }
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000125
126 unsigned getNumFixupKinds() const { return Mips::NumTargetFixupKinds; }
127
128 const MCFixupKindInfo &getFixupKindInfo(MCFixupKind Kind) const {
129 const static MCFixupKindInfo Infos[Mips::NumTargetFixupKinds] = {
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000130 // This table *must* be in same the order of fixup_* kinds in
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000131 // MipsFixupKinds.h.
132 //
133 // name offset bits flags
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000134 { "fixup_Mips_16", 0, 16, 0 },
135 { "fixup_Mips_32", 0, 32, 0 },
136 { "fixup_Mips_REL32", 0, 32, 0 },
137 { "fixup_Mips_26", 0, 26, 0 },
138 { "fixup_Mips_HI16", 0, 16, 0 },
139 { "fixup_Mips_LO16", 0, 16, 0 },
140 { "fixup_Mips_GPREL16", 0, 16, 0 },
141 { "fixup_Mips_LITERAL", 0, 16, 0 },
Bruno Cardoso Lopese3d35722011-12-07 00:28:57 +0000142 { "fixup_Mips_GOT_Global", 0, 16, 0 },
143 { "fixup_Mips_GOT_Local", 0, 16, 0 },
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000144 { "fixup_Mips_PC16", 0, 16, MCFixupKindInfo::FKF_IsPCRel },
145 { "fixup_Mips_CALL16", 0, 16, 0 },
146 { "fixup_Mips_GPREL32", 0, 32, 0 },
147 { "fixup_Mips_SHIFT5", 6, 5, 0 },
148 { "fixup_Mips_SHIFT6", 6, 5, 0 },
149 { "fixup_Mips_64", 0, 64, 0 },
150 { "fixup_Mips_TLSGD", 0, 16, 0 },
151 { "fixup_Mips_GOTTPREL", 0, 16, 0 },
152 { "fixup_Mips_TPREL_HI", 0, 16, 0 },
153 { "fixup_Mips_TPREL_LO", 0, 16, 0 },
Akira Hatanakabc249852011-12-22 01:05:17 +0000154 { "fixup_Mips_TLSLDM", 0, 16, 0 },
155 { "fixup_Mips_DTPREL_HI", 0, 16, 0 },
156 { "fixup_Mips_DTPREL_LO", 0, 16, 0 },
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000157 { "fixup_Mips_Branch_PCRel", 0, 16, MCFixupKindInfo::FKF_IsPCRel }
158 };
159
160 if (Kind < FirstTargetFixupKind)
161 return MCAsmBackend::getFixupKindInfo(Kind);
162
163 assert(unsigned(Kind - FirstTargetFixupKind) < getNumFixupKinds() &&
164 "Invalid kind!");
165 return Infos[Kind - FirstTargetFixupKind];
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000166 }
167
168 /// @name Target Relaxation Interfaces
169 /// @{
170
171 /// MayNeedRelaxation - Check whether the given instruction may need
172 /// relaxation.
173 ///
174 /// \param Inst - The instruction to test.
Jim Grosbachec343382012-01-18 18:52:16 +0000175 bool mayNeedRelaxation(const MCInst &Inst) const {
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000176 return false;
177 }
178
Jim Grosbach370b78d2011-12-06 00:47:03 +0000179 /// fixupNeedsRelaxation - Target specific predicate for whether a given
180 /// fixup requires the associated instruction to be relaxed.
181 bool fixupNeedsRelaxation(const MCFixup &Fixup,
182 uint64_t Value,
183 const MCInstFragment *DF,
184 const MCAsmLayout &Layout) const {
185 // FIXME.
186 assert(0 && "RelaxInstruction() unimplemented");
NAKAMURA Takumi6482e912011-12-06 01:48:32 +0000187 return false;
Jim Grosbach370b78d2011-12-06 00:47:03 +0000188 }
189
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000190 /// RelaxInstruction - Relax the instruction in the given fragment
191 /// to the next wider instruction.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000192 ///
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000193 /// \param Inst - The instruction to relax, which may be the same
194 /// as the output.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000195 /// \parm Res [output] - On return, the relaxed instruction.
Jim Grosbachec343382012-01-18 18:52:16 +0000196 void relaxInstruction(const MCInst &Inst, MCInst &Res) const {
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000197 }
Jia Liubb481f82012-02-28 07:46:26 +0000198
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000199 /// @}
200
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000201 /// WriteNopData - Write an (optimal) nop sequence of Count bytes
202 /// to the given output. If the target cannot generate such a sequence,
203 /// it should return an error.
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000204 ///
205 /// \return - True on success.
Jim Grosbachec343382012-01-18 18:52:16 +0000206 bool writeNopData(uint64_t Count, MCObjectWriter *OW) const {
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000207 return true;
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000208 }
Akira Hatanaka82ea7312011-09-30 21:04:02 +0000209};
210
Bruno Cardoso Lopes47b92f32011-11-11 22:58:42 +0000211} // namespace
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000212
Akira Hatanakae9e520f2012-03-01 01:53:15 +0000213// MCAsmBackend
214MCAsmBackend *llvm::createMipsAsmBackendEL(const Target &T, StringRef TT) {
215 return new MipsAsmBackend(T, Triple(TT).getOS(),
216 /*IsLittle*/true);
Rafael Espindola29a17142012-01-11 04:04:14 +0000217}
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000218
Akira Hatanakae9e520f2012-03-01 01:53:15 +0000219MCAsmBackend *llvm::createMipsAsmBackendEB(const Target &T, StringRef TT) {
220 return new MipsAsmBackend(T, Triple(TT).getOS(),
221 /*IsLittle*/false);
Akira Hatanaka4b6ee7a2011-09-30 21:23:45 +0000222}