blob: d391b750422f0d3cb3420288d3ebc135d34b6aad [file] [log] [blame]
Tim Northover3b0846e2014-05-24 12:50:23 +00001//===- lib/MC/AArch64ELFStreamer.cpp - ELF Object Output for AArch64 ------===//
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 AArch64 ELF .o object files. Different
11// from generic ELF streamer in emitting mapping symbols ($x and $d) to delimit
12// regions of data and code.
13//
14//===----------------------------------------------------------------------===//
15
Benjamin Kramer1d1b9242015-05-23 16:15:10 +000016#include "AArch64TargetStreamer.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000017#include "llvm/MC/MCELFStreamer.h"
18#include "llvm/ADT/SmallPtrSet.h"
Chad Rosierdcd2a302014-10-22 20:35:57 +000019#include "llvm/ADT/StringExtras.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000020#include "llvm/ADT/Twine.h"
21#include "llvm/MC/MCAsmBackend.h"
Chad Rosierdcd2a302014-10-22 20:35:57 +000022#include "llvm/MC/MCAsmInfo.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000023#include "llvm/MC/MCAssembler.h"
24#include "llvm/MC/MCCodeEmitter.h"
25#include "llvm/MC/MCContext.h"
26#include "llvm/MC/MCELF.h"
27#include "llvm/MC/MCELFStreamer.h"
28#include "llvm/MC/MCELFSymbolFlags.h"
29#include "llvm/MC/MCExpr.h"
30#include "llvm/MC/MCInst.h"
31#include "llvm/MC/MCObjectStreamer.h"
32#include "llvm/MC/MCSection.h"
33#include "llvm/MC/MCSectionELF.h"
34#include "llvm/MC/MCStreamer.h"
35#include "llvm/MC/MCSymbol.h"
36#include "llvm/MC/MCValue.h"
37#include "llvm/Support/Debug.h"
38#include "llvm/Support/ELF.h"
39#include "llvm/Support/ErrorHandling.h"
Chad Rosierdcd2a302014-10-22 20:35:57 +000040#include "llvm/Support/FormattedStream.h"
Tim Northover3b0846e2014-05-24 12:50:23 +000041#include "llvm/Support/raw_ostream.h"
42
43using namespace llvm;
44
45namespace {
46
Chad Rosierdcd2a302014-10-22 20:35:57 +000047class AArch64ELFStreamer;
48
49class AArch64TargetAsmStreamer : public AArch64TargetStreamer {
50 formatted_raw_ostream &OS;
51
52 void emitInst(uint32_t Inst) override;
53
54public:
55 AArch64TargetAsmStreamer(MCStreamer &S, formatted_raw_ostream &OS);
56};
57
58AArch64TargetAsmStreamer::AArch64TargetAsmStreamer(MCStreamer &S,
59 formatted_raw_ostream &OS)
60 : AArch64TargetStreamer(S), OS(OS) {}
61
62void AArch64TargetAsmStreamer::emitInst(uint32_t Inst) {
63 OS << "\t.inst\t0x" << utohexstr(Inst) << "\n";
64}
65
66class AArch64TargetELFStreamer : public AArch64TargetStreamer {
67private:
68 AArch64ELFStreamer &getStreamer();
69
70 void emitInst(uint32_t Inst) override;
71
72public:
73 AArch64TargetELFStreamer(MCStreamer &S) : AArch64TargetStreamer(S) {}
74};
75
Tim Northover3b0846e2014-05-24 12:50:23 +000076/// Extend the generic ELFStreamer class so that it can emit mapping symbols at
77/// the appropriate points in the object files. These symbols are defined in the
78/// AArch64 ELF ABI:
79/// infocenter.arm.com/help/topic/com.arm.doc.ihi0056a/IHI0056A_aaelf64.pdf
80///
81/// In brief: $x or $d should be emitted at the start of each contiguous region
82/// of A64 code or data in a section. In practice, this emission does not rely
83/// on explicit assembler directives but on inherent properties of the
84/// directives doing the emission (e.g. ".byte" is data, "add x0, x0, x0" an
85/// instruction).
86///
87/// As a result this system is orthogonal to the DataRegion infrastructure used
88/// by MachO. Beware!
89class AArch64ELFStreamer : public MCELFStreamer {
90public:
Chad Rosierdcd2a302014-10-22 20:35:57 +000091 friend class AArch64TargetELFStreamer;
92
Rafael Espindola5560a4c2015-04-14 22:14:34 +000093 AArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB,
94 raw_pwrite_stream &OS, MCCodeEmitter *Emitter)
Tim Northover3b0846e2014-05-24 12:50:23 +000095 : MCELFStreamer(Context, TAB, OS, Emitter), MappingSymbolCounter(0),
96 LastEMS(EMS_None) {}
97
Alexander Kornienkof817c1c2015-04-11 02:11:45 +000098 ~AArch64ELFStreamer() override {}
Tim Northover3b0846e2014-05-24 12:50:23 +000099
Rafael Espindola0709a7b2015-05-21 19:20:38 +0000100 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override {
Tim Northover3b0846e2014-05-24 12:50:23 +0000101 // We have to keep track of the mapping symbol state of any sections we
102 // use. Each one should start off as EMS_None, which is provided as the
103 // default constructor by DenseMap::lookup.
104 LastMappingSymbols[getPreviousSection().first] = LastEMS;
105 LastEMS = LastMappingSymbols.lookup(Section);
106
107 MCELFStreamer::ChangeSection(Section, Subsection);
108 }
109
110 /// This function is the one used to emit instruction data into the ELF
111 /// streamer. We override it to add the appropriate mapping symbol if
112 /// necessary.
113 void EmitInstruction(const MCInst &Inst,
114 const MCSubtargetInfo &STI) override {
115 EmitA64MappingSymbol();
116 MCELFStreamer::EmitInstruction(Inst, STI);
117 }
118
Chad Rosierdcd2a302014-10-22 20:35:57 +0000119 void emitInst(uint32_t Inst) {
120 char Buffer[4];
121 const bool LittleEndian = getContext().getAsmInfo()->isLittleEndian();
122
123 EmitA64MappingSymbol();
124 for (unsigned II = 0; II != 4; ++II) {
125 const unsigned I = LittleEndian ? (4 - II - 1) : II;
126 Buffer[4 - II - 1] = uint8_t(Inst >> I * CHAR_BIT);
127 }
128 MCELFStreamer::EmitBytes(StringRef(Buffer, 4));
129 }
130
Tim Northover3b0846e2014-05-24 12:50:23 +0000131 /// This is one of the functions used to emit data into an ELF section, so the
132 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
133 /// if necessary.
134 void EmitBytes(StringRef Data) override {
135 EmitDataMappingSymbol();
136 MCELFStreamer::EmitBytes(Data);
137 }
138
139 /// This is one of the functions used to emit data into an ELF section, so the
140 /// AArch64 streamer overrides it to add the appropriate mapping symbol ($d)
141 /// if necessary.
142 void EmitValueImpl(const MCExpr *Value, unsigned Size,
143 const SMLoc &Loc) override {
144 EmitDataMappingSymbol();
145 MCELFStreamer::EmitValueImpl(Value, Size);
146 }
147
148private:
149 enum ElfMappingSymbol {
150 EMS_None,
151 EMS_A64,
152 EMS_Data
153 };
154
155 void EmitDataMappingSymbol() {
156 if (LastEMS == EMS_Data)
157 return;
158 EmitMappingSymbol("$d");
159 LastEMS = EMS_Data;
160 }
161
162 void EmitA64MappingSymbol() {
163 if (LastEMS == EMS_A64)
164 return;
165 EmitMappingSymbol("$x");
166 LastEMS = EMS_A64;
167 }
168
169 void EmitMappingSymbol(StringRef Name) {
Jim Grosbach6f482002015-05-18 18:43:14 +0000170 MCSymbol *Start = getContext().createTempSymbol();
Tim Northover3b0846e2014-05-24 12:50:23 +0000171 EmitLabel(Start);
172
Jim Grosbach6f482002015-05-18 18:43:14 +0000173 MCSymbol *Symbol = getContext().getOrCreateSymbol(
Tim Northover3b0846e2014-05-24 12:50:23 +0000174 Name + "." + Twine(MappingSymbolCounter++));
175
176 MCSymbolData &SD = getAssembler().getOrCreateSymbolData(*Symbol);
177 MCELF::SetType(SD, ELF::STT_NOTYPE);
178 MCELF::SetBinding(SD, ELF::STB_LOCAL);
179 SD.setExternal(false);
Michael Ilsemanaddddc42014-12-15 18:48:43 +0000180 auto Sec = getCurrentSection().first;
181 assert(Sec && "need a section");
182 Symbol->setSection(*Sec);
Tim Northover3b0846e2014-05-24 12:50:23 +0000183
184 const MCExpr *Value = MCSymbolRefExpr::Create(Start, getContext());
185 Symbol->setVariableValue(Value);
186 }
187
188 int64_t MappingSymbolCounter;
189
190 DenseMap<const MCSection *, ElfMappingSymbol> LastMappingSymbols;
191 ElfMappingSymbol LastEMS;
192
193 /// @}
194};
Chad Rosierdcd2a302014-10-22 20:35:57 +0000195} // end anonymous namespace
196
197AArch64ELFStreamer &AArch64TargetELFStreamer::getStreamer() {
198 return static_cast<AArch64ELFStreamer &>(Streamer);
199}
200
201void AArch64TargetELFStreamer::emitInst(uint32_t Inst) {
202 getStreamer().emitInst(Inst);
Tim Northover3b0846e2014-05-24 12:50:23 +0000203}
204
205namespace llvm {
Rafael Espindola73870dd2015-03-16 21:43:42 +0000206MCTargetStreamer *createAArch64AsmTargetStreamer(MCStreamer &S,
207 formatted_raw_ostream &OS,
208 MCInstPrinter *InstPrint,
209 bool isVerboseAsm) {
210 return new AArch64TargetAsmStreamer(S, OS);
Chad Rosierdcd2a302014-10-22 20:35:57 +0000211}
212
Tim Northover3b0846e2014-05-24 12:50:23 +0000213MCELFStreamer *createAArch64ELFStreamer(MCContext &Context, MCAsmBackend &TAB,
Rafael Espindola5560a4c2015-04-14 22:14:34 +0000214 raw_pwrite_stream &OS,
215 MCCodeEmitter *Emitter, bool RelaxAll) {
Tim Northover3b0846e2014-05-24 12:50:23 +0000216 AArch64ELFStreamer *S = new AArch64ELFStreamer(Context, TAB, OS, Emitter);
217 if (RelaxAll)
218 S->getAssembler().setRelaxAll(true);
Tim Northover3b0846e2014-05-24 12:50:23 +0000219 return S;
220}
Rafael Espindolacd584a82015-03-19 01:50:16 +0000221
222MCTargetStreamer *
223createAArch64ObjectTargetStreamer(MCStreamer &S, const MCSubtargetInfo &STI) {
224 Triple TT(STI.getTargetTriple());
225 if (TT.getObjectFormat() == Triple::ELF)
226 return new AArch64TargetELFStreamer(S);
227 return nullptr;
228}
Tim Northover3b0846e2014-05-24 12:50:23 +0000229}