blob: 9709f30eef3e7dcd86ac471da909774b69b2b6e3 [file] [log] [blame]
Tim Northover5cc3dc82012-12-07 16:50:23 +00001//===- lib/MC/ARMELFStreamer.cpp - ELF Object Output for ARM --------------===//
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 assembles .s files and emits ARM ELF .o object files. Different
11// from generic ELF streamer in emitting mapping symbols ($a, $t and $d) to
12// delimit regions of data and code.
13//
14//===----------------------------------------------------------------------===//
15
Logan Chiend8bb4b72013-04-16 12:02:21 +000016#include "ARMRegisterInfo.h"
Logan Chiend8bb4b72013-04-16 12:02:21 +000017#include "ARMUnwindOpAsm.h"
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +000018#include "llvm/ADT/StringExtras.h"
Benjamin Kramerf242d8c2012-12-08 10:45:24 +000019#include "llvm/ADT/Twine.h"
20#include "llvm/MC/MCAsmBackend.h"
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +000021#include "llvm/MC/MCAsmInfo.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000022#include "llvm/MC/MCAssembler.h"
23#include "llvm/MC/MCCodeEmitter.h"
24#include "llvm/MC/MCContext.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000025#include "llvm/MC/MCELF.h"
26#include "llvm/MC/MCELFStreamer.h"
27#include "llvm/MC/MCELFSymbolFlags.h"
28#include "llvm/MC/MCExpr.h"
29#include "llvm/MC/MCInst.h"
Rafael Espindolaa17151a2013-10-08 13:08:17 +000030#include "llvm/MC/MCInstPrinter.h"
Rafael Espindola4c6f6132014-04-27 17:10:46 +000031#include "llvm/MC/MCObjectFileInfo.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000032#include "llvm/MC/MCObjectStreamer.h"
Logan Chiend8bb4b72013-04-16 12:02:21 +000033#include "llvm/MC/MCRegisterInfo.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000034#include "llvm/MC/MCSection.h"
Benjamin Kramerf242d8c2012-12-08 10:45:24 +000035#include "llvm/MC/MCSectionELF.h"
36#include "llvm/MC/MCStreamer.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000037#include "llvm/MC/MCSymbol.h"
38#include "llvm/MC/MCValue.h"
Saleem Abdulrasool278a9f42014-01-19 08:25:27 +000039#include "llvm/Support/ARMBuildAttributes.h"
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +000040#include "llvm/Support/ARMEHABI.h"
Renato Golinf5f373f2015-05-08 21:04:27 +000041#include "llvm/Support/TargetParser.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000042#include "llvm/Support/Debug.h"
43#include "llvm/Support/ELF.h"
Rafael Espindolaa17151a2013-10-08 13:08:17 +000044#include "llvm/Support/FormattedStream.h"
Logan Chien5b776b72014-02-22 14:00:39 +000045#include "llvm/Support/LEB128.h"
Tim Northover5cc3dc82012-12-07 16:50:23 +000046#include "llvm/Support/raw_ostream.h"
Logan Chien8cbb80d2013-10-28 17:51:12 +000047#include <algorithm>
Tim Northover5cc3dc82012-12-07 16:50:23 +000048
49using namespace llvm;
50
Logan Chiend8bb4b72013-04-16 12:02:21 +000051static std::string GetAEABIUnwindPersonalityName(unsigned Index) {
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +000052 assert(Index < ARM::EHABI::NUM_PERSONALITY_INDEX &&
53 "Invalid personality index");
Logan Chiend8bb4b72013-04-16 12:02:21 +000054 return (Twine("__aeabi_unwind_cpp_pr") + Twine(Index)).str();
55}
56
Tim Northover5cc3dc82012-12-07 16:50:23 +000057namespace {
58
Rafael Espindolaa17151a2013-10-08 13:08:17 +000059class ARMELFStreamer;
60
61class ARMTargetAsmStreamer : public ARMTargetStreamer {
62 formatted_raw_ostream &OS;
63 MCInstPrinter &InstPrinter;
Saleem Abdulrasoolf16e68a2014-01-07 02:28:50 +000064 bool IsVerboseAsm;
Rafael Espindolaa17151a2013-10-08 13:08:17 +000065
Craig Topperca7e3e52014-03-10 03:19:03 +000066 void emitFnStart() override;
67 void emitFnEnd() override;
68 void emitCantUnwind() override;
69 void emitPersonality(const MCSymbol *Personality) override;
70 void emitPersonalityIndex(unsigned Index) override;
71 void emitHandlerData() override;
72 void emitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0) override;
73 void emitMovSP(unsigned Reg, int64_t Offset = 0) override;
74 void emitPad(int64_t Offset) override;
75 void emitRegSave(const SmallVectorImpl<unsigned> &RegList,
76 bool isVector) override;
77 void emitUnwindRaw(int64_t Offset,
78 const SmallVectorImpl<uint8_t> &Opcodes) override;
Rafael Espindolaa17151a2013-10-08 13:08:17 +000079
Craig Topperca7e3e52014-03-10 03:19:03 +000080 void switchVendor(StringRef Vendor) override;
81 void emitAttribute(unsigned Attribute, unsigned Value) override;
82 void emitTextAttribute(unsigned Attribute, StringRef String) override;
83 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
84 StringRef StrinValue) override;
85 void emitArch(unsigned Arch) override;
Sumanth Gundapanenia9049ea2015-02-26 18:07:35 +000086 void emitArchExtension(unsigned ArchExt) override;
Craig Topperca7e3e52014-03-10 03:19:03 +000087 void emitObjectArch(unsigned Arch) override;
88 void emitFPU(unsigned FPU) override;
89 void emitInst(uint32_t Inst, char Suffix = '\0') override;
90 void finishAttributeSection() override;
Logan Chien8cbb80d2013-10-28 17:51:12 +000091
Craig Topperca7e3e52014-03-10 03:19:03 +000092 void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) override;
Rafael Espindola466d6632014-04-27 20:23:58 +000093 void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) override;
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +000094
Rafael Espindolaa17151a2013-10-08 13:08:17 +000095public:
Rafael Espindola24ea09e2014-01-26 06:06:37 +000096 ARMTargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS,
97 MCInstPrinter &InstPrinter, bool VerboseAsm);
Rafael Espindolaa17151a2013-10-08 13:08:17 +000098};
99
Rafael Espindola24ea09e2014-01-26 06:06:37 +0000100ARMTargetAsmStreamer::ARMTargetAsmStreamer(MCStreamer &S,
101 formatted_raw_ostream &OS,
Saleem Abdulrasoolf16e68a2014-01-07 02:28:50 +0000102 MCInstPrinter &InstPrinter,
103 bool VerboseAsm)
Rafael Espindola24ea09e2014-01-26 06:06:37 +0000104 : ARMTargetStreamer(S), OS(OS), InstPrinter(InstPrinter),
105 IsVerboseAsm(VerboseAsm) {}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000106void ARMTargetAsmStreamer::emitFnStart() { OS << "\t.fnstart\n"; }
107void ARMTargetAsmStreamer::emitFnEnd() { OS << "\t.fnend\n"; }
108void ARMTargetAsmStreamer::emitCantUnwind() { OS << "\t.cantunwind\n"; }
109void ARMTargetAsmStreamer::emitPersonality(const MCSymbol *Personality) {
110 OS << "\t.personality " << Personality->getName() << '\n';
111}
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +0000112void ARMTargetAsmStreamer::emitPersonalityIndex(unsigned Index) {
113 OS << "\t.personalityindex " << Index << '\n';
114}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000115void ARMTargetAsmStreamer::emitHandlerData() { OS << "\t.handlerdata\n"; }
116void ARMTargetAsmStreamer::emitSetFP(unsigned FpReg, unsigned SpReg,
117 int64_t Offset) {
118 OS << "\t.setfp\t";
119 InstPrinter.printRegName(OS, FpReg);
120 OS << ", ";
121 InstPrinter.printRegName(OS, SpReg);
122 if (Offset)
123 OS << ", #" << Offset;
124 OS << '\n';
125}
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +0000126void ARMTargetAsmStreamer::emitMovSP(unsigned Reg, int64_t Offset) {
127 assert((Reg != ARM::SP && Reg != ARM::PC) &&
128 "the operand of .movsp cannot be either sp or pc");
129
130 OS << "\t.movsp\t";
131 InstPrinter.printRegName(OS, Reg);
132 if (Offset)
133 OS << ", #" << Offset;
134 OS << '\n';
135}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000136void ARMTargetAsmStreamer::emitPad(int64_t Offset) {
137 OS << "\t.pad\t#" << Offset << '\n';
138}
139void ARMTargetAsmStreamer::emitRegSave(const SmallVectorImpl<unsigned> &RegList,
140 bool isVector) {
141 assert(RegList.size() && "RegList should not be empty");
142 if (isVector)
143 OS << "\t.vsave\t{";
144 else
145 OS << "\t.save\t{";
146
147 InstPrinter.printRegName(OS, RegList[0]);
148
149 for (unsigned i = 1, e = RegList.size(); i != e; ++i) {
150 OS << ", ";
151 InstPrinter.printRegName(OS, RegList[i]);
152 }
153
154 OS << "}\n";
155}
Logan Chien8cbb80d2013-10-28 17:51:12 +0000156void ARMTargetAsmStreamer::switchVendor(StringRef Vendor) {
157}
158void ARMTargetAsmStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
Saleem Abdulrasoolf16e68a2014-01-07 02:28:50 +0000159 OS << "\t.eabi_attribute\t" << Attribute << ", " << Twine(Value);
160 if (IsVerboseAsm) {
161 StringRef Name = ARMBuildAttrs::AttrTypeAsString(Attribute);
162 if (!Name.empty())
163 OS << "\t@ " << Name;
164 }
165 OS << "\n";
Logan Chien8cbb80d2013-10-28 17:51:12 +0000166}
167void ARMTargetAsmStreamer::emitTextAttribute(unsigned Attribute,
168 StringRef String) {
169 switch (Attribute) {
Logan Chien8cbb80d2013-10-28 17:51:12 +0000170 case ARMBuildAttrs::CPU_name:
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000171 OS << "\t.cpu\t" << String.lower();
172 break;
173 default:
174 OS << "\t.eabi_attribute\t" << Attribute << ", \"" << String << "\"";
Saleem Abdulrasoolf16e68a2014-01-07 02:28:50 +0000175 if (IsVerboseAsm) {
176 StringRef Name = ARMBuildAttrs::AttrTypeAsString(Attribute);
177 if (!Name.empty())
178 OS << "\t@ " << Name;
179 }
Logan Chien8cbb80d2013-10-28 17:51:12 +0000180 break;
181 }
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000182 OS << "\n";
183}
184void ARMTargetAsmStreamer::emitIntTextAttribute(unsigned Attribute,
185 unsigned IntValue,
186 StringRef StringValue) {
187 switch (Attribute) {
188 default: llvm_unreachable("unsupported multi-value attribute in asm mode");
189 case ARMBuildAttrs::compatibility:
190 OS << "\t.eabi_attribute\t" << Attribute << ", " << IntValue;
191 if (!StringValue.empty())
192 OS << ", \"" << StringValue << "\"";
Saleem Abdulrasoolf16e68a2014-01-07 02:28:50 +0000193 if (IsVerboseAsm)
194 OS << "\t@ " << ARMBuildAttrs::AttrTypeAsString(Attribute);
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000195 break;
196 }
197 OS << "\n";
Logan Chien8cbb80d2013-10-28 17:51:12 +0000198}
Logan Chien439e8f92013-12-11 17:16:25 +0000199void ARMTargetAsmStreamer::emitArch(unsigned Arch) {
Renato Golinf5f373f2015-05-08 21:04:27 +0000200 OS << "\t.arch\t" << ARMTargetParser::getArchName(Arch) << "\n";
Logan Chien439e8f92013-12-11 17:16:25 +0000201}
Sumanth Gundapanenia9049ea2015-02-26 18:07:35 +0000202void ARMTargetAsmStreamer::emitArchExtension(unsigned ArchExt) {
Renato Golinf5f373f2015-05-08 21:04:27 +0000203 OS << "\t.arch_extension\t" << ARMTargetParser::getArchExtName(ArchExt) << "\n";
Sumanth Gundapanenia9049ea2015-02-26 18:07:35 +0000204}
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000205void ARMTargetAsmStreamer::emitObjectArch(unsigned Arch) {
Renato Golinf5f373f2015-05-08 21:04:27 +0000206 OS << "\t.object_arch\t" << ARMTargetParser::getArchName(Arch) << '\n';
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000207}
Logan Chien8cbb80d2013-10-28 17:51:12 +0000208void ARMTargetAsmStreamer::emitFPU(unsigned FPU) {
Renato Golinf5f373f2015-05-08 21:04:27 +0000209 OS << "\t.fpu\t" << ARMTargetParser::getFPUName(FPU) << "\n";
Logan Chien8cbb80d2013-10-28 17:51:12 +0000210}
211void ARMTargetAsmStreamer::finishAttributeSection() {
212}
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +0000213void
214ARMTargetAsmStreamer::AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *S) {
215 OS << "\t.tlsdescseq\t" << S->getSymbol().getName();
216}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000217
Rafael Espindola466d6632014-04-27 20:23:58 +0000218void ARMTargetAsmStreamer::emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) {
219 OS << "\t.thumb_set\t" << *Symbol << ", " << *Value << '\n';
220}
221
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +0000222void ARMTargetAsmStreamer::emitInst(uint32_t Inst, char Suffix) {
223 OS << "\t.inst";
224 if (Suffix)
225 OS << "." << Suffix;
226 OS << "\t0x" << utohexstr(Inst) << "\n";
227}
228
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +0000229void ARMTargetAsmStreamer::emitUnwindRaw(int64_t Offset,
230 const SmallVectorImpl<uint8_t> &Opcodes) {
231 OS << "\t.unwind_raw " << Offset;
232 for (SmallVectorImpl<uint8_t>::const_iterator OCI = Opcodes.begin(),
233 OCE = Opcodes.end();
234 OCI != OCE; ++OCI)
235 OS << ", 0x" << utohexstr(*OCI);
236 OS << '\n';
237}
238
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000239class ARMTargetELFStreamer : public ARMTargetStreamer {
Logan Chien8cbb80d2013-10-28 17:51:12 +0000240private:
241 // This structure holds all attributes, accounting for
242 // their string/numeric value, so we can later emmit them
243 // in declaration order, keeping all in the same vector
244 struct AttributeItem {
245 enum {
246 HiddenAttribute = 0,
247 NumericAttribute,
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000248 TextAttribute,
249 NumericAndTextAttributes
Logan Chien8cbb80d2013-10-28 17:51:12 +0000250 } Type;
251 unsigned Tag;
252 unsigned IntValue;
253 StringRef StringValue;
254
255 static bool LessTag(const AttributeItem &LHS, const AttributeItem &RHS) {
Charlie Turner8b2caa42015-01-05 13:12:17 +0000256 // The conformance tag must be emitted first when serialised
257 // into an object file. Specifically, the addenda to the ARM ABI
258 // states that (2.3.7.4):
259 //
260 // "To simplify recognition by consumers in the common case of
261 // claiming conformity for the whole file, this tag should be
262 // emitted first in a file-scope sub-subsection of the first
263 // public subsection of the attributes section."
264 //
265 // So it is special-cased in this comparison predicate when the
266 // attributes are sorted in finishAttributeSection().
267 return (RHS.Tag != ARMBuildAttrs::conformance) &&
268 ((LHS.Tag == ARMBuildAttrs::conformance) || (LHS.Tag < RHS.Tag));
Logan Chien8cbb80d2013-10-28 17:51:12 +0000269 }
270 };
271
272 StringRef CurrentVendor;
273 unsigned FPU;
Logan Chien439e8f92013-12-11 17:16:25 +0000274 unsigned Arch;
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000275 unsigned EmittedArch;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000276 SmallVector<AttributeItem, 64> Contents;
277
278 const MCSection *AttributeSection;
279
Logan Chien8cbb80d2013-10-28 17:51:12 +0000280 AttributeItem *getAttributeItem(unsigned Attribute) {
281 for (size_t i = 0; i < Contents.size(); ++i)
282 if (Contents[i].Tag == Attribute)
283 return &Contents[i];
Craig Topper062a2ba2014-04-25 05:30:21 +0000284 return nullptr;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000285 }
286
287 void setAttributeItem(unsigned Attribute, unsigned Value,
288 bool OverwriteExisting) {
289 // Look for existing attribute item
290 if (AttributeItem *Item = getAttributeItem(Attribute)) {
291 if (!OverwriteExisting)
292 return;
Saleem Abdulrasool93900052014-01-19 08:25:41 +0000293 Item->Type = AttributeItem::NumericAttribute;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000294 Item->IntValue = Value;
295 return;
296 }
297
298 // Create new attribute item
299 AttributeItem Item = {
300 AttributeItem::NumericAttribute,
301 Attribute,
302 Value,
303 StringRef("")
304 };
305 Contents.push_back(Item);
306 }
307
308 void setAttributeItem(unsigned Attribute, StringRef Value,
309 bool OverwriteExisting) {
310 // Look for existing attribute item
311 if (AttributeItem *Item = getAttributeItem(Attribute)) {
312 if (!OverwriteExisting)
313 return;
Saleem Abdulrasool93900052014-01-19 08:25:41 +0000314 Item->Type = AttributeItem::TextAttribute;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000315 Item->StringValue = Value;
316 return;
317 }
318
319 // Create new attribute item
320 AttributeItem Item = {
321 AttributeItem::TextAttribute,
322 Attribute,
323 0,
324 Value
325 };
326 Contents.push_back(Item);
327 }
328
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000329 void setAttributeItems(unsigned Attribute, unsigned IntValue,
330 StringRef StringValue, bool OverwriteExisting) {
331 // Look for existing attribute item
332 if (AttributeItem *Item = getAttributeItem(Attribute)) {
333 if (!OverwriteExisting)
334 return;
Saleem Abdulrasool93900052014-01-19 08:25:41 +0000335 Item->Type = AttributeItem::NumericAndTextAttributes;
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000336 Item->IntValue = IntValue;
337 Item->StringValue = StringValue;
338 return;
339 }
340
341 // Create new attribute item
342 AttributeItem Item = {
343 AttributeItem::NumericAndTextAttributes,
344 Attribute,
345 IntValue,
346 StringValue
347 };
348 Contents.push_back(Item);
349 }
350
Logan Chien439e8f92013-12-11 17:16:25 +0000351 void emitArchDefaultAttributes();
Logan Chien8cbb80d2013-10-28 17:51:12 +0000352 void emitFPUDefaultAttributes();
353
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000354 ARMELFStreamer &getStreamer();
Logan Chien8cbb80d2013-10-28 17:51:12 +0000355
Craig Topperca7e3e52014-03-10 03:19:03 +0000356 void emitFnStart() override;
357 void emitFnEnd() override;
358 void emitCantUnwind() override;
359 void emitPersonality(const MCSymbol *Personality) override;
360 void emitPersonalityIndex(unsigned Index) override;
361 void emitHandlerData() override;
362 void emitSetFP(unsigned FpReg, unsigned SpReg, int64_t Offset = 0) override;
363 void emitMovSP(unsigned Reg, int64_t Offset = 0) override;
364 void emitPad(int64_t Offset) override;
365 void emitRegSave(const SmallVectorImpl<unsigned> &RegList,
366 bool isVector) override;
367 void emitUnwindRaw(int64_t Offset,
368 const SmallVectorImpl<uint8_t> &Opcodes) override;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000369
Craig Topperca7e3e52014-03-10 03:19:03 +0000370 void switchVendor(StringRef Vendor) override;
371 void emitAttribute(unsigned Attribute, unsigned Value) override;
372 void emitTextAttribute(unsigned Attribute, StringRef String) override;
373 void emitIntTextAttribute(unsigned Attribute, unsigned IntValue,
374 StringRef StringValue) override;
375 void emitArch(unsigned Arch) override;
376 void emitObjectArch(unsigned Arch) override;
377 void emitFPU(unsigned FPU) override;
378 void emitInst(uint32_t Inst, char Suffix = '\0') override;
379 void finishAttributeSection() override;
Rafael Espindola4c6f6132014-04-27 17:10:46 +0000380 void emitLabel(MCSymbol *Symbol) override;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000381
Craig Topperca7e3e52014-03-10 03:19:03 +0000382 void AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *SRE) override;
Rafael Espindola466d6632014-04-27 20:23:58 +0000383 void emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) override;
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +0000384
Logan Chien8cbb80d2013-10-28 17:51:12 +0000385 size_t calculateContentSize() const;
386
387public:
Rafael Espindola24ea09e2014-01-26 06:06:37 +0000388 ARMTargetELFStreamer(MCStreamer &S)
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000389 : ARMTargetStreamer(S), CurrentVendor("aeabi"), FPU(ARM::INVALID_FPU),
390 Arch(ARM::INVALID_ARCH), EmittedArch(ARM::INVALID_ARCH),
Craig Topper062a2ba2014-04-25 05:30:21 +0000391 AttributeSection(nullptr) {}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000392};
393
Tim Northover5cc3dc82012-12-07 16:50:23 +0000394/// Extend the generic ELFStreamer class so that it can emit mapping symbols at
395/// the appropriate points in the object files. These symbols are defined in the
396/// ARM ELF ABI: infocenter.arm.com/help/topic/com.arm.../IHI0044D_aaelf.pdf.
397///
398/// In brief: $a, $t or $d should be emitted at the start of each contiguous
399/// region of ARM code, Thumb code or data in a section. In practice, this
400/// emission does not rely on explicit assembler directives but on inherent
401/// properties of the directives doing the emission (e.g. ".byte" is data, "add
402/// r0, r0, r0" an instruction).
403///
404/// As a result this system is orthogonal to the DataRegion infrastructure used
405/// by MachO. Beware!
406class ARMELFStreamer : public MCELFStreamer {
407public:
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000408 friend class ARMTargetELFStreamer;
409
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000410 ARMELFStreamer(MCContext &Context, MCAsmBackend &TAB, raw_pwrite_stream &OS,
Rafael Espindola24ea09e2014-01-26 06:06:37 +0000411 MCCodeEmitter *Emitter, bool IsThumb)
412 : MCELFStreamer(Context, TAB, OS, Emitter), IsThumb(IsThumb),
413 MappingSymbolCounter(0), LastEMS(EMS_None) {
Logan Chiend8bb4b72013-04-16 12:02:21 +0000414 Reset();
415 }
Tim Northover5cc3dc82012-12-07 16:50:23 +0000416
417 ~ARMELFStreamer() {}
418
Craig Topperca7e3e52014-03-10 03:19:03 +0000419 void FinishImpl() override;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000420
Logan Chien2bcc42c2013-01-30 15:39:04 +0000421 // ARM exception handling directives
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000422 void emitFnStart();
423 void emitFnEnd();
424 void emitCantUnwind();
425 void emitPersonality(const MCSymbol *Per);
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +0000426 void emitPersonalityIndex(unsigned index);
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000427 void emitHandlerData();
428 void emitSetFP(unsigned NewFpReg, unsigned NewSpReg, int64_t Offset = 0);
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +0000429 void emitMovSP(unsigned Reg, int64_t Offset = 0);
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000430 void emitPad(int64_t Offset);
431 void emitRegSave(const SmallVectorImpl<unsigned> &RegList, bool isVector);
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +0000432 void emitUnwindRaw(int64_t Offset, const SmallVectorImpl<uint8_t> &Opcodes);
Logan Chien2bcc42c2013-01-30 15:39:04 +0000433
Craig Topperca7e3e52014-03-10 03:19:03 +0000434 void ChangeSection(const MCSection *Section,
435 const MCExpr *Subsection) override {
Tim Northover5cc3dc82012-12-07 16:50:23 +0000436 // We have to keep track of the mapping symbol state of any sections we
437 // use. Each one should start off as EMS_None, which is provided as the
438 // default constructor by DenseMap::lookup.
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000439 LastMappingSymbols[getPreviousSection().first] = LastEMS;
Tim Northover5cc3dc82012-12-07 16:50:23 +0000440 LastEMS = LastMappingSymbols.lookup(Section);
441
Peter Collingbourne2f495b92013-04-17 21:18:16 +0000442 MCELFStreamer::ChangeSection(Section, Subsection);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000443 }
444
445 /// This function is the one used to emit instruction data into the ELF
446 /// streamer. We override it to add the appropriate mapping symbol if
447 /// necessary.
Craig Topperca7e3e52014-03-10 03:19:03 +0000448 void EmitInstruction(const MCInst& Inst,
449 const MCSubtargetInfo &STI) override {
Tim Northover5cc3dc82012-12-07 16:50:23 +0000450 if (IsThumb)
451 EmitThumbMappingSymbol();
452 else
453 EmitARMMappingSymbol();
454
David Woodhousee6c13e42014-01-28 23:12:42 +0000455 MCELFStreamer::EmitInstruction(Inst, STI);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000456 }
457
Craig Topperd25ff6f2014-03-10 03:22:59 +0000458 void emitInst(uint32_t Inst, char Suffix) {
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +0000459 unsigned Size;
460 char Buffer[4];
461 const bool LittleEndian = getContext().getAsmInfo()->isLittleEndian();
462
463 switch (Suffix) {
464 case '\0':
465 Size = 4;
466
467 assert(!IsThumb);
468 EmitARMMappingSymbol();
469 for (unsigned II = 0, IE = Size; II != IE; II++) {
470 const unsigned I = LittleEndian ? (Size - II - 1) : II;
471 Buffer[Size - II - 1] = uint8_t(Inst >> I * CHAR_BIT);
472 }
473
474 break;
475 case 'n':
476 case 'w':
477 Size = (Suffix == 'n' ? 2 : 4);
478
479 assert(IsThumb);
480 EmitThumbMappingSymbol();
481 for (unsigned II = 0, IE = Size; II != IE; II = II + 2) {
482 const unsigned I0 = LittleEndian ? II + 0 : (Size - II - 1);
483 const unsigned I1 = LittleEndian ? II + 1 : (Size - II - 2);
484 Buffer[Size - II - 2] = uint8_t(Inst >> I0 * CHAR_BIT);
485 Buffer[Size - II - 1] = uint8_t(Inst >> I1 * CHAR_BIT);
486 }
487
488 break;
489 default:
490 llvm_unreachable("Invalid Suffix");
491 }
492
493 MCELFStreamer::EmitBytes(StringRef(Buffer, Size));
494 }
495
Tim Northover5cc3dc82012-12-07 16:50:23 +0000496 /// This is one of the functions used to emit data into an ELF section, so the
497 /// ARM streamer overrides it to add the appropriate mapping symbol ($d) if
498 /// necessary.
Craig Topperca7e3e52014-03-10 03:19:03 +0000499 void EmitBytes(StringRef Data) override {
Tim Northover5cc3dc82012-12-07 16:50:23 +0000500 EmitDataMappingSymbol();
Rafael Espindola64e1af82013-07-02 15:49:13 +0000501 MCELFStreamer::EmitBytes(Data);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000502 }
503
504 /// This is one of the functions used to emit data into an ELF section, so the
505 /// ARM streamer overrides it to add the appropriate mapping symbol ($d) if
506 /// necessary.
Kevin Enderby96918bc2014-04-22 17:27:29 +0000507 void EmitValueImpl(const MCExpr *Value, unsigned Size,
508 const SMLoc &Loc) override {
Saleem Abdulrasoolfe781972015-01-11 04:39:18 +0000509 if (const MCSymbolRefExpr *SRE = dyn_cast_or_null<MCSymbolRefExpr>(Value))
510 if (SRE->getKind() == MCSymbolRefExpr::VK_ARM_SBREL && !(Size == 4))
511 getContext().FatalError(Loc, "relocated expression must be 32-bit");
512
Tim Northover5cc3dc82012-12-07 16:50:23 +0000513 EmitDataMappingSymbol();
Rafael Espindola64e1af82013-07-02 15:49:13 +0000514 MCELFStreamer::EmitValueImpl(Value, Size);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000515 }
516
Craig Topperca7e3e52014-03-10 03:19:03 +0000517 void EmitAssemblerFlag(MCAssemblerFlag Flag) override {
Tim Northover5cc3dc82012-12-07 16:50:23 +0000518 MCELFStreamer::EmitAssemblerFlag(Flag);
519
520 switch (Flag) {
521 case MCAF_SyntaxUnified:
522 return; // no-op here.
523 case MCAF_Code16:
524 IsThumb = true;
525 return; // Change to Thumb mode
526 case MCAF_Code32:
527 IsThumb = false;
528 return; // Change to ARM mode
529 case MCAF_Code64:
530 return;
531 case MCAF_SubsectionsViaSymbols:
532 return;
533 }
534 }
535
536private:
537 enum ElfMappingSymbol {
538 EMS_None,
539 EMS_ARM,
540 EMS_Thumb,
541 EMS_Data
542 };
543
544 void EmitDataMappingSymbol() {
545 if (LastEMS == EMS_Data) return;
546 EmitMappingSymbol("$d");
547 LastEMS = EMS_Data;
548 }
549
550 void EmitThumbMappingSymbol() {
551 if (LastEMS == EMS_Thumb) return;
552 EmitMappingSymbol("$t");
553 LastEMS = EMS_Thumb;
554 }
555
556 void EmitARMMappingSymbol() {
557 if (LastEMS == EMS_ARM) return;
558 EmitMappingSymbol("$a");
559 LastEMS = EMS_ARM;
560 }
561
562 void EmitMappingSymbol(StringRef Name) {
563 MCSymbol *Start = getContext().CreateTempSymbol();
564 EmitLabel(Start);
565
Chandler Carruth1d94e932012-12-08 03:10:14 +0000566 MCSymbol *Symbol =
Benjamin Kramerf242d8c2012-12-08 10:45:24 +0000567 getContext().GetOrCreateSymbol(Name + "." +
568 Twine(MappingSymbolCounter++));
Tim Northover5cc3dc82012-12-07 16:50:23 +0000569
570 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
571 MCELF::SetType(SD, ELF::STT_NOTYPE);
572 MCELF::SetBinding(SD, ELF::STB_LOCAL);
573 SD.setExternal(false);
Richard Mitton21101b32013-09-19 23:21:01 +0000574 AssignSection(Symbol, getCurrentSection().first);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000575
576 const MCExpr *Value = MCSymbolRefExpr::Create(Start, getContext());
577 Symbol->setVariableValue(Value);
578 }
579
Craig Topperca7e3e52014-03-10 03:19:03 +0000580 void EmitThumbFunc(MCSymbol *Func) override {
Tim Northover5cc3dc82012-12-07 16:50:23 +0000581 getAssembler().setIsThumbFunc(Func);
Rafael Espindolab60c8292014-04-29 12:46:50 +0000582 EmitSymbolAttribute(Func, MCSA_ELF_TypeFunction);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000583 }
584
Logan Chien2bcc42c2013-01-30 15:39:04 +0000585 // Helper functions for ARM exception handling directives
586 void Reset();
587
588 void EmitPersonalityFixup(StringRef Name);
Logan Chien325823a2013-06-09 12:22:30 +0000589 void FlushPendingOffset();
Logan Chienc931fce2013-07-02 12:43:27 +0000590 void FlushUnwindOpcodes(bool NoHandlerData);
Logan Chien2bcc42c2013-01-30 15:39:04 +0000591
592 void SwitchToEHSection(const char *Prefix, unsigned Type, unsigned Flags,
593 SectionKind Kind, const MCSymbol &Fn);
594 void SwitchToExTabSection(const MCSymbol &FnStart);
595 void SwitchToExIdxSection(const MCSymbol &FnStart);
Tim Northover5cc3dc82012-12-07 16:50:23 +0000596
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +0000597 void EmitFixup(const MCExpr *Expr, MCFixupKind Kind);
598
Tim Northover5cc3dc82012-12-07 16:50:23 +0000599 bool IsThumb;
600 int64_t MappingSymbolCounter;
601
602 DenseMap<const MCSection *, ElfMappingSymbol> LastMappingSymbols;
603 ElfMappingSymbol LastEMS;
604
Logan Chien2bcc42c2013-01-30 15:39:04 +0000605 // ARM Exception Handling Frame Information
606 MCSymbol *ExTab;
607 MCSymbol *FnStart;
608 const MCSymbol *Personality;
Logan Chien325823a2013-06-09 12:22:30 +0000609 unsigned PersonalityIndex;
610 unsigned FPReg; // Frame pointer register
611 int64_t FPOffset; // Offset: (final frame pointer) - (initial $sp)
612 int64_t SPOffset; // Offset: (final $sp) - (initial $sp)
613 int64_t PendingOffset; // Offset: (final $sp) - (emitted $sp)
Logan Chiend8bb4b72013-04-16 12:02:21 +0000614 bool UsedFP;
Logan Chien2bcc42c2013-01-30 15:39:04 +0000615 bool CantUnwind;
Logan Chien325823a2013-06-09 12:22:30 +0000616 SmallVector<uint8_t, 64> Opcodes;
Logan Chiend8bb4b72013-04-16 12:02:21 +0000617 UnwindOpcodeAssembler UnwindOpAsm;
Tim Northover5cc3dc82012-12-07 16:50:23 +0000618};
Logan Chiend8bb4b72013-04-16 12:02:21 +0000619} // end anonymous namespace
Tim Northover5cc3dc82012-12-07 16:50:23 +0000620
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000621ARMELFStreamer &ARMTargetELFStreamer::getStreamer() {
Rafael Espindola24ea09e2014-01-26 06:06:37 +0000622 return static_cast<ARMELFStreamer &>(Streamer);
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000623}
624
625void ARMTargetELFStreamer::emitFnStart() { getStreamer().emitFnStart(); }
626void ARMTargetELFStreamer::emitFnEnd() { getStreamer().emitFnEnd(); }
627void ARMTargetELFStreamer::emitCantUnwind() { getStreamer().emitCantUnwind(); }
628void ARMTargetELFStreamer::emitPersonality(const MCSymbol *Personality) {
629 getStreamer().emitPersonality(Personality);
630}
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +0000631void ARMTargetELFStreamer::emitPersonalityIndex(unsigned Index) {
632 getStreamer().emitPersonalityIndex(Index);
633}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000634void ARMTargetELFStreamer::emitHandlerData() {
635 getStreamer().emitHandlerData();
636}
637void ARMTargetELFStreamer::emitSetFP(unsigned FpReg, unsigned SpReg,
638 int64_t Offset) {
639 getStreamer().emitSetFP(FpReg, SpReg, Offset);
640}
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +0000641void ARMTargetELFStreamer::emitMovSP(unsigned Reg, int64_t Offset) {
642 getStreamer().emitMovSP(Reg, Offset);
643}
Rafael Espindolaa17151a2013-10-08 13:08:17 +0000644void ARMTargetELFStreamer::emitPad(int64_t Offset) {
645 getStreamer().emitPad(Offset);
646}
647void ARMTargetELFStreamer::emitRegSave(const SmallVectorImpl<unsigned> &RegList,
648 bool isVector) {
649 getStreamer().emitRegSave(RegList, isVector);
650}
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +0000651void ARMTargetELFStreamer::emitUnwindRaw(int64_t Offset,
652 const SmallVectorImpl<uint8_t> &Opcodes) {
653 getStreamer().emitUnwindRaw(Offset, Opcodes);
654}
Logan Chien8cbb80d2013-10-28 17:51:12 +0000655void ARMTargetELFStreamer::switchVendor(StringRef Vendor) {
656 assert(!Vendor.empty() && "Vendor cannot be empty.");
657
658 if (CurrentVendor == Vendor)
659 return;
660
661 if (!CurrentVendor.empty())
662 finishAttributeSection();
663
664 assert(Contents.empty() &&
665 ".ARM.attributes should be flushed before changing vendor");
666 CurrentVendor = Vendor;
667
668}
669void ARMTargetELFStreamer::emitAttribute(unsigned Attribute, unsigned Value) {
670 setAttributeItem(Attribute, Value, /* OverwriteExisting= */ true);
671}
672void ARMTargetELFStreamer::emitTextAttribute(unsigned Attribute,
673 StringRef Value) {
674 setAttributeItem(Attribute, Value, /* OverwriteExisting= */ true);
675}
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000676void ARMTargetELFStreamer::emitIntTextAttribute(unsigned Attribute,
677 unsigned IntValue,
678 StringRef StringValue) {
679 setAttributeItems(Attribute, IntValue, StringValue,
680 /* OverwriteExisting= */ true);
681}
Logan Chien439e8f92013-12-11 17:16:25 +0000682void ARMTargetELFStreamer::emitArch(unsigned Value) {
683 Arch = Value;
684}
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000685void ARMTargetELFStreamer::emitObjectArch(unsigned Value) {
686 EmittedArch = Value;
687}
Logan Chien439e8f92013-12-11 17:16:25 +0000688void ARMTargetELFStreamer::emitArchDefaultAttributes() {
689 using namespace ARMBuildAttrs;
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000690
Renato Golinf5f373f2015-05-08 21:04:27 +0000691 setAttributeItem(CPU_name,
692 ARMTargetParser::getArchDefaultCPUName(Arch),
693 false);
694
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000695 if (EmittedArch == ARM::INVALID_ARCH)
Renato Golinf5f373f2015-05-08 21:04:27 +0000696 setAttributeItem(CPU_arch,
697 ARMTargetParser::getArchDefaultCPUArch(Arch),
698 false);
Saleem Abdulrasool4c4789b2014-01-30 04:46:41 +0000699 else
Renato Golinf5f373f2015-05-08 21:04:27 +0000700 setAttributeItem(CPU_arch,
701 ARMTargetParser::getArchDefaultCPUArch(EmittedArch),
702 false);
Logan Chien439e8f92013-12-11 17:16:25 +0000703
704 switch (Arch) {
705 case ARM::ARMV2:
706 case ARM::ARMV2A:
707 case ARM::ARMV3:
708 case ARM::ARMV3M:
709 case ARM::ARMV4:
710 case ARM::ARMV5:
711 setAttributeItem(ARM_ISA_use, Allowed, false);
712 break;
713
714 case ARM::ARMV4T:
715 case ARM::ARMV5T:
716 case ARM::ARMV5TE:
717 case ARM::ARMV6:
718 case ARM::ARMV6J:
719 setAttributeItem(ARM_ISA_use, Allowed, false);
720 setAttributeItem(THUMB_ISA_use, Allowed, false);
721 break;
722
723 case ARM::ARMV6T2:
724 setAttributeItem(ARM_ISA_use, Allowed, false);
725 setAttributeItem(THUMB_ISA_use, AllowThumb32, false);
726 break;
727
Renato Golin12350602015-03-17 11:55:28 +0000728 case ARM::ARMV6K:
Logan Chien439e8f92013-12-11 17:16:25 +0000729 case ARM::ARMV6Z:
730 case ARM::ARMV6ZK:
731 setAttributeItem(ARM_ISA_use, Allowed, false);
732 setAttributeItem(THUMB_ISA_use, Allowed, false);
733 setAttributeItem(Virtualization_use, AllowTZ, false);
734 break;
735
736 case ARM::ARMV6M:
Logan Chien439e8f92013-12-11 17:16:25 +0000737 setAttributeItem(THUMB_ISA_use, Allowed, false);
738 break;
739
740 case ARM::ARMV7:
741 setAttributeItem(THUMB_ISA_use, AllowThumb32, false);
742 break;
743
744 case ARM::ARMV7A:
745 setAttributeItem(CPU_arch_profile, ApplicationProfile, false);
746 setAttributeItem(ARM_ISA_use, Allowed, false);
747 setAttributeItem(THUMB_ISA_use, AllowThumb32, false);
748 break;
749
750 case ARM::ARMV7R:
751 setAttributeItem(CPU_arch_profile, RealTimeProfile, false);
752 setAttributeItem(ARM_ISA_use, Allowed, false);
753 setAttributeItem(THUMB_ISA_use, AllowThumb32, false);
754 break;
755
756 case ARM::ARMV7M:
757 setAttributeItem(CPU_arch_profile, MicroControllerProfile, false);
758 setAttributeItem(THUMB_ISA_use, AllowThumb32, false);
759 break;
760
761 case ARM::ARMV8A:
Vladimir Sukharevc632cda2015-03-26 17:05:54 +0000762 case ARM::ARMV8_1A:
Logan Chien439e8f92013-12-11 17:16:25 +0000763 setAttributeItem(CPU_arch_profile, ApplicationProfile, false);
764 setAttributeItem(ARM_ISA_use, Allowed, false);
765 setAttributeItem(THUMB_ISA_use, AllowThumb32, false);
766 setAttributeItem(MPextension_use, Allowed, false);
767 setAttributeItem(Virtualization_use, AllowTZVirtualization, false);
768 break;
769
770 case ARM::IWMMXT:
771 setAttributeItem(ARM_ISA_use, Allowed, false);
772 setAttributeItem(THUMB_ISA_use, Allowed, false);
773 setAttributeItem(WMMX_arch, AllowWMMXv1, false);
774 break;
775
776 case ARM::IWMMXT2:
777 setAttributeItem(ARM_ISA_use, Allowed, false);
778 setAttributeItem(THUMB_ISA_use, Allowed, false);
779 setAttributeItem(WMMX_arch, AllowWMMXv2, false);
780 break;
781
782 default:
783 report_fatal_error("Unknown Arch: " + Twine(Arch));
784 break;
785 }
786}
Logan Chien8cbb80d2013-10-28 17:51:12 +0000787void ARMTargetELFStreamer::emitFPU(unsigned Value) {
788 FPU = Value;
789}
790void ARMTargetELFStreamer::emitFPUDefaultAttributes() {
791 switch (FPU) {
792 case ARM::VFP:
793 case ARM::VFPV2:
Logan Chiena39510a2013-12-18 17:23:15 +0000794 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000795 ARMBuildAttrs::AllowFPv2,
796 /* OverwriteExisting= */ false);
797 break;
798
799 case ARM::VFPV3:
Logan Chiena39510a2013-12-18 17:23:15 +0000800 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000801 ARMBuildAttrs::AllowFPv3A,
802 /* OverwriteExisting= */ false);
803 break;
804
805 case ARM::VFPV3_D16:
Logan Chiena39510a2013-12-18 17:23:15 +0000806 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000807 ARMBuildAttrs::AllowFPv3B,
808 /* OverwriteExisting= */ false);
809 break;
810
811 case ARM::VFPV4:
Logan Chiena39510a2013-12-18 17:23:15 +0000812 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000813 ARMBuildAttrs::AllowFPv4A,
814 /* OverwriteExisting= */ false);
815 break;
816
817 case ARM::VFPV4_D16:
Logan Chiena39510a2013-12-18 17:23:15 +0000818 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000819 ARMBuildAttrs::AllowFPv4B,
820 /* OverwriteExisting= */ false);
821 break;
822
823 case ARM::FP_ARMV8:
Logan Chiena39510a2013-12-18 17:23:15 +0000824 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000825 ARMBuildAttrs::AllowFPARMv8A,
826 /* OverwriteExisting= */ false);
827 break;
828
Oliver Stannard37e4daa2014-10-01 09:02:17 +0000829 // FPV5_D16 is identical to FP_ARMV8 except for the number of D registers, so
830 // uses the FP_ARMV8_D16 build attribute.
831 case ARM::FPV5_D16:
832 setAttributeItem(ARMBuildAttrs::FP_arch,
833 ARMBuildAttrs::AllowFPARMv8B,
834 /* OverwriteExisting= */ false);
835 break;
836
Logan Chien8cbb80d2013-10-28 17:51:12 +0000837 case ARM::NEON:
Logan Chiena39510a2013-12-18 17:23:15 +0000838 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000839 ARMBuildAttrs::AllowFPv3A,
840 /* OverwriteExisting= */ false);
841 setAttributeItem(ARMBuildAttrs::Advanced_SIMD_arch,
842 ARMBuildAttrs::AllowNeon,
843 /* OverwriteExisting= */ false);
844 break;
845
846 case ARM::NEON_VFPV4:
Logan Chiena39510a2013-12-18 17:23:15 +0000847 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000848 ARMBuildAttrs::AllowFPv4A,
849 /* OverwriteExisting= */ false);
850 setAttributeItem(ARMBuildAttrs::Advanced_SIMD_arch,
851 ARMBuildAttrs::AllowNeon2,
852 /* OverwriteExisting= */ false);
853 break;
854
855 case ARM::NEON_FP_ARMV8:
856 case ARM::CRYPTO_NEON_FP_ARMV8:
Logan Chiena39510a2013-12-18 17:23:15 +0000857 setAttributeItem(ARMBuildAttrs::FP_arch,
Logan Chien8cbb80d2013-10-28 17:51:12 +0000858 ARMBuildAttrs::AllowFPARMv8A,
859 /* OverwriteExisting= */ false);
Vladimir Sukharevc632cda2015-03-26 17:05:54 +0000860 // 'Advanced_SIMD_arch' must be emitted not here, but within
861 // ARMAsmPrinter::emitAttributes(), depending on hasV8Ops() and hasV8_1a()
Logan Chien8cbb80d2013-10-28 17:51:12 +0000862 break;
863
Logan Chien05ae7442014-01-02 15:50:02 +0000864 case ARM::SOFTVFP:
865 break;
866
Logan Chien8cbb80d2013-10-28 17:51:12 +0000867 default:
868 report_fatal_error("Unknown FPU: " + Twine(FPU));
869 break;
870 }
871}
872size_t ARMTargetELFStreamer::calculateContentSize() const {
873 size_t Result = 0;
874 for (size_t i = 0; i < Contents.size(); ++i) {
875 AttributeItem item = Contents[i];
876 switch (item.Type) {
877 case AttributeItem::HiddenAttribute:
878 break;
879 case AttributeItem::NumericAttribute:
Logan Chien5b776b72014-02-22 14:00:39 +0000880 Result += getULEB128Size(item.Tag);
881 Result += getULEB128Size(item.IntValue);
Logan Chien8cbb80d2013-10-28 17:51:12 +0000882 break;
883 case AttributeItem::TextAttribute:
Logan Chien5b776b72014-02-22 14:00:39 +0000884 Result += getULEB128Size(item.Tag);
Logan Chien8cbb80d2013-10-28 17:51:12 +0000885 Result += item.StringValue.size() + 1; // string + '\0'
886 break;
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000887 case AttributeItem::NumericAndTextAttributes:
Logan Chien5b776b72014-02-22 14:00:39 +0000888 Result += getULEB128Size(item.Tag);
889 Result += getULEB128Size(item.IntValue);
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000890 Result += item.StringValue.size() + 1; // string + '\0';
891 break;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000892 }
893 }
894 return Result;
895}
896void ARMTargetELFStreamer::finishAttributeSection() {
897 // <format-version>
898 // [ <section-length> "vendor-name"
899 // [ <file-tag> <size> <attribute>*
900 // | <section-tag> <size> <section-number>* 0 <attribute>*
901 // | <symbol-tag> <size> <symbol-number>* 0 <attribute>*
902 // ]+
903 // ]*
904
905 if (FPU != ARM::INVALID_FPU)
906 emitFPUDefaultAttributes();
907
Logan Chien439e8f92013-12-11 17:16:25 +0000908 if (Arch != ARM::INVALID_ARCH)
909 emitArchDefaultAttributes();
910
Logan Chien8cbb80d2013-10-28 17:51:12 +0000911 if (Contents.empty())
912 return;
913
914 std::sort(Contents.begin(), Contents.end(), AttributeItem::LessTag);
915
916 ARMELFStreamer &Streamer = getStreamer();
917
918 // Switch to .ARM.attributes section
919 if (AttributeSection) {
920 Streamer.SwitchSection(AttributeSection);
921 } else {
Rafael Espindolaba31e272015-01-29 17:33:21 +0000922 AttributeSection = Streamer.getContext().getELFSection(
923 ".ARM.attributes", ELF::SHT_ARM_ATTRIBUTES, 0);
Logan Chien8cbb80d2013-10-28 17:51:12 +0000924 Streamer.SwitchSection(AttributeSection);
925
926 // Format version
927 Streamer.EmitIntValue(0x41, 1);
928 }
929
930 // Vendor size + Vendor name + '\0'
931 const size_t VendorHeaderSize = 4 + CurrentVendor.size() + 1;
932
933 // Tag + Tag Size
934 const size_t TagHeaderSize = 1 + 4;
935
936 const size_t ContentsSize = calculateContentSize();
937
938 Streamer.EmitIntValue(VendorHeaderSize + TagHeaderSize + ContentsSize, 4);
939 Streamer.EmitBytes(CurrentVendor);
940 Streamer.EmitIntValue(0, 1); // '\0'
941
942 Streamer.EmitIntValue(ARMBuildAttrs::File, 1);
943 Streamer.EmitIntValue(TagHeaderSize + ContentsSize, 4);
944
945 // Size should have been accounted for already, now
946 // emit each field as its type (ULEB or String)
947 for (size_t i = 0; i < Contents.size(); ++i) {
948 AttributeItem item = Contents[i];
949 Streamer.EmitULEB128IntValue(item.Tag);
950 switch (item.Type) {
951 default: llvm_unreachable("Invalid attribute type");
952 case AttributeItem::NumericAttribute:
953 Streamer.EmitULEB128IntValue(item.IntValue);
954 break;
955 case AttributeItem::TextAttribute:
Charlie Turner8d433692014-11-27 12:13:56 +0000956 Streamer.EmitBytes(item.StringValue);
Logan Chien8cbb80d2013-10-28 17:51:12 +0000957 Streamer.EmitIntValue(0, 1); // '\0'
958 break;
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000959 case AttributeItem::NumericAndTextAttributes:
960 Streamer.EmitULEB128IntValue(item.IntValue);
Charlie Turner8d433692014-11-27 12:13:56 +0000961 Streamer.EmitBytes(item.StringValue);
Saleem Abdulrasool87ccd362014-01-07 02:28:42 +0000962 Streamer.EmitIntValue(0, 1); // '\0'
963 break;
Logan Chien8cbb80d2013-10-28 17:51:12 +0000964 }
965 }
966
967 Contents.clear();
968 FPU = ARM::INVALID_FPU;
969}
Rafael Espindola4c6f6132014-04-27 17:10:46 +0000970
971void ARMTargetELFStreamer::emitLabel(MCSymbol *Symbol) {
972 ARMELFStreamer &Streamer = getStreamer();
973 if (!Streamer.IsThumb)
974 return;
975
976 const MCSymbolData &SD = Streamer.getOrCreateSymbolData(Symbol);
Scott Douglass7650a9b2014-06-30 09:37:24 +0000977 unsigned Type = MCELF::GetType(SD);
978 if (Type == ELF_STT_Func || Type == ELF_STT_GnuIFunc)
Rafael Espindola4c6f6132014-04-27 17:10:46 +0000979 Streamer.EmitThumbFunc(Symbol);
980}
981
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +0000982void
983ARMTargetELFStreamer::AnnotateTLSDescriptorSequence(const MCSymbolRefExpr *S) {
984 getStreamer().EmitFixup(S, FK_Data_4);
985}
Rafael Espindola466d6632014-04-27 20:23:58 +0000986
987void ARMTargetELFStreamer::emitThumbSet(MCSymbol *Symbol, const MCExpr *Value) {
988 if (const MCSymbolRefExpr *SRE = dyn_cast<MCSymbolRefExpr>(Value)) {
Rafael Espindola4a042942014-05-01 12:45:43 +0000989 const MCSymbol &Sym = SRE->getSymbol();
990 if (!Sym.isDefined()) {
Rafael Espindola466d6632014-04-27 20:23:58 +0000991 getStreamer().EmitAssignment(Symbol, Value);
992 return;
993 }
994 }
995
996 getStreamer().EmitThumbFunc(Symbol);
997 getStreamer().EmitAssignment(Symbol, Value);
998}
999
Saleem Abdulrasoolc0da2cb2013-12-19 05:17:58 +00001000void ARMTargetELFStreamer::emitInst(uint32_t Inst, char Suffix) {
1001 getStreamer().emitInst(Inst, Suffix);
1002}
Logan Chien8cbb80d2013-10-28 17:51:12 +00001003
1004void ARMELFStreamer::FinishImpl() {
Rafael Espindola4a1a3602014-01-14 01:21:46 +00001005 MCTargetStreamer &TS = *getTargetStreamer();
Logan Chien8cbb80d2013-10-28 17:51:12 +00001006 ARMTargetStreamer &ATS = static_cast<ARMTargetStreamer &>(TS);
1007 ATS.finishAttributeSection();
1008
1009 MCELFStreamer::FinishImpl();
1010}
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001011
Logan Chien2bcc42c2013-01-30 15:39:04 +00001012inline void ARMELFStreamer::SwitchToEHSection(const char *Prefix,
1013 unsigned Type,
1014 unsigned Flags,
1015 SectionKind Kind,
1016 const MCSymbol &Fn) {
1017 const MCSectionELF &FnSection =
1018 static_cast<const MCSectionELF &>(Fn.getSection());
1019
1020 // Create the name for new section
1021 StringRef FnSecName(FnSection.getSectionName());
1022 SmallString<128> EHSecName(Prefix);
1023 if (FnSecName != ".text") {
1024 EHSecName += FnSecName;
1025 }
1026
1027 // Get .ARM.extab or .ARM.exidx section
Rafael Espindola61e8ce32015-04-06 04:25:18 +00001028 const MCSymbol *Group = FnSection.getGroup();
1029 if (Group)
1030 Flags |= ELF::SHF_GROUP;
1031 const MCSectionELF *EHSection =
1032 getContext().getELFSection(EHSecName, Type, Flags, 0, Group,
1033 FnSection.getUniqueID(), nullptr, &FnSection);
1034
Logan Chiend8bb4b72013-04-16 12:02:21 +00001035 assert(EHSection && "Failed to get the required EH section");
Logan Chien2bcc42c2013-01-30 15:39:04 +00001036
1037 // Switch to .ARM.extab or .ARM.exidx section
1038 SwitchSection(EHSection);
Rafael Espindola7b514962014-02-04 18:34:04 +00001039 EmitCodeAlignment(4);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001040}
1041
1042inline void ARMELFStreamer::SwitchToExTabSection(const MCSymbol &FnStart) {
1043 SwitchToEHSection(".ARM.extab",
1044 ELF::SHT_PROGBITS,
1045 ELF::SHF_ALLOC,
1046 SectionKind::getDataRel(),
1047 FnStart);
1048}
1049
1050inline void ARMELFStreamer::SwitchToExIdxSection(const MCSymbol &FnStart) {
1051 SwitchToEHSection(".ARM.exidx",
1052 ELF::SHT_ARM_EXIDX,
1053 ELF::SHF_ALLOC | ELF::SHF_LINK_ORDER,
1054 SectionKind::getDataRel(),
1055 FnStart);
1056}
Saleem Abdulrasool56e06e82014-01-30 04:02:47 +00001057void ARMELFStreamer::EmitFixup(const MCExpr *Expr, MCFixupKind Kind) {
1058 MCDataFragment *Frag = getOrCreateDataFragment();
1059 Frag->getFixups().push_back(MCFixup::Create(Frag->getContents().size(), Expr,
1060 Kind));
1061}
Logan Chien2bcc42c2013-01-30 15:39:04 +00001062
1063void ARMELFStreamer::Reset() {
Craig Topper062a2ba2014-04-25 05:30:21 +00001064 ExTab = nullptr;
1065 FnStart = nullptr;
1066 Personality = nullptr;
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +00001067 PersonalityIndex = ARM::EHABI::NUM_PERSONALITY_INDEX;
Logan Chien325823a2013-06-09 12:22:30 +00001068 FPReg = ARM::SP;
Logan Chiend8bb4b72013-04-16 12:02:21 +00001069 FPOffset = 0;
1070 SPOffset = 0;
Logan Chien325823a2013-06-09 12:22:30 +00001071 PendingOffset = 0;
Logan Chiend8bb4b72013-04-16 12:02:21 +00001072 UsedFP = false;
Logan Chien2bcc42c2013-01-30 15:39:04 +00001073 CantUnwind = false;
Logan Chiend8bb4b72013-04-16 12:02:21 +00001074
Logan Chien325823a2013-06-09 12:22:30 +00001075 Opcodes.clear();
Logan Chiend8bb4b72013-04-16 12:02:21 +00001076 UnwindOpAsm.Reset();
Logan Chien2bcc42c2013-01-30 15:39:04 +00001077}
1078
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001079void ARMELFStreamer::emitFnStart() {
Craig Toppere73658d2014-04-28 04:05:08 +00001080 assert(FnStart == nullptr);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001081 FnStart = getContext().CreateTempSymbol();
1082 EmitLabel(FnStart);
1083}
1084
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001085void ARMELFStreamer::emitFnEnd() {
Alp Tokercb402912014-01-24 17:20:08 +00001086 assert(FnStart && ".fnstart must precedes .fnend");
Logan Chien2bcc42c2013-01-30 15:39:04 +00001087
1088 // Emit unwind opcodes if there is no .handlerdata directive
Logan Chien4ea23b52013-05-10 16:17:24 +00001089 if (!ExTab && !CantUnwind)
1090 FlushUnwindOpcodes(true);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001091
1092 // Emit the exception index table entry
1093 SwitchToExIdxSection(*FnStart);
1094
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +00001095 if (PersonalityIndex < ARM::EHABI::NUM_PERSONALITY_INDEX)
Logan Chiend8bb4b72013-04-16 12:02:21 +00001096 EmitPersonalityFixup(GetAEABIUnwindPersonalityName(PersonalityIndex));
Logan Chien2bcc42c2013-01-30 15:39:04 +00001097
1098 const MCSymbolRefExpr *FnStartRef =
1099 MCSymbolRefExpr::Create(FnStart,
1100 MCSymbolRefExpr::VK_ARM_PREL31,
1101 getContext());
1102
Rafael Espindola64e1af82013-07-02 15:49:13 +00001103 EmitValue(FnStartRef, 4);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001104
1105 if (CantUnwind) {
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +00001106 EmitIntValue(ARM::EHABI::EXIDX_CANTUNWIND, 4);
Logan Chiend8bb4b72013-04-16 12:02:21 +00001107 } else if (ExTab) {
1108 // Emit a reference to the unwind opcodes in the ".ARM.extab" section.
Logan Chien2bcc42c2013-01-30 15:39:04 +00001109 const MCSymbolRefExpr *ExTabEntryRef =
1110 MCSymbolRefExpr::Create(ExTab,
1111 MCSymbolRefExpr::VK_ARM_PREL31,
1112 getContext());
Rafael Espindola64e1af82013-07-02 15:49:13 +00001113 EmitValue(ExTabEntryRef, 4);
Logan Chiend8bb4b72013-04-16 12:02:21 +00001114 } else {
1115 // For the __aeabi_unwind_cpp_pr0, we have to emit the unwind opcodes in
1116 // the second word of exception index table entry. The size of the unwind
1117 // opcodes should always be 4 bytes.
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +00001118 assert(PersonalityIndex == ARM::EHABI::AEABI_UNWIND_CPP_PR0 &&
Jonathan Roelofs4971b402014-05-15 02:24:50 +00001119 "Compact model must use __aeabi_unwind_cpp_pr0 as personality");
Logan Chien325823a2013-06-09 12:22:30 +00001120 assert(Opcodes.size() == 4u &&
Jonathan Roelofs4971b402014-05-15 02:24:50 +00001121 "Unwind opcode size for __aeabi_unwind_cpp_pr0 must be equal to 4");
Christian Pirker39db7ec2014-05-13 16:44:30 +00001122 uint64_t Intval = Opcodes[0] |
1123 Opcodes[1] << 8 |
1124 Opcodes[2] << 16 |
1125 Opcodes[3] << 24;
1126 EmitIntValue(Intval, Opcodes.size());
Logan Chien2bcc42c2013-01-30 15:39:04 +00001127 }
1128
Logan Chien4ea23b52013-05-10 16:17:24 +00001129 // Switch to the section containing FnStart
1130 SwitchSection(&FnStart->getSection());
1131
Logan Chien2bcc42c2013-01-30 15:39:04 +00001132 // Clean exception handling frame information
1133 Reset();
1134}
1135
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001136void ARMELFStreamer::emitCantUnwind() { CantUnwind = true; }
1137
1138// Add the R_ARM_NONE fixup at the same position
1139void ARMELFStreamer::EmitPersonalityFixup(StringRef Name) {
1140 const MCSymbol *PersonalitySym = getContext().GetOrCreateSymbol(Name);
1141
1142 const MCSymbolRefExpr *PersonalityRef = MCSymbolRefExpr::Create(
1143 PersonalitySym, MCSymbolRefExpr::VK_ARM_NONE, getContext());
1144
Rafael Espindola2be12812014-06-25 15:29:54 +00001145 visitUsedExpr(*PersonalityRef);
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001146 MCDataFragment *DF = getOrCreateDataFragment();
1147 DF->getFixups().push_back(MCFixup::Create(DF->getContents().size(),
1148 PersonalityRef,
1149 MCFixup::getKindForSize(4, false)));
Logan Chien2bcc42c2013-01-30 15:39:04 +00001150}
1151
Logan Chien325823a2013-06-09 12:22:30 +00001152void ARMELFStreamer::FlushPendingOffset() {
1153 if (PendingOffset != 0) {
1154 UnwindOpAsm.EmitSPOffset(-PendingOffset);
1155 PendingOffset = 0;
1156 }
1157}
1158
Logan Chienc931fce2013-07-02 12:43:27 +00001159void ARMELFStreamer::FlushUnwindOpcodes(bool NoHandlerData) {
Logan Chien325823a2013-06-09 12:22:30 +00001160 // Emit the unwind opcode to restore $sp.
1161 if (UsedFP) {
Bill Wendlingbc07a892013-06-18 07:20:20 +00001162 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
Logan Chien325823a2013-06-09 12:22:30 +00001163 int64_t LastRegSaveSPOffset = SPOffset - PendingOffset;
1164 UnwindOpAsm.EmitSPOffset(LastRegSaveSPOffset - FPOffset);
Bill Wendlingbc07a892013-06-18 07:20:20 +00001165 UnwindOpAsm.EmitSetSP(MRI->getEncodingValue(FPReg));
Logan Chien325823a2013-06-09 12:22:30 +00001166 } else {
1167 FlushPendingOffset();
1168 }
1169
1170 // Finalize the unwind opcode sequence
1171 UnwindOpAsm.Finalize(PersonalityIndex, Opcodes);
Logan Chien4ea23b52013-05-10 16:17:24 +00001172
1173 // For compact model 0, we have to emit the unwind opcodes in the .ARM.exidx
1174 // section. Thus, we don't have to create an entry in the .ARM.extab
1175 // section.
Saleem Abdulrasoolb961c992014-01-06 00:15:00 +00001176 if (NoHandlerData && PersonalityIndex == ARM::EHABI::AEABI_UNWIND_CPP_PR0)
Logan Chien4ea23b52013-05-10 16:17:24 +00001177 return;
1178
1179 // Switch to .ARM.extab section.
Logan Chien2bcc42c2013-01-30 15:39:04 +00001180 SwitchToExTabSection(*FnStart);
1181
1182 // Create .ARM.extab label for offset in .ARM.exidx
1183 assert(!ExTab);
1184 ExTab = getContext().CreateTempSymbol();
1185 EmitLabel(ExTab);
1186
Logan Chien4ea23b52013-05-10 16:17:24 +00001187 // Emit personality
1188 if (Personality) {
1189 const MCSymbolRefExpr *PersonalityRef =
1190 MCSymbolRefExpr::Create(Personality,
1191 MCSymbolRefExpr::VK_ARM_PREL31,
1192 getContext());
Logan Chien2bcc42c2013-01-30 15:39:04 +00001193
Rafael Espindola64e1af82013-07-02 15:49:13 +00001194 EmitValue(PersonalityRef, 4);
Logan Chien4ea23b52013-05-10 16:17:24 +00001195 }
Logan Chien2bcc42c2013-01-30 15:39:04 +00001196
1197 // Emit unwind opcodes
Christian Pirker39db7ec2014-05-13 16:44:30 +00001198 assert((Opcodes.size() % 4) == 0 &&
1199 "Unwind opcode size for __aeabi_cpp_unwind_pr0 must be multiple of 4");
1200 for (unsigned I = 0; I != Opcodes.size(); I += 4) {
1201 uint64_t Intval = Opcodes[I] |
1202 Opcodes[I + 1] << 8 |
1203 Opcodes[I + 2] << 16 |
1204 Opcodes[I + 3] << 24;
1205 EmitIntValue(Intval, 4);
1206 }
Logan Chienc931fce2013-07-02 12:43:27 +00001207
1208 // According to ARM EHABI section 9.2, if the __aeabi_unwind_cpp_pr1() or
1209 // __aeabi_unwind_cpp_pr2() is used, then the handler data must be emitted
1210 // after the unwind opcodes. The handler data consists of several 32-bit
1211 // words, and should be terminated by zero.
1212 //
1213 // In case that the .handlerdata directive is not specified by the
1214 // programmer, we should emit zero to terminate the handler data.
1215 if (NoHandlerData && !Personality)
1216 EmitIntValue(0, 4);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001217}
1218
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001219void ARMELFStreamer::emitHandlerData() { FlushUnwindOpcodes(false); }
Logan Chien4ea23b52013-05-10 16:17:24 +00001220
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001221void ARMELFStreamer::emitPersonality(const MCSymbol *Per) {
Logan Chien2bcc42c2013-01-30 15:39:04 +00001222 Personality = Per;
Logan Chiend8bb4b72013-04-16 12:02:21 +00001223 UnwindOpAsm.setPersonality(Per);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001224}
1225
Saleem Abdulrasool662f5c12014-01-21 02:33:02 +00001226void ARMELFStreamer::emitPersonalityIndex(unsigned Index) {
1227 assert(Index < ARM::EHABI::NUM_PERSONALITY_INDEX && "invalid index");
1228 PersonalityIndex = Index;
1229}
1230
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001231void ARMELFStreamer::emitSetFP(unsigned NewFPReg, unsigned NewSPReg,
Logan Chien2bcc42c2013-01-30 15:39:04 +00001232 int64_t Offset) {
Logan Chien325823a2013-06-09 12:22:30 +00001233 assert((NewSPReg == ARM::SP || NewSPReg == FPReg) &&
Logan Chiend8bb4b72013-04-16 12:02:21 +00001234 "the operand of .setfp directive should be either $sp or $fp");
1235
1236 UsedFP = true;
Logan Chien325823a2013-06-09 12:22:30 +00001237 FPReg = NewFPReg;
1238
1239 if (NewSPReg == ARM::SP)
1240 FPOffset = SPOffset + Offset;
1241 else
1242 FPOffset += Offset;
Logan Chien2bcc42c2013-01-30 15:39:04 +00001243}
1244
Saleem Abdulrasool5d962d32014-01-30 04:46:24 +00001245void ARMELFStreamer::emitMovSP(unsigned Reg, int64_t Offset) {
1246 assert((Reg != ARM::SP && Reg != ARM::PC) &&
1247 "the operand of .movsp cannot be either sp or pc");
1248 assert(FPReg == ARM::SP && "current FP must be SP");
1249
1250 FlushPendingOffset();
1251
1252 FPReg = Reg;
1253 FPOffset = SPOffset + Offset;
1254
1255 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
1256 UnwindOpAsm.EmitSetSP(MRI->getEncodingValue(FPReg));
1257}
1258
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001259void ARMELFStreamer::emitPad(int64_t Offset) {
Logan Chien325823a2013-06-09 12:22:30 +00001260 // Track the change of the $sp offset
1261 SPOffset -= Offset;
1262
1263 // To squash multiple .pad directives, we should delay the unwind opcode
1264 // until the .save, .vsave, .handlerdata, or .fnend directives.
1265 PendingOffset -= Offset;
Logan Chien2bcc42c2013-01-30 15:39:04 +00001266}
1267
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001268void ARMELFStreamer::emitRegSave(const SmallVectorImpl<unsigned> &RegList,
Logan Chien2bcc42c2013-01-30 15:39:04 +00001269 bool IsVector) {
Logan Chien325823a2013-06-09 12:22:30 +00001270 // Collect the registers in the register list
1271 unsigned Count = 0;
1272 uint32_t Mask = 0;
Bill Wendlingbc07a892013-06-18 07:20:20 +00001273 const MCRegisterInfo *MRI = getContext().getRegisterInfo();
Logan Chiend8bb4b72013-04-16 12:02:21 +00001274 for (size_t i = 0; i < RegList.size(); ++i) {
Bill Wendlingbc07a892013-06-18 07:20:20 +00001275 unsigned Reg = MRI->getEncodingValue(RegList[i]);
Aaron Ballmanab1d27e2013-06-10 16:45:40 +00001276 assert(Reg < (IsVector ? 32U : 16U) && "Register out of range");
Logan Chien325823a2013-06-09 12:22:30 +00001277 unsigned Bit = (1u << Reg);
1278 if ((Mask & Bit) == 0) {
1279 Mask |= Bit;
1280 ++Count;
1281 }
Logan Chiend8bb4b72013-04-16 12:02:21 +00001282 }
Logan Chien325823a2013-06-09 12:22:30 +00001283
1284 // Track the change the $sp offset: For the .save directive, the
1285 // corresponding push instruction will decrease the $sp by (4 * Count).
1286 // For the .vsave directive, the corresponding vpush instruction will
1287 // decrease $sp by (8 * Count).
1288 SPOffset -= Count * (IsVector ? 8 : 4);
1289
1290 // Emit the opcode
1291 FlushPendingOffset();
1292 if (IsVector)
1293 UnwindOpAsm.EmitVFPRegSave(Mask);
1294 else
1295 UnwindOpAsm.EmitRegSave(Mask);
Logan Chien2bcc42c2013-01-30 15:39:04 +00001296}
1297
Saleem Abdulrasoold9f08602014-01-21 02:33:10 +00001298void ARMELFStreamer::emitUnwindRaw(int64_t Offset,
1299 const SmallVectorImpl<uint8_t> &Opcodes) {
1300 FlushPendingOffset();
1301 SPOffset = SPOffset - Offset;
1302 UnwindOpAsm.EmitRaw(Opcodes);
1303}
1304
Tim Northover5cc3dc82012-12-07 16:50:23 +00001305namespace llvm {
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001306
Rafael Espindola73870dd2015-03-16 21:43:42 +00001307MCTargetStreamer *createARMTargetAsmStreamer(MCStreamer &S,
1308 formatted_raw_ostream &OS,
1309 MCInstPrinter *InstPrint,
1310 bool isVerboseAsm) {
1311 return new ARMTargetAsmStreamer(S, OS, *InstPrint, isVerboseAsm);
Rafael Espindolaa17151a2013-10-08 13:08:17 +00001312}
1313
Peter Collingbourne20c72592015-02-19 00:45:02 +00001314MCTargetStreamer *createARMNullTargetStreamer(MCStreamer &S) {
1315 return new ARMTargetStreamer(S);
1316}
1317
Rafael Espindolacd584a82015-03-19 01:50:16 +00001318MCTargetStreamer *createARMObjectTargetStreamer(MCStreamer &S,
1319 const MCSubtargetInfo &STI) {
1320 Triple TT(STI.getTargetTriple());
1321 if (TT.getObjectFormat() == Triple::ELF)
1322 return new ARMTargetELFStreamer(S);
1323 return new ARMTargetStreamer(S);
1324}
1325
Rafael Espindola7b61ddf2014-10-15 16:12:52 +00001326MCELFStreamer *createARMELFStreamer(MCContext &Context, MCAsmBackend &TAB,
Rafael Espindola5560a4c2015-04-14 22:14:34 +00001327 raw_pwrite_stream &OS,
1328 MCCodeEmitter *Emitter, bool RelaxAll,
1329 bool IsThumb) {
Rafael Espindola24ea09e2014-01-26 06:06:37 +00001330 ARMELFStreamer *S = new ARMELFStreamer(Context, TAB, OS, Emitter, IsThumb);
Rafael Espindolaac4ad252013-10-05 16:42:21 +00001331 // FIXME: This should eventually end up somewhere else where more
1332 // intelligent flag decisions can be made. For now we are just maintaining
1333 // the status quo for ARM and setting EF_ARM_EABI_VER5 as the default.
1334 S->getAssembler().setELFHeaderEFlags(ELF::EF_ARM_EABI_VER5);
1335
Tim Northover5cc3dc82012-12-07 16:50:23 +00001336 if (RelaxAll)
1337 S->getAssembler().setRelaxAll(true);
Tim Northover5cc3dc82012-12-07 16:50:23 +00001338 return S;
1339 }
1340
1341}
1342
1343