1 //===- lib/MC/MCWasmStreamer.cpp - Wasm Object Output ---------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file assembles .s files and emits Wasm .o object files.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/MC/MCWasmStreamer.h"
14 #include "llvm/ADT/SmallString.h"
15 #include "llvm/ADT/SmallVector.h"
16 #include "llvm/MC/MCAsmBackend.h"
17 #include "llvm/MC/MCAssembler.h"
18 #include "llvm/MC/MCCodeEmitter.h"
19 #include "llvm/MC/MCExpr.h"
20 #include "llvm/MC/MCFixup.h"
21 #include "llvm/MC/MCFragment.h"
22 #include "llvm/MC/MCObjectStreamer.h"
23 #include "llvm/MC/MCSection.h"
24 #include "llvm/MC/MCSectionWasm.h"
25 #include "llvm/MC/MCSymbol.h"
26 #include "llvm/MC/MCSymbolWasm.h"
27 #include "llvm/MC/TargetRegistry.h"
28 #include "llvm/Support/Casting.h"
29 #include "llvm/Support/ErrorHandling.h"
30 #include "llvm/Support/raw_ostream.h"
35 class MCSubtargetInfo
;
40 MCWasmStreamer::~MCWasmStreamer() = default; // anchor.
42 void MCWasmStreamer::emitLabel(MCSymbol
*S
, SMLoc Loc
) {
43 auto *Symbol
= cast
<MCSymbolWasm
>(S
);
44 MCObjectStreamer::emitLabel(Symbol
, Loc
);
46 const MCSectionWasm
&Section
=
47 static_cast<const MCSectionWasm
&>(*getCurrentSectionOnly());
48 if (Section
.getSegmentFlags() & wasm::WASM_SEG_FLAG_TLS
)
52 void MCWasmStreamer::emitLabelAtPos(MCSymbol
*S
, SMLoc Loc
, MCDataFragment
&F
,
54 auto *Symbol
= cast
<MCSymbolWasm
>(S
);
55 MCObjectStreamer::emitLabelAtPos(Symbol
, Loc
, F
, Offset
);
57 const MCSectionWasm
&Section
=
58 static_cast<const MCSectionWasm
&>(*getCurrentSectionOnly());
59 if (Section
.getSegmentFlags() & wasm::WASM_SEG_FLAG_TLS
)
63 void MCWasmStreamer::emitAssemblerFlag(MCAssemblerFlag Flag
) {
64 // Let the target do whatever target specific stuff it needs to do.
65 getAssembler().getBackend().handleAssemblerFlag(Flag
);
67 // Do any generic stuff we need to do.
68 llvm_unreachable("invalid assembler flag!");
71 void MCWasmStreamer::changeSection(MCSection
*Section
, uint32_t Subsection
) {
72 MCAssembler
&Asm
= getAssembler();
73 auto *SectionWasm
= cast
<MCSectionWasm
>(Section
);
74 const MCSymbol
*Grp
= SectionWasm
->getGroup();
76 Asm
.registerSymbol(*Grp
);
78 this->MCObjectStreamer::changeSection(Section
, Subsection
);
79 Asm
.registerSymbol(*Section
->getBeginSymbol());
82 void MCWasmStreamer::emitWeakReference(MCSymbol
*Alias
,
83 const MCSymbol
*Symbol
) {
84 getAssembler().registerSymbol(*Symbol
);
85 const MCExpr
*Value
= MCSymbolRefExpr::create(
86 Symbol
, MCSymbolRefExpr::VK_WEAKREF
, getContext());
87 Alias
->setVariableValue(Value
);
90 bool MCWasmStreamer::emitSymbolAttribute(MCSymbol
*S
, MCSymbolAttr Attribute
) {
91 assert(Attribute
!= MCSA_IndirectSymbol
&& "indirect symbols not supported");
93 auto *Symbol
= cast
<MCSymbolWasm
>(S
);
95 // Adding a symbol attribute always introduces the symbol; note that an
96 // important side effect of calling registerSymbol here is to register the
97 // symbol with the assembler.
98 getAssembler().registerSymbol(*Symbol
);
101 case MCSA_LazyReference
:
103 case MCSA_SymbolResolver
:
104 case MCSA_PrivateExtern
:
105 case MCSA_WeakDefinition
:
106 case MCSA_WeakDefAutoPrivate
:
108 case MCSA_IndirectSymbol
:
114 Symbol
->setHidden(true);
118 case MCSA_WeakReference
:
119 Symbol
->setWeak(true);
120 Symbol
->setExternal(true);
124 Symbol
->setExternal(true);
127 case MCSA_ELF_TypeFunction
:
128 Symbol
->setType(wasm::WASM_SYMBOL_TYPE_FUNCTION
);
131 case MCSA_ELF_TypeTLS
:
135 case MCSA_ELF_TypeObject
:
139 case MCSA_NoDeadStrip
:
140 Symbol
->setNoStrip();
144 // unrecognized directive
145 llvm_unreachable("unexpected MCSymbolAttr");
152 void MCWasmStreamer::emitCommonSymbol(MCSymbol
*S
, uint64_t Size
,
153 Align ByteAlignment
) {
154 llvm_unreachable("Common symbols are not yet implemented for Wasm");
157 void MCWasmStreamer::emitELFSize(MCSymbol
*Symbol
, const MCExpr
*Value
) {
158 cast
<MCSymbolWasm
>(Symbol
)->setSize(Value
);
161 void MCWasmStreamer::emitLocalCommonSymbol(MCSymbol
*S
, uint64_t Size
,
162 Align ByteAlignment
) {
163 llvm_unreachable("Local common symbols are not yet implemented for Wasm");
166 void MCWasmStreamer::emitIdent(StringRef IdentString
) {
167 // TODO(sbc): Add the ident section once we support mergable strings
168 // sections in the object format
171 void MCWasmStreamer::emitInstToFragment(const MCInst
&Inst
,
172 const MCSubtargetInfo
&STI
) {
173 this->MCObjectStreamer::emitInstToFragment(Inst
, STI
);
174 MCRelaxableFragment
&F
= *cast
<MCRelaxableFragment
>(getCurrentFragment());
176 for (auto &Fixup
: F
.getFixups())
177 fixSymbolsInTLSFixups(Fixup
.getValue());
180 void MCWasmStreamer::emitInstToData(const MCInst
&Inst
,
181 const MCSubtargetInfo
&STI
) {
182 MCAssembler
&Assembler
= getAssembler();
183 SmallVector
<MCFixup
, 4> Fixups
;
184 SmallString
<256> Code
;
185 Assembler
.getEmitter().encodeInstruction(Inst
, Code
, Fixups
, STI
);
187 for (auto &Fixup
: Fixups
)
188 fixSymbolsInTLSFixups(Fixup
.getValue());
190 // Append the encoded instruction to the current data fragment (or create a
191 // new such fragment if the current fragment is not a data fragment).
192 MCDataFragment
*DF
= getOrCreateDataFragment();
194 // Add the fixups and data.
195 for (unsigned I
= 0, E
= Fixups
.size(); I
!= E
; ++I
) {
196 Fixups
[I
].setOffset(Fixups
[I
].getOffset() + DF
->getContents().size());
197 DF
->getFixups().push_back(Fixups
[I
]);
199 DF
->setHasInstructions(STI
);
200 DF
->getContents().append(Code
.begin(), Code
.end());
203 void MCWasmStreamer::finishImpl() {
206 this->MCObjectStreamer::finishImpl();
209 void MCWasmStreamer::fixSymbolsInTLSFixups(const MCExpr
*expr
) {
210 switch (expr
->getKind()) {
212 case MCExpr::Constant
:
215 case MCExpr::Binary
: {
216 const MCBinaryExpr
*be
= cast
<MCBinaryExpr
>(expr
);
217 fixSymbolsInTLSFixups(be
->getLHS());
218 fixSymbolsInTLSFixups(be
->getRHS());
222 case MCExpr::SymbolRef
: {
223 const MCSymbolRefExpr
&symRef
= *cast
<MCSymbolRefExpr
>(expr
);
224 switch (symRef
.getKind()) {
225 case MCSymbolRefExpr::VK_WASM_TLSREL
:
226 case MCSymbolRefExpr::VK_WASM_GOT_TLS
:
227 getAssembler().registerSymbol(symRef
.getSymbol());
228 cast
<MCSymbolWasm
>(symRef
.getSymbol()).setTLS();
237 fixSymbolsInTLSFixups(cast
<MCUnaryExpr
>(expr
)->getSubExpr());
242 void MCWasmStreamer::emitThumbFunc(MCSymbol
*Func
) {
243 llvm_unreachable("Generic Wasm doesn't support this directive");
246 void MCWasmStreamer::emitSymbolDesc(MCSymbol
*Symbol
, unsigned DescValue
) {
247 llvm_unreachable("Wasm doesn't support this directive");
250 void MCWasmStreamer::emitZerofill(MCSection
*Section
, MCSymbol
*Symbol
,
251 uint64_t Size
, Align ByteAlignment
,
253 llvm_unreachable("Wasm doesn't support this directive");
256 void MCWasmStreamer::emitTBSSSymbol(MCSection
*Section
, MCSymbol
*Symbol
,
257 uint64_t Size
, Align ByteAlignment
) {
258 llvm_unreachable("Wasm doesn't support this directive");
261 MCStreamer
*llvm::createWasmStreamer(MCContext
&Context
,
262 std::unique_ptr
<MCAsmBackend
> &&MAB
,
263 std::unique_ptr
<MCObjectWriter
> &&OW
,
264 std::unique_ptr
<MCCodeEmitter
> &&CE
) {
266 new MCWasmStreamer(Context
, std::move(MAB
), std::move(OW
), std::move(CE
));