blob: f31743a2eae3028272cb51b1511ffbfcdcd8de6c [file] [log] [blame]
Jack Carter86ac5c12013-11-18 23:55:27 +00001//===-- MipsTargetStreamer.cpp - Mips Target Streamer Methods -------------===//
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 provides Mips specific target streamer methods.
11//
12//===----------------------------------------------------------------------===//
13
Rafael Espindola054234f2014-01-27 03:53:56 +000014#include "InstPrinter/MipsInstPrinter.h"
Chandler Carruth442f7842014-03-04 10:07:28 +000015#include "MipsMCTargetDesc.h"
Rafael Espindola972e71a2014-01-31 23:10:26 +000016#include "MipsTargetObjectFile.h"
Jack Carter86ac5c12013-11-18 23:55:27 +000017#include "MipsTargetStreamer.h"
Rafael Espindola972e71a2014-01-31 23:10:26 +000018#include "llvm/MC/MCContext.h"
Jack Carter86ac5c12013-11-18 23:55:27 +000019#include "llvm/MC/MCELF.h"
Rafael Espindola972e71a2014-01-31 23:10:26 +000020#include "llvm/MC/MCSectionELF.h"
Rafael Espindolacb1953f2014-01-26 06:57:13 +000021#include "llvm/MC/MCSubtargetInfo.h"
Chandler Carruth442f7842014-03-04 10:07:28 +000022#include "llvm/MC/MCSymbol.h"
Jack Carter86ac5c12013-11-18 23:55:27 +000023#include "llvm/Support/CommandLine.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000024#include "llvm/Support/ELF.h"
Jack Carter86ac5c12013-11-18 23:55:27 +000025#include "llvm/Support/ErrorHandling.h"
26#include "llvm/Support/FormattedStream.h"
27
28using namespace llvm;
29
Jack Carter0cd3c192014-01-06 23:27:31 +000030// Pin vtable to this file.
Jack Carter86ac5c12013-11-18 23:55:27 +000031void MipsTargetStreamer::anchor() {}
32
Rafael Espindola24ea09e2014-01-26 06:06:37 +000033MipsTargetStreamer::MipsTargetStreamer(MCStreamer &S) : MCTargetStreamer(S) {}
34
35MipsTargetAsmStreamer::MipsTargetAsmStreamer(MCStreamer &S,
36 formatted_raw_ostream &OS)
37 : MipsTargetStreamer(S), OS(OS) {}
Jack Carter6ef6cc52013-11-19 20:53:28 +000038
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +000039void MipsTargetAsmStreamer::emitDirectiveSetMicroMips() {
40 OS << "\t.set\tmicromips\n";
Jack Carter6ef6cc52013-11-19 20:53:28 +000041}
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +000042
43void MipsTargetAsmStreamer::emitDirectiveSetNoMicroMips() {
44 OS << "\t.set\tnomicromips\n";
45}
46
Rafael Espindola6633d572014-01-14 18:57:12 +000047void MipsTargetAsmStreamer::emitDirectiveSetMips16() {
48 OS << "\t.set\tmips16\n";
49}
50
51void MipsTargetAsmStreamer::emitDirectiveSetNoMips16() {
52 OS << "\t.set\tnomips16\n";
53}
54
Rafael Espindolaeb0a8af2014-01-26 05:06:48 +000055void MipsTargetAsmStreamer::emitDirectiveSetReorder() {
56 OS << "\t.set\treorder\n";
57}
58
59void MipsTargetAsmStreamer::emitDirectiveSetNoReorder() {
60 OS << "\t.set\tnoreorder\n";
61}
62
63void MipsTargetAsmStreamer::emitDirectiveSetMacro() {
64 OS << "\t.set\tmacro\n";
65}
66
67void MipsTargetAsmStreamer::emitDirectiveSetNoMacro() {
68 OS << "\t.set\tnomacro\n";
69}
70
71void MipsTargetAsmStreamer::emitDirectiveSetAt() {
72 OS << "\t.set\tat\n";
73}
74
75void MipsTargetAsmStreamer::emitDirectiveSetNoAt() {
76 OS << "\t.set\tnoat\n";
77}
78
79void MipsTargetAsmStreamer::emitDirectiveEnd(StringRef Name) {
80 OS << "\t.end\t" << Name << '\n';
81}
82
Rafael Espindola6633d572014-01-14 18:57:12 +000083void MipsTargetAsmStreamer::emitDirectiveEnt(const MCSymbol &Symbol) {
84 OS << "\t.ent\t" << Symbol.getName() << '\n';
85}
86
Jack Carter0cd3c192014-01-06 23:27:31 +000087void MipsTargetAsmStreamer::emitDirectiveAbiCalls() { OS << "\t.abicalls\n"; }
88void MipsTargetAsmStreamer::emitDirectiveOptionPic0() {
89 OS << "\t.option\tpic0\n";
90}
91
Rafael Espindola054234f2014-01-27 03:53:56 +000092void MipsTargetAsmStreamer::emitFrame(unsigned StackReg, unsigned StackSize,
93 unsigned ReturnReg) {
94 OS << "\t.frame\t$"
95 << StringRef(MipsInstPrinter::getRegisterName(StackReg)).lower() << ","
96 << StackSize << ",$"
Rafael Espindola25fa2912014-01-27 04:33:11 +000097 << StringRef(MipsInstPrinter::getRegisterName(ReturnReg)).lower() << '\n';
98}
99
Vladimir Medic615b26e2014-03-04 09:54:09 +0000100void MipsTargetAsmStreamer::emitDirectiveSetMips32R2() {
101 OS << "\t.set\tmips32r2\n";
102}
103
Vladimir Medic27c398e2014-03-05 11:05:09 +0000104void MipsTargetAsmStreamer::emitDirectiveSetDsp() {
105 OS << "\t.set\tdsp\n";
106}
Rafael Espindola25fa2912014-01-27 04:33:11 +0000107// Print a 32 bit hex number with all numbers.
108static void printHex32(unsigned Value, raw_ostream &OS) {
109 OS << "0x";
110 for (int i = 7; i >= 0; i--)
111 OS.write_hex((Value & (0xF << (i*4))) >> (i*4));
112}
113
114void MipsTargetAsmStreamer::emitMask(unsigned CPUBitmask,
115 int CPUTopSavedRegOff) {
116 OS << "\t.mask \t";
117 printHex32(CPUBitmask, OS);
118 OS << ',' << CPUTopSavedRegOff << '\n';
119}
120
121void MipsTargetAsmStreamer::emitFMask(unsigned FPUBitmask,
122 int FPUTopSavedRegOff) {
123 OS << "\t.fmask\t";
124 printHex32(FPUBitmask, OS);
125 OS << "," << FPUTopSavedRegOff << '\n';
Rafael Espindola054234f2014-01-27 03:53:56 +0000126}
127
Jack Carter0cd3c192014-01-06 23:27:31 +0000128// This part is for ELF object output.
Rafael Espindolacb1953f2014-01-26 06:57:13 +0000129MipsTargetELFStreamer::MipsTargetELFStreamer(MCStreamer &S,
130 const MCSubtargetInfo &STI)
Rafael Espindola972e71a2014-01-31 23:10:26 +0000131 : MipsTargetStreamer(S), MicroMipsEnabled(false), STI(STI) {
Rafael Espindolacb1953f2014-01-26 06:57:13 +0000132 MCAssembler &MCA = getStreamer().getAssembler();
133 uint64_t Features = STI.getFeatureBits();
134 Triple T(STI.getTargetTriple());
135
136 // Update e_header flags
137 unsigned EFlags = 0;
138
139 // Architecture
140 if (Features & Mips::FeatureMips64r2)
141 EFlags |= ELF::EF_MIPS_ARCH_64R2;
142 else if (Features & Mips::FeatureMips64)
143 EFlags |= ELF::EF_MIPS_ARCH_64;
144 else if (Features & Mips::FeatureMips32r2)
145 EFlags |= ELF::EF_MIPS_ARCH_32R2;
146 else if (Features & Mips::FeatureMips32)
147 EFlags |= ELF::EF_MIPS_ARCH_32;
148
149 if (T.isArch64Bit()) {
Matheus Almeida2e03f242014-01-28 19:24:11 +0000150 if (Features & Mips::FeatureN32)
151 EFlags |= ELF::EF_MIPS_ABI2;
152 else if (Features & Mips::FeatureO32) {
153 EFlags |= ELF::EF_MIPS_ABI_O32;
154 EFlags |= ELF::EF_MIPS_32BITMODE; /* Compatibility Mode */
155 }
156 // No need to set any bit for N64 which is the default ABI at the moment
157 // for 64-bit Mips architectures.
Rafael Espindolacb1953f2014-01-26 06:57:13 +0000158 } else {
159 if (Features & Mips::FeatureMips64r2 || Features & Mips::FeatureMips64)
160 EFlags |= ELF::EF_MIPS_32BITMODE;
161
162 // ABI
163 EFlags |= ELF::EF_MIPS_ABI_O32;
164 }
165
166 MCA.setELFHeaderEFlags(EFlags);
167}
Jack Carter86ac5c12013-11-18 23:55:27 +0000168
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +0000169void MipsTargetELFStreamer::emitLabel(MCSymbol *Symbol) {
Rafael Espindola26e917c2014-01-15 03:07:12 +0000170 if (!isMicroMipsEnabled())
171 return;
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +0000172 MCSymbolData &Data = getStreamer().getOrCreateSymbolData(Symbol);
Rafael Espindola26e917c2014-01-15 03:07:12 +0000173 uint8_t Type = MCELF::GetType(Data);
174 if (Type != ELF::STT_FUNC)
175 return;
176
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +0000177 // The "other" values are stored in the last 6 bits of the second byte
178 // The traditional defines for STO values assume the full byte and thus
179 // the shift to pack it.
Rafael Espindola26e917c2014-01-15 03:07:12 +0000180 MCELF::setOther(Data, ELF::STO_MIPS_MICROMIPS >> 2);
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +0000181}
182
Rafael Espindola972e71a2014-01-31 23:10:26 +0000183void MipsTargetELFStreamer::finish() {
184 MCAssembler &MCA = getStreamer().getAssembler();
185 MCContext &Context = MCA.getContext();
186 MCStreamer &OS = getStreamer();
187 Triple T(STI.getTargetTriple());
188 uint64_t Features = STI.getFeatureBits();
189
190 if (T.isArch64Bit() && (Features & Mips::FeatureN64)) {
191 const MCSectionELF *Sec = Context.getELFSection(
192 ".MIPS.options", ELF::SHT_MIPS_OPTIONS,
193 ELF::SHF_ALLOC | ELF::SHF_MIPS_NOSTRIP, SectionKind::getMetadata());
194 OS.SwitchSection(Sec);
195
196 OS.EmitIntValue(1, 1); // kind
197 OS.EmitIntValue(40, 1); // size
198 OS.EmitIntValue(0, 2); // section
199 OS.EmitIntValue(0, 4); // info
200 OS.EmitIntValue(0, 4); // ri_gprmask
201 OS.EmitIntValue(0, 4); // pad
202 OS.EmitIntValue(0, 4); // ri_cpr[0]mask
203 OS.EmitIntValue(0, 4); // ri_cpr[1]mask
204 OS.EmitIntValue(0, 4); // ri_cpr[2]mask
205 OS.EmitIntValue(0, 4); // ri_cpr[3]mask
206 OS.EmitIntValue(0, 8); // ri_gp_value
207 } else {
208 const MCSectionELF *Sec =
209 Context.getELFSection(".reginfo", ELF::SHT_MIPS_REGINFO, ELF::SHF_ALLOC,
210 SectionKind::getMetadata());
211 OS.SwitchSection(Sec);
212
213 OS.EmitIntValue(0, 4); // ri_gprmask
214 OS.EmitIntValue(0, 4); // ri_cpr[0]mask
215 OS.EmitIntValue(0, 4); // ri_cpr[1]mask
216 OS.EmitIntValue(0, 4); // ri_cpr[2]mask
217 OS.EmitIntValue(0, 4); // ri_cpr[3]mask
218 OS.EmitIntValue(0, 4); // ri_gp_value
219 }
220}
221
Zoran Jovanovic28221d82014-03-20 09:44:49 +0000222void MipsTargetELFStreamer::emitAssignment(MCSymbol *Symbol,
223 const MCExpr *Value) {
224 // If on rhs is micromips symbol then mark Symbol as microMips.
225 if (Value->getKind() != MCExpr::SymbolRef)
226 return;
227 const MCSymbol &RhsSym =
228 static_cast<const MCSymbolRefExpr *>(Value)->getSymbol();
229 MCSymbolData &Data = getStreamer().getOrCreateSymbolData(&RhsSym);
230 uint8_t Type = MCELF::GetType(Data);
231 if ((Type != ELF::STT_FUNC)
232 || !(MCELF::getOther(Data) & (ELF::STO_MIPS_MICROMIPS >> 2)))
233 return;
234
235 MCSymbolData &SymbolData = getStreamer().getOrCreateSymbolData(Symbol);
236 // The "other" values are stored in the last 6 bits of the second byte.
237 // The traditional defines for STO values assume the full byte and thus
238 // the shift to pack it.
239 MCELF::setOther(SymbolData, ELF::STO_MIPS_MICROMIPS >> 2);
240}
241
Jack Carter86ac5c12013-11-18 23:55:27 +0000242MCELFStreamer &MipsTargetELFStreamer::getStreamer() {
Rafael Espindola24ea09e2014-01-26 06:06:37 +0000243 return static_cast<MCELFStreamer &>(Streamer);
Jack Carter86ac5c12013-11-18 23:55:27 +0000244}
245
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +0000246void MipsTargetELFStreamer::emitDirectiveSetMicroMips() {
247 MicroMipsEnabled = true;
Rafael Espindolacb1953f2014-01-26 06:57:13 +0000248
249 MCAssembler &MCA = getStreamer().getAssembler();
250 unsigned Flags = MCA.getELFHeaderEFlags();
251 Flags |= ELF::EF_MIPS_MICROMIPS;
252 MCA.setELFHeaderEFlags(Flags);
Jack Carter86ac5c12013-11-18 23:55:27 +0000253}
Rafael Espindola6d5f7ce2014-01-14 04:25:13 +0000254
255void MipsTargetELFStreamer::emitDirectiveSetNoMicroMips() {
256 MicroMipsEnabled = false;
257}
258
Rafael Espindola6633d572014-01-14 18:57:12 +0000259void MipsTargetELFStreamer::emitDirectiveSetMips16() {
Rafael Espindolae7583752014-01-24 16:13:20 +0000260 MCAssembler &MCA = getStreamer().getAssembler();
261 unsigned Flags = MCA.getELFHeaderEFlags();
262 Flags |= ELF::EF_MIPS_ARCH_ASE_M16;
263 MCA.setELFHeaderEFlags(Flags);
Rafael Espindola6633d572014-01-14 18:57:12 +0000264}
265
266void MipsTargetELFStreamer::emitDirectiveSetNoMips16() {
267 // FIXME: implement.
268}
269
Rafael Espindolaeb0a8af2014-01-26 05:06:48 +0000270void MipsTargetELFStreamer::emitDirectiveSetReorder() {
271 // FIXME: implement.
272}
273
274void MipsTargetELFStreamer::emitDirectiveSetNoReorder() {
Rafael Espindolacb1953f2014-01-26 06:57:13 +0000275 MCAssembler &MCA = getStreamer().getAssembler();
276 unsigned Flags = MCA.getELFHeaderEFlags();
277 Flags |= ELF::EF_MIPS_NOREORDER;
278 MCA.setELFHeaderEFlags(Flags);
Rafael Espindolaeb0a8af2014-01-26 05:06:48 +0000279}
280
281void MipsTargetELFStreamer::emitDirectiveSetMacro() {
282 // FIXME: implement.
283}
284
285void MipsTargetELFStreamer::emitDirectiveSetNoMacro() {
286 // FIXME: implement.
287}
288
289void MipsTargetELFStreamer::emitDirectiveSetAt() {
290 // FIXME: implement.
291}
292
293void MipsTargetELFStreamer::emitDirectiveSetNoAt() {
294 // FIXME: implement.
295}
296
297void MipsTargetELFStreamer::emitDirectiveEnd(StringRef Name) {
298 // FIXME: implement.
299}
300
Rafael Espindola6633d572014-01-14 18:57:12 +0000301void MipsTargetELFStreamer::emitDirectiveEnt(const MCSymbol &Symbol) {
302 // FIXME: implement.
303}
304
Jack Carter0cd3c192014-01-06 23:27:31 +0000305void MipsTargetELFStreamer::emitDirectiveAbiCalls() {
306 MCAssembler &MCA = getStreamer().getAssembler();
307 unsigned Flags = MCA.getELFHeaderEFlags();
Rafael Espindolacb1953f2014-01-26 06:57:13 +0000308 Flags |= ELF::EF_MIPS_CPIC | ELF::EF_MIPS_PIC;
Jack Carter0cd3c192014-01-06 23:27:31 +0000309 MCA.setELFHeaderEFlags(Flags);
310}
311void MipsTargetELFStreamer::emitDirectiveOptionPic0() {
312 MCAssembler &MCA = getStreamer().getAssembler();
313 unsigned Flags = MCA.getELFHeaderEFlags();
314 Flags &= ~ELF::EF_MIPS_PIC;
315 MCA.setELFHeaderEFlags(Flags);
316}
Rafael Espindola054234f2014-01-27 03:53:56 +0000317
318void MipsTargetELFStreamer::emitFrame(unsigned StackReg, unsigned StackSize,
319 unsigned ReturnReg) {
320 // FIXME: implement.
321}
Rafael Espindola25fa2912014-01-27 04:33:11 +0000322
323void MipsTargetELFStreamer::emitMask(unsigned CPUBitmask,
324 int CPUTopSavedRegOff) {
325 // FIXME: implement.
326}
327
328void MipsTargetELFStreamer::emitFMask(unsigned FPUBitmask,
329 int FPUTopSavedRegOff) {
330 // FIXME: implement.
331}
Vladimir Medic615b26e2014-03-04 09:54:09 +0000332
333void MipsTargetELFStreamer::emitDirectiveSetMips32R2() {
334 // No action required for ELF output.
335}
Vladimir Medic27c398e2014-03-05 11:05:09 +0000336
337void MipsTargetELFStreamer::emitDirectiveSetDsp() {
338 // No action required for ELF output.
339}