blob: f1733d49fa37f252dfde367cfcc7fd4f734a6d46 [file] [log] [blame]
Dan Gohman18eafb62017-02-22 01:23:18 +00001//===- lib/MC/WasmObjectWriter.cpp - Wasm File Writer ---------------------===//
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 implements Wasm object file writer information.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/ADT/STLExtras.h"
15#include "llvm/ADT/SmallPtrSet.h"
Zachary Turner264b5d92017-06-07 03:48:56 +000016#include "llvm/BinaryFormat/Wasm.h"
Nico Weber432a3882018-04-30 14:59:11 +000017#include "llvm/Config/llvm-config.h"
Dan Gohman18eafb62017-02-22 01:23:18 +000018#include "llvm/MC/MCAsmBackend.h"
Dan Gohman18eafb62017-02-22 01:23:18 +000019#include "llvm/MC/MCAsmLayout.h"
20#include "llvm/MC/MCAssembler.h"
21#include "llvm/MC/MCContext.h"
22#include "llvm/MC/MCExpr.h"
23#include "llvm/MC/MCFixupKindInfo.h"
Dan Gohman18eafb62017-02-22 01:23:18 +000024#include "llvm/MC/MCObjectWriter.h"
25#include "llvm/MC/MCSectionWasm.h"
26#include "llvm/MC/MCSymbolWasm.h"
27#include "llvm/MC/MCValue.h"
28#include "llvm/MC/MCWasmObjectWriter.h"
Dan Gohmand934cb82017-02-24 23:18:00 +000029#include "llvm/Support/Casting.h"
Dan Gohman18eafb62017-02-22 01:23:18 +000030#include "llvm/Support/Debug.h"
Dan Gohman18eafb62017-02-22 01:23:18 +000031#include "llvm/Support/ErrorHandling.h"
Dan Gohmand934cb82017-02-24 23:18:00 +000032#include "llvm/Support/LEB128.h"
Dan Gohman18eafb62017-02-22 01:23:18 +000033#include "llvm/Support/StringSaver.h"
34#include <vector>
35
36using namespace llvm;
37
Sam Clegg5e3d33a2017-07-07 02:01:29 +000038#define DEBUG_TYPE "mc"
Dan Gohman18eafb62017-02-22 01:23:18 +000039
Sam Cleggd1f09102018-05-02 00:10:28 +000040#if !defined(NDEBUG)
Sam Clegga165f2d2018-04-30 19:40:57 +000041static std::string toString(wasm::WasmSymbolType type) {
42 switch (type) {
43 case wasm::WASM_SYMBOL_TYPE_FUNCTION:
44 return "WASM_SYMBOL_TYPE_FUNCTION";
45 case wasm::WASM_SYMBOL_TYPE_GLOBAL:
46 return "WASM_SYMBOL_TYPE_GLOBAL";
47 case wasm::WASM_SYMBOL_TYPE_DATA:
48 return "WASM_SYMBOL_TYPE_DATA";
49 case wasm::WASM_SYMBOL_TYPE_SECTION:
50 return "WASM_SYMBOL_TYPE_SECTION";
51 }
Florian Hahnba4d85e2018-05-01 11:18:31 +000052 llvm_unreachable("unknown symbol type");
Sam Clegga165f2d2018-04-30 19:40:57 +000053}
Sam Cleggd1f09102018-05-02 00:10:28 +000054#endif
Sam Clegga165f2d2018-04-30 19:40:57 +000055
56static std::string relocTypetoString(uint32_t type) {
57 switch (type) {
58#define WASM_RELOC(NAME, VALUE) case VALUE: return #NAME;
59#include "llvm/BinaryFormat/WasmRelocs.def"
60#undef WASM_RELOC
61 default:
62 llvm_unreachable("uknown reloc type");
63 }
64}
65
Dan Gohman18eafb62017-02-22 01:23:18 +000066namespace {
Sam Clegg9e15f352017-06-03 02:01:24 +000067
Sam Clegg30e1bbc2018-01-19 18:57:01 +000068// Went we ceate the indirect function table we start at 1, so that there is
69// and emtpy slot at 0 and therefore calling a null function pointer will trap.
70static const uint32_t kInitialTableOffset = 1;
71
Dan Gohmand934cb82017-02-24 23:18:00 +000072// For patching purposes, we need to remember where each section starts, both
73// for patching up the section size field, and for patching up references to
74// locations within the section.
75struct SectionBookkeeping {
76 // Where the size of the section is written.
77 uint64_t SizeOffset;
Sam Clegg6a31a0d2018-04-26 19:27:28 +000078 // Where the section header ends (without custom section name).
79 uint64_t PayloadOffset;
80 // Where the contents of the section starts.
Dan Gohmand934cb82017-02-24 23:18:00 +000081 uint64_t ContentsOffset;
Sam Clegg6f08c842018-04-24 18:11:36 +000082 uint32_t Index;
Dan Gohmand934cb82017-02-24 23:18:00 +000083};
84
Sam Clegg9e15f352017-06-03 02:01:24 +000085// The signature of a wasm function, in a struct capable of being used as a
86// DenseMap key.
87struct WasmFunctionType {
88 // Support empty and tombstone instances, needed by DenseMap.
89 enum { Plain, Empty, Tombstone } State;
90
91 // The return types of the function.
92 SmallVector<wasm::ValType, 1> Returns;
93
94 // The parameter types of the function.
95 SmallVector<wasm::ValType, 4> Params;
96
97 WasmFunctionType() : State(Plain) {}
98
99 bool operator==(const WasmFunctionType &Other) const {
100 return State == Other.State && Returns == Other.Returns &&
101 Params == Other.Params;
102 }
103};
104
105// Traits for using WasmFunctionType in a DenseMap.
106struct WasmFunctionTypeDenseMapInfo {
107 static WasmFunctionType getEmptyKey() {
108 WasmFunctionType FuncTy;
109 FuncTy.State = WasmFunctionType::Empty;
110 return FuncTy;
111 }
112 static WasmFunctionType getTombstoneKey() {
113 WasmFunctionType FuncTy;
114 FuncTy.State = WasmFunctionType::Tombstone;
115 return FuncTy;
116 }
117 static unsigned getHashValue(const WasmFunctionType &FuncTy) {
118 uintptr_t Value = FuncTy.State;
119 for (wasm::ValType Ret : FuncTy.Returns)
120 Value += DenseMapInfo<int32_t>::getHashValue(int32_t(Ret));
121 for (wasm::ValType Param : FuncTy.Params)
122 Value += DenseMapInfo<int32_t>::getHashValue(int32_t(Param));
123 return Value;
124 }
125 static bool isEqual(const WasmFunctionType &LHS,
126 const WasmFunctionType &RHS) {
127 return LHS == RHS;
128 }
129};
130
Sam Clegg7c395942017-09-14 23:07:53 +0000131// A wasm data segment. A wasm binary contains only a single data section
132// but that can contain many segments, each with their own virtual location
133// in memory. Each MCSection data created by llvm is modeled as its own
134// wasm data segment.
135struct WasmDataSegment {
136 MCSectionWasm *Section;
Sam Cleggd95ed952017-09-20 19:03:35 +0000137 StringRef Name;
Sam Clegg7c395942017-09-14 23:07:53 +0000138 uint32_t Offset;
Sam Clegg63ebb812017-09-29 16:50:08 +0000139 uint32_t Alignment;
140 uint32_t Flags;
Sam Clegg7c395942017-09-14 23:07:53 +0000141 SmallVector<char, 4> Data;
142};
143
Sam Clegg9e15f352017-06-03 02:01:24 +0000144// A wasm function to be written into the function section.
145struct WasmFunction {
146 int32_t Type;
147 const MCSymbolWasm *Sym;
148};
149
Sam Clegg9e15f352017-06-03 02:01:24 +0000150// A wasm global to be written into the global section.
151struct WasmGlobal {
Sam Clegg6e7f1822018-01-31 19:50:14 +0000152 wasm::WasmGlobalType Type;
Sam Clegg9e15f352017-06-03 02:01:24 +0000153 uint64_t InitialValue;
Sam Clegg9e15f352017-06-03 02:01:24 +0000154};
155
Sam Cleggea7cace2018-01-09 23:43:14 +0000156// Information about a single item which is part of a COMDAT. For each data
157// segment or function which is in the COMDAT, there is a corresponding
158// WasmComdatEntry.
159struct WasmComdatEntry {
160 unsigned Kind;
161 uint32_t Index;
162};
163
Sam Clegg6dc65e92017-06-06 16:38:59 +0000164// Information about a single relocation.
165struct WasmRelocationEntry {
Sam Cleggfe6414b2017-06-21 23:46:41 +0000166 uint64_t Offset; // Where is the relocation.
167 const MCSymbolWasm *Symbol; // The symbol to relocate with.
168 int64_t Addend; // A value to add to the symbol.
169 unsigned Type; // The type of the relocation.
170 const MCSectionWasm *FixupSection;// The section the relocation is targeting.
Sam Clegg6dc65e92017-06-06 16:38:59 +0000171
172 WasmRelocationEntry(uint64_t Offset, const MCSymbolWasm *Symbol,
173 int64_t Addend, unsigned Type,
Sam Cleggfe6414b2017-06-21 23:46:41 +0000174 const MCSectionWasm *FixupSection)
Sam Clegg6dc65e92017-06-06 16:38:59 +0000175 : Offset(Offset), Symbol(Symbol), Addend(Addend), Type(Type),
176 FixupSection(FixupSection) {}
177
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000178 bool hasAddend() const {
179 switch (Type) {
Sam Clegg13a2e892017-09-01 17:32:01 +0000180 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_LEB:
181 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_SLEB:
182 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_I32:
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000183 case wasm::R_WEBASSEMBLY_FUNCTION_OFFSET_I32:
184 case wasm::R_WEBASSEMBLY_SECTION_OFFSET_I32:
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000185 return true;
186 default:
187 return false;
188 }
189 }
190
Sam Clegg6dc65e92017-06-06 16:38:59 +0000191 void print(raw_ostream &Out) const {
Sam Clegga165f2d2018-04-30 19:40:57 +0000192 Out << relocTypetoString(Type)
193 << " Off=" << Offset << ", Sym=" << *Symbol << ", Addend=" << Addend
Sam Clegg759631c2017-09-15 20:54:59 +0000194 << ", FixupSection=" << FixupSection->getSectionName();
Sam Clegg6dc65e92017-06-06 16:38:59 +0000195 }
Sam Cleggb7787fd2017-06-20 04:04:59 +0000196
Aaron Ballman615eb472017-10-15 14:32:27 +0000197#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Sam Cleggb7787fd2017-06-20 04:04:59 +0000198 LLVM_DUMP_METHOD void dump() const { print(dbgs()); }
199#endif
Sam Clegg6dc65e92017-06-06 16:38:59 +0000200};
201
Sam Clegg25d8e682018-05-08 00:08:21 +0000202static const uint32_t INVALID_INDEX = -1;
203
Sam Cleggcfd44a22018-04-05 17:01:39 +0000204struct WasmCustomSection {
Sam Cleggcfd44a22018-04-05 17:01:39 +0000205
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000206 StringRef Name;
207 MCSectionWasm *Section;
208
209 uint32_t OutputContentsOffset;
210 uint32_t OutputIndex;
211
212 WasmCustomSection(StringRef Name, MCSectionWasm *Section)
213 : Name(Name), Section(Section), OutputContentsOffset(0),
214 OutputIndex(INVALID_INDEX) {}
Sam Cleggcfd44a22018-04-05 17:01:39 +0000215};
216
Sam Clegg1fb8daa2017-06-20 05:05:10 +0000217#if !defined(NDEBUG)
Sam Clegg7f055de2017-06-20 04:47:58 +0000218raw_ostream &operator<<(raw_ostream &OS, const WasmRelocationEntry &Rel) {
Sam Cleggb7787fd2017-06-20 04:04:59 +0000219 Rel.print(OS);
220 return OS;
221}
Sam Clegg1fb8daa2017-06-20 05:05:10 +0000222#endif
Sam Cleggb7787fd2017-06-20 04:04:59 +0000223
Dan Gohman18eafb62017-02-22 01:23:18 +0000224class WasmObjectWriter : public MCObjectWriter {
Dan Gohman18eafb62017-02-22 01:23:18 +0000225 /// The target specific Wasm writer instance.
226 std::unique_ptr<MCWasmObjectTargetWriter> TargetObjectWriter;
227
Dan Gohmand934cb82017-02-24 23:18:00 +0000228 // Relocations for fixing up references in the code section.
229 std::vector<WasmRelocationEntry> CodeRelocations;
Sam Clegg6f08c842018-04-24 18:11:36 +0000230 uint32_t CodeSectionIndex;
Dan Gohmand934cb82017-02-24 23:18:00 +0000231
232 // Relocations for fixing up references in the data section.
233 std::vector<WasmRelocationEntry> DataRelocations;
Sam Clegg6f08c842018-04-24 18:11:36 +0000234 uint32_t DataSectionIndex;
Dan Gohmand934cb82017-02-24 23:18:00 +0000235
Dan Gohmand934cb82017-02-24 23:18:00 +0000236 // Index values to use for fixing up call_indirect type indices.
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000237 // Maps function symbols to the index of the type of the function
238 DenseMap<const MCSymbolWasm *, uint32_t> TypeIndices;
Sam Cleggd99f6072017-06-12 23:52:44 +0000239 // Maps function symbols to the table element index space. Used
240 // for TABLE_INDEX relocation types (i.e. address taken functions).
Sam Cleggf9edbe92018-01-31 19:28:47 +0000241 DenseMap<const MCSymbolWasm *, uint32_t> TableIndices;
Sam Clegga165f2d2018-04-30 19:40:57 +0000242 // Maps function/global symbols to the function/global/section index space.
Sam Clegg6c899ba2018-02-23 05:08:34 +0000243 DenseMap<const MCSymbolWasm *, uint32_t> WasmIndices;
244 // Maps data symbols to the Wasm segment and offset/size with the segment.
245 DenseMap<const MCSymbolWasm *, wasm::WasmDataReference> DataLocations;
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000246
247 // Stores output data (index, relocations, content offset) for custom
248 // section.
249 std::vector<WasmCustomSection> CustomSections;
250 // Relocations for fixing up references in the custom sections.
251 DenseMap<const MCSectionWasm *, std::vector<WasmRelocationEntry>>
252 CustomSectionsRelocations;
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000253
254 DenseMap<WasmFunctionType, int32_t, WasmFunctionTypeDenseMapInfo>
255 FunctionTypeIndices;
Sam Clegg5e3d33a2017-07-07 02:01:29 +0000256 SmallVector<WasmFunctionType, 4> FunctionTypes;
Sam Clegg7c395942017-09-14 23:07:53 +0000257 SmallVector<WasmGlobal, 4> Globals;
Sam Clegg6c899ba2018-02-23 05:08:34 +0000258 SmallVector<WasmDataSegment, 4> DataSegments;
Sam Clegg9f3fe422018-01-17 19:28:43 +0000259 unsigned NumFunctionImports = 0;
Sam Clegg7c395942017-09-14 23:07:53 +0000260 unsigned NumGlobalImports = 0;
Chandler Carruth7e1c3342018-04-24 20:30:56 +0000261 uint32_t SectionCount = 0;
Dan Gohmand934cb82017-02-24 23:18:00 +0000262
Dan Gohman18eafb62017-02-22 01:23:18 +0000263 // TargetObjectWriter wrappers.
264 bool is64Bit() const { return TargetObjectWriter->is64Bit(); }
Sam Cleggae03c1e72017-06-13 18:51:50 +0000265 unsigned getRelocType(const MCValue &Target, const MCFixup &Fixup) const {
266 return TargetObjectWriter->getRelocType(Target, Fixup);
Dan Gohman18eafb62017-02-22 01:23:18 +0000267 }
268
Sam Clegg2322a932018-04-23 19:16:19 +0000269 void startSection(SectionBookkeeping &Section, unsigned SectionId);
270 void startCustomSection(SectionBookkeeping &Section, StringRef Name);
Dan Gohmand934cb82017-02-24 23:18:00 +0000271 void endSection(SectionBookkeeping &Section);
272
Dan Gohman18eafb62017-02-22 01:23:18 +0000273public:
Lang Hames1301a872017-10-10 01:15:10 +0000274 WasmObjectWriter(std::unique_ptr<MCWasmObjectTargetWriter> MOTW,
275 raw_pwrite_stream &OS)
276 : MCObjectWriter(OS, /*IsLittleEndian=*/true),
277 TargetObjectWriter(std::move(MOTW)) {}
Dan Gohman18eafb62017-02-22 01:23:18 +0000278
Dan Gohman18eafb62017-02-22 01:23:18 +0000279 ~WasmObjectWriter() override;
280
Dan Gohman0917c9e2018-01-15 17:06:23 +0000281private:
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000282 void reset() override {
283 CodeRelocations.clear();
284 DataRelocations.clear();
285 TypeIndices.clear();
Sam Clegg6c899ba2018-02-23 05:08:34 +0000286 WasmIndices.clear();
Sam Cleggf9edbe92018-01-31 19:28:47 +0000287 TableIndices.clear();
Sam Clegg6c899ba2018-02-23 05:08:34 +0000288 DataLocations.clear();
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000289 CustomSectionsRelocations.clear();
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000290 FunctionTypeIndices.clear();
Sam Clegg5e3d33a2017-07-07 02:01:29 +0000291 FunctionTypes.clear();
Sam Clegg7c395942017-09-14 23:07:53 +0000292 Globals.clear();
Sam Clegg6c899ba2018-02-23 05:08:34 +0000293 DataSegments.clear();
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000294 MCObjectWriter::reset();
Sam Clegg9f3fe422018-01-17 19:28:43 +0000295 NumFunctionImports = 0;
Sam Clegg7c395942017-09-14 23:07:53 +0000296 NumGlobalImports = 0;
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000297 }
298
Dan Gohman18eafb62017-02-22 01:23:18 +0000299 void writeHeader(const MCAssembler &Asm);
300
301 void recordRelocation(MCAssembler &Asm, const MCAsmLayout &Layout,
302 const MCFragment *Fragment, const MCFixup &Fixup,
Rafael Espindolaceecfe5b2017-07-11 23:56:10 +0000303 MCValue Target, uint64_t &FixedValue) override;
Dan Gohman18eafb62017-02-22 01:23:18 +0000304
305 void executePostLayoutBinding(MCAssembler &Asm,
306 const MCAsmLayout &Layout) override;
307
308 void writeObject(MCAssembler &Asm, const MCAsmLayout &Layout) override;
Sam Clegg9e15f352017-06-03 02:01:24 +0000309
Sam Cleggb7787fd2017-06-20 04:04:59 +0000310 void writeString(const StringRef Str) {
311 encodeULEB128(Str.size(), getStream());
312 writeBytes(Str);
313 }
314
Sam Clegg9e15f352017-06-03 02:01:24 +0000315 void writeValueType(wasm::ValType Ty) {
Sam Clegg03e101f2018-03-01 18:06:21 +0000316 write8(static_cast<uint8_t>(Ty));
Sam Clegg9e15f352017-06-03 02:01:24 +0000317 }
318
Sam Clegg457fb0b2017-09-15 19:50:44 +0000319 void writeTypeSection(ArrayRef<WasmFunctionType> FunctionTypes);
Sam Clegg8defa952018-02-12 22:41:29 +0000320 void writeImportSection(ArrayRef<wasm::WasmImport> Imports, uint32_t DataSize,
Sam Cleggf950b242017-12-11 23:03:38 +0000321 uint32_t NumElements);
Sam Clegg457fb0b2017-09-15 19:50:44 +0000322 void writeFunctionSection(ArrayRef<WasmFunction> Functions);
Sam Clegg7c395942017-09-14 23:07:53 +0000323 void writeGlobalSection();
Sam Clegg8defa952018-02-12 22:41:29 +0000324 void writeExportSection(ArrayRef<wasm::WasmExport> Exports);
Sam Clegg457fb0b2017-09-15 19:50:44 +0000325 void writeElemSection(ArrayRef<uint32_t> TableElems);
Sam Clegg9e15f352017-06-03 02:01:24 +0000326 void writeCodeSection(const MCAssembler &Asm, const MCAsmLayout &Layout,
Sam Clegg457fb0b2017-09-15 19:50:44 +0000327 ArrayRef<WasmFunction> Functions);
Sam Clegg6c899ba2018-02-23 05:08:34 +0000328 void writeDataSection();
Sam Clegg6f08c842018-04-24 18:11:36 +0000329 void writeRelocSection(uint32_t SectionIndex, StringRef Name,
330 ArrayRef<WasmRelocationEntry> Relocations);
Sam Clegg31a2c802017-09-20 21:17:04 +0000331 void writeLinkingMetaDataSection(
Sam Clegg86b4a092018-02-27 23:57:37 +0000332 ArrayRef<wasm::WasmSymbolInfo> SymbolInfos,
Sam Cleggea7cace2018-01-09 23:43:14 +0000333 ArrayRef<std::pair<uint16_t, uint32_t>> InitFuncs,
Sam Clegg6c899ba2018-02-23 05:08:34 +0000334 const std::map<StringRef, std::vector<WasmComdatEntry>> &Comdats);
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000335 void writeCustomSections(const MCAssembler &Asm, const MCAsmLayout &Layout);
336 void writeCustomRelocSections();
337 void
338 updateCustomSectionRelocations(const SmallVector<WasmFunction, 4> &Functions,
339 const MCAsmLayout &Layout);
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000340
Sam Clegg7c395942017-09-14 23:07:53 +0000341 uint32_t getProvisionalValue(const WasmRelocationEntry &RelEntry);
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000342 void applyRelocations(ArrayRef<WasmRelocationEntry> Relocations,
343 uint64_t ContentsOffset);
344
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000345 uint32_t getRelocationIndexValue(const WasmRelocationEntry &RelEntry);
Sam Clegg6f08c842018-04-24 18:11:36 +0000346 uint32_t getFunctionType(const MCSymbolWasm &Symbol);
347 uint32_t registerFunctionType(const MCSymbolWasm &Symbol);
Dan Gohman18eafb62017-02-22 01:23:18 +0000348};
Sam Clegg9e15f352017-06-03 02:01:24 +0000349
Dan Gohman18eafb62017-02-22 01:23:18 +0000350} // end anonymous namespace
351
352WasmObjectWriter::~WasmObjectWriter() {}
353
Dan Gohmand934cb82017-02-24 23:18:00 +0000354// Write out a section header and a patchable section size field.
355void WasmObjectWriter::startSection(SectionBookkeeping &Section,
Sam Clegg2322a932018-04-23 19:16:19 +0000356 unsigned SectionId) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000357 LLVM_DEBUG(dbgs() << "startSection " << SectionId << "\n");
Sam Clegg03e101f2018-03-01 18:06:21 +0000358 write8(SectionId);
Dan Gohmand934cb82017-02-24 23:18:00 +0000359
360 Section.SizeOffset = getStream().tell();
361
362 // The section size. We don't know the size yet, so reserve enough space
363 // for any 32-bit value; we'll patch it later.
364 encodeULEB128(UINT32_MAX, getStream());
365
366 // The position where the section starts, for measuring its size.
367 Section.ContentsOffset = getStream().tell();
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000368 Section.PayloadOffset = getStream().tell();
Sam Clegg6f08c842018-04-24 18:11:36 +0000369 Section.Index = SectionCount++;
Sam Clegg2322a932018-04-23 19:16:19 +0000370}
Dan Gohmand934cb82017-02-24 23:18:00 +0000371
Sam Clegg2322a932018-04-23 19:16:19 +0000372void WasmObjectWriter::startCustomSection(SectionBookkeeping &Section,
373 StringRef Name) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000374 LLVM_DEBUG(dbgs() << "startCustomSection " << Name << "\n");
Sam Clegg2322a932018-04-23 19:16:19 +0000375 startSection(Section, wasm::WASM_SEC_CUSTOM);
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000376
377 // The position where the section header ends, for measuring its size.
378 Section.PayloadOffset = getStream().tell();
379
Dan Gohmand934cb82017-02-24 23:18:00 +0000380 // Custom sections in wasm also have a string identifier.
Sam Clegg2322a932018-04-23 19:16:19 +0000381 writeString(Name);
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000382
383 // The position where the custom section starts.
384 Section.ContentsOffset = getStream().tell();
Dan Gohmand934cb82017-02-24 23:18:00 +0000385}
386
387// Now that the section is complete and we know how big it is, patch up the
388// section size field at the start of the section.
389void WasmObjectWriter::endSection(SectionBookkeeping &Section) {
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000390 uint64_t Size = getStream().tell() - Section.PayloadOffset;
Dan Gohmand934cb82017-02-24 23:18:00 +0000391 if (uint32_t(Size) != Size)
392 report_fatal_error("section size does not fit in a uint32_t");
393
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000394 LLVM_DEBUG(dbgs() << "endSection size=" << Size << "\n");
Dan Gohmand934cb82017-02-24 23:18:00 +0000395
396 // Write the final section size to the payload_len field, which follows
397 // the section id byte.
398 uint8_t Buffer[16];
Sam Clegg66a99e42017-09-15 20:34:47 +0000399 unsigned SizeLen = encodeULEB128(Size, Buffer, 5);
Dan Gohmand934cb82017-02-24 23:18:00 +0000400 assert(SizeLen == 5);
401 getStream().pwrite((char *)Buffer, SizeLen, Section.SizeOffset);
402}
403
Dan Gohman18eafb62017-02-22 01:23:18 +0000404// Emit the Wasm header.
405void WasmObjectWriter::writeHeader(const MCAssembler &Asm) {
Dan Gohman7ea5adf2017-02-22 18:50:20 +0000406 writeBytes(StringRef(wasm::WasmMagic, sizeof(wasm::WasmMagic)));
407 writeLE32(wasm::WasmVersion);
Dan Gohman18eafb62017-02-22 01:23:18 +0000408}
409
410void WasmObjectWriter::executePostLayoutBinding(MCAssembler &Asm,
411 const MCAsmLayout &Layout) {
412}
413
414void WasmObjectWriter::recordRelocation(MCAssembler &Asm,
415 const MCAsmLayout &Layout,
416 const MCFragment *Fragment,
417 const MCFixup &Fixup, MCValue Target,
Rafael Espindolaceecfe5b2017-07-11 23:56:10 +0000418 uint64_t &FixedValue) {
419 MCAsmBackend &Backend = Asm.getBackend();
420 bool IsPCRel = Backend.getFixupKindInfo(Fixup.getKind()).Flags &
421 MCFixupKindInfo::FKF_IsPCRel;
Sam Cleggfe6414b2017-06-21 23:46:41 +0000422 const auto &FixupSection = cast<MCSectionWasm>(*Fragment->getParent());
Dan Gohmand934cb82017-02-24 23:18:00 +0000423 uint64_t C = Target.getConstant();
424 uint64_t FixupOffset = Layout.getFragmentOffset(Fragment) + Fixup.getOffset();
425 MCContext &Ctx = Asm.getContext();
426
Sam Cleggbafe6902017-12-15 00:17:10 +0000427 // The .init_array isn't translated as data, so don't do relocations in it.
428 if (FixupSection.getSectionName().startswith(".init_array"))
429 return;
430
Dan Gohmand934cb82017-02-24 23:18:00 +0000431 if (const MCSymbolRefExpr *RefB = Target.getSymB()) {
432 assert(RefB->getKind() == MCSymbolRefExpr::VK_None &&
433 "Should not have constructed this");
434
435 // Let A, B and C being the components of Target and R be the location of
436 // the fixup. If the fixup is not pcrel, we want to compute (A - B + C).
437 // If it is pcrel, we want to compute (A - B + C - R).
438
439 // In general, Wasm has no relocations for -B. It can only represent (A + C)
440 // or (A + C - R). If B = R + K and the relocation is not pcrel, we can
441 // replace B to implement it: (A - R - K + C)
442 if (IsPCRel) {
443 Ctx.reportError(
444 Fixup.getLoc(),
445 "No relocation available to represent this relative expression");
446 return;
447 }
448
449 const auto &SymB = cast<MCSymbolWasm>(RefB->getSymbol());
450
451 if (SymB.isUndefined()) {
452 Ctx.reportError(Fixup.getLoc(),
453 Twine("symbol '") + SymB.getName() +
454 "' can not be undefined in a subtraction expression");
455 return;
456 }
457
458 assert(!SymB.isAbsolute() && "Should have been folded");
459 const MCSection &SecB = SymB.getSection();
460 if (&SecB != &FixupSection) {
461 Ctx.reportError(Fixup.getLoc(),
462 "Cannot represent a difference across sections");
463 return;
464 }
465
466 uint64_t SymBOffset = Layout.getSymbolOffset(SymB);
467 uint64_t K = SymBOffset - FixupOffset;
468 IsPCRel = true;
469 C -= K;
470 }
471
472 // We either rejected the fixup or folded B into C at this point.
473 const MCSymbolRefExpr *RefA = Target.getSymA();
474 const auto *SymA = RefA ? cast<MCSymbolWasm>(&RefA->getSymbol()) : nullptr;
475
Dan Gohmand934cb82017-02-24 23:18:00 +0000476 if (SymA && SymA->isVariable()) {
477 const MCExpr *Expr = SymA->getVariableValue();
Sam Clegg6ad8f192017-07-11 02:21:57 +0000478 const auto *Inner = cast<MCSymbolRefExpr>(Expr);
479 if (Inner->getKind() == MCSymbolRefExpr::VK_WEAKREF)
480 llvm_unreachable("weakref used in reloc not yet implemented");
Dan Gohmand934cb82017-02-24 23:18:00 +0000481 }
482
483 // Put any constant offset in an addend. Offsets can be negative, and
484 // LLVM expects wrapping, in contrast to wasm's immediates which can't
485 // be negative and don't wrap.
486 FixedValue = 0;
487
Sam Clegg4d57fbd2018-05-02 23:11:38 +0000488 unsigned Type = getRelocType(Target, Fixup);
Sam Cleggae03c1e72017-06-13 18:51:50 +0000489 assert(!IsPCRel);
Sam Clegg9d24fb72017-06-16 23:59:10 +0000490 assert(SymA);
491
Sam Clegg4d57fbd2018-05-02 23:11:38 +0000492 // Absolute offset within a section or a function.
493 // Currently only supported for for metadata sections.
494 // See: test/MC/WebAssembly/blockaddress.ll
495 if (Type == wasm::R_WEBASSEMBLY_FUNCTION_OFFSET_I32 ||
496 Type == wasm::R_WEBASSEMBLY_SECTION_OFFSET_I32) {
497 if (!FixupSection.getKind().isMetadata())
498 report_fatal_error("relocations for function or section offsets are "
499 "only supported in metadata sections");
500
501 const MCSymbol *SectionSymbol = nullptr;
502 const MCSection &SecA = SymA->getSection();
503 if (SecA.getKind().isText())
504 SectionSymbol = SecA.begin()->getAtom();
505 else
506 SectionSymbol = SecA.getBeginSymbol();
507 if (!SectionSymbol)
508 report_fatal_error("section symbol is required for relocation");
509
510 C += Layout.getSymbolOffset(*SymA);
511 SymA = cast<MCSymbolWasm>(SectionSymbol);
512 }
513
514 // Relocation other than R_WEBASSEMBLY_TYPE_INDEX_LEB are required to be
515 // against a named symbol.
516 if (Type != wasm::R_WEBASSEMBLY_TYPE_INDEX_LEB) {
517 if (SymA->getName().empty())
518 report_fatal_error("relocations against un-named temporaries are not yet "
519 "supported by wasm");
520
521 SymA->setUsedInReloc();
522 }
Sam Cleggae03c1e72017-06-13 18:51:50 +0000523
Dan Gohmand934cb82017-02-24 23:18:00 +0000524 WasmRelocationEntry Rec(FixupOffset, SymA, C, Type, &FixupSection);
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000525 LLVM_DEBUG(dbgs() << "WasmReloc: " << Rec << "\n");
Dan Gohmand934cb82017-02-24 23:18:00 +0000526
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000527 if (FixupSection.isWasmData()) {
Dan Gohmand934cb82017-02-24 23:18:00 +0000528 DataRelocations.push_back(Rec);
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000529 } else if (FixupSection.getKind().isText()) {
Sam Clegg12fd3da2017-10-20 21:28:38 +0000530 CodeRelocations.push_back(Rec);
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000531 } else if (FixupSection.getKind().isMetadata()) {
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000532 CustomSectionsRelocations[&FixupSection].push_back(Rec);
533 } else {
Sam Clegg12fd3da2017-10-20 21:28:38 +0000534 llvm_unreachable("unexpected section type");
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000535 }
Dan Gohmand934cb82017-02-24 23:18:00 +0000536}
537
Dan Gohmand934cb82017-02-24 23:18:00 +0000538// Write X as an (unsigned) LEB value at offset Offset in Stream, padded
539// to allow patching.
540static void
541WritePatchableLEB(raw_pwrite_stream &Stream, uint32_t X, uint64_t Offset) {
542 uint8_t Buffer[5];
Sam Clegg66a99e42017-09-15 20:34:47 +0000543 unsigned SizeLen = encodeULEB128(X, Buffer, 5);
Dan Gohmand934cb82017-02-24 23:18:00 +0000544 assert(SizeLen == 5);
545 Stream.pwrite((char *)Buffer, SizeLen, Offset);
546}
547
548// Write X as an signed LEB value at offset Offset in Stream, padded
549// to allow patching.
550static void
551WritePatchableSLEB(raw_pwrite_stream &Stream, int32_t X, uint64_t Offset) {
552 uint8_t Buffer[5];
Sam Clegg66a99e42017-09-15 20:34:47 +0000553 unsigned SizeLen = encodeSLEB128(X, Buffer, 5);
Dan Gohmand934cb82017-02-24 23:18:00 +0000554 assert(SizeLen == 5);
555 Stream.pwrite((char *)Buffer, SizeLen, Offset);
556}
557
558// Write X as a plain integer value at offset Offset in Stream.
559static void WriteI32(raw_pwrite_stream &Stream, uint32_t X, uint64_t Offset) {
560 uint8_t Buffer[4];
561 support::endian::write32le(Buffer, X);
562 Stream.pwrite((char *)Buffer, sizeof(Buffer), Offset);
563}
564
Sam Cleggaff1c4d2017-09-15 19:22:01 +0000565static const MCSymbolWasm* ResolveSymbol(const MCSymbolWasm& Symbol) {
566 if (Symbol.isVariable()) {
567 const MCExpr *Expr = Symbol.getVariableValue();
568 auto *Inner = cast<MCSymbolRefExpr>(Expr);
569 return cast<MCSymbolWasm>(&Inner->getSymbol());
570 }
571 return &Symbol;
572}
573
Dan Gohmand934cb82017-02-24 23:18:00 +0000574// Compute a value to write into the code at the location covered
Sam Clegg60ec3032018-01-23 01:23:17 +0000575// by RelEntry. This value isn't used by the static linker; it just serves
576// to make the object format more readable and more likely to be directly
577// useable.
Sam Clegg7c395942017-09-14 23:07:53 +0000578uint32_t
579WasmObjectWriter::getProvisionalValue(const WasmRelocationEntry &RelEntry) {
Sam Clegg60ec3032018-01-23 01:23:17 +0000580 switch (RelEntry.Type) {
581 case wasm::R_WEBASSEMBLY_TABLE_INDEX_SLEB:
Sam Cleggf9edbe92018-01-31 19:28:47 +0000582 case wasm::R_WEBASSEMBLY_TABLE_INDEX_I32: {
583 // Provisional value is table address of the resolved symbol itself
584 const MCSymbolWasm *Sym = ResolveSymbol(*RelEntry.Symbol);
585 assert(Sym->isFunction());
586 return TableIndices[Sym];
587 }
Sam Clegg60ec3032018-01-23 01:23:17 +0000588 case wasm::R_WEBASSEMBLY_TYPE_INDEX_LEB:
Sam Clegg6c899ba2018-02-23 05:08:34 +0000589 // Provisional value is same as the index
Sam Clegg60ec3032018-01-23 01:23:17 +0000590 return getRelocationIndexValue(RelEntry);
Sam Clegg6c899ba2018-02-23 05:08:34 +0000591 case wasm::R_WEBASSEMBLY_FUNCTION_INDEX_LEB:
592 case wasm::R_WEBASSEMBLY_GLOBAL_INDEX_LEB:
593 // Provisional value is function/global Wasm index
594 if (!WasmIndices.count(RelEntry.Symbol))
595 report_fatal_error("symbol not found in wasm index space: " +
596 RelEntry.Symbol->getName());
597 return WasmIndices[RelEntry.Symbol];
Sam Clegg4d57fbd2018-05-02 23:11:38 +0000598 case wasm::R_WEBASSEMBLY_FUNCTION_OFFSET_I32:
599 case wasm::R_WEBASSEMBLY_SECTION_OFFSET_I32: {
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000600 const auto &Section =
601 static_cast<const MCSectionWasm &>(RelEntry.Symbol->getSection());
602 return Section.getSectionOffset() + RelEntry.Addend;
603 }
Sam Clegg60ec3032018-01-23 01:23:17 +0000604 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_LEB:
605 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_I32:
606 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_SLEB: {
Sam Cleggf9edbe92018-01-31 19:28:47 +0000607 // Provisional value is address of the global
Sam Clegg60ec3032018-01-23 01:23:17 +0000608 const MCSymbolWasm *Sym = ResolveSymbol(*RelEntry.Symbol);
609 // For undefined symbols, use zero
610 if (!Sym->isDefined())
611 return 0;
Sam Clegg6c899ba2018-02-23 05:08:34 +0000612 const wasm::WasmDataReference &Ref = DataLocations[Sym];
613 const WasmDataSegment &Segment = DataSegments[Ref.Segment];
Sam Clegg60ec3032018-01-23 01:23:17 +0000614 // Ignore overflow. LLVM allows address arithmetic to silently wrap.
Sam Clegg6c899ba2018-02-23 05:08:34 +0000615 return Segment.Offset + Ref.Offset + RelEntry.Addend;
Sam Clegg60ec3032018-01-23 01:23:17 +0000616 }
617 default:
618 llvm_unreachable("invalid relocation type");
619 }
Dan Gohmand934cb82017-02-24 23:18:00 +0000620}
621
Sam Clegg759631c2017-09-15 20:54:59 +0000622static void addData(SmallVectorImpl<char> &DataBytes,
Sam Clegg63ebb812017-09-29 16:50:08 +0000623 MCSectionWasm &DataSection) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000624 LLVM_DEBUG(errs() << "addData: " << DataSection.getSectionName() << "\n");
Sam Clegg759631c2017-09-15 20:54:59 +0000625
Sam Clegg63ebb812017-09-29 16:50:08 +0000626 DataBytes.resize(alignTo(DataBytes.size(), DataSection.getAlignment()));
627
Sam Clegg759631c2017-09-15 20:54:59 +0000628 for (const MCFragment &Frag : DataSection) {
629 if (Frag.hasInstructions())
630 report_fatal_error("only data supported in data sections");
631
632 if (auto *Align = dyn_cast<MCAlignFragment>(&Frag)) {
633 if (Align->getValueSize() != 1)
634 report_fatal_error("only byte values supported for alignment");
635 // If nops are requested, use zeros, as this is the data section.
636 uint8_t Value = Align->hasEmitNops() ? 0 : Align->getValue();
637 uint64_t Size = std::min<uint64_t>(alignTo(DataBytes.size(),
638 Align->getAlignment()),
639 DataBytes.size() +
640 Align->getMaxBytesToEmit());
641 DataBytes.resize(Size, Value);
642 } else if (auto *Fill = dyn_cast<MCFillFragment>(&Frag)) {
Rafael Espindolad707c372018-01-09 22:48:37 +0000643 int64_t Size;
644 if (!Fill->getSize().evaluateAsAbsolute(Size))
645 llvm_unreachable("The fill should be an assembler constant");
646 DataBytes.insert(DataBytes.end(), Size, Fill->getValue());
Sam Clegg759631c2017-09-15 20:54:59 +0000647 } else {
648 const auto &DataFrag = cast<MCDataFragment>(Frag);
649 const SmallVectorImpl<char> &Contents = DataFrag.getContents();
650
651 DataBytes.insert(DataBytes.end(), Contents.begin(), Contents.end());
652 }
653 }
654
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000655 LLVM_DEBUG(dbgs() << "addData -> " << DataBytes.size() << "\n");
Sam Clegg759631c2017-09-15 20:54:59 +0000656}
657
Sam Clegg60ec3032018-01-23 01:23:17 +0000658uint32_t
659WasmObjectWriter::getRelocationIndexValue(const WasmRelocationEntry &RelEntry) {
660 if (RelEntry.Type == wasm::R_WEBASSEMBLY_TYPE_INDEX_LEB) {
Sam Cleggb7787fd2017-06-20 04:04:59 +0000661 if (!TypeIndices.count(RelEntry.Symbol))
Sam Clegg5e3d33a2017-07-07 02:01:29 +0000662 report_fatal_error("symbol not found in type index space: " +
Sam Cleggb7787fd2017-06-20 04:04:59 +0000663 RelEntry.Symbol->getName());
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000664 return TypeIndices[RelEntry.Symbol];
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000665 }
Sam Clegg60ec3032018-01-23 01:23:17 +0000666
Sam Clegg25d8e682018-05-08 00:08:21 +0000667 return RelEntry.Symbol->getIndex();
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000668}
669
Dan Gohmand934cb82017-02-24 23:18:00 +0000670// Apply the portions of the relocation records that we can handle ourselves
671// directly.
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000672void WasmObjectWriter::applyRelocations(
673 ArrayRef<WasmRelocationEntry> Relocations, uint64_t ContentsOffset) {
674 raw_pwrite_stream &Stream = getStream();
Dan Gohmand934cb82017-02-24 23:18:00 +0000675 for (const WasmRelocationEntry &RelEntry : Relocations) {
676 uint64_t Offset = ContentsOffset +
677 RelEntry.FixupSection->getSectionOffset() +
678 RelEntry.Offset;
Dan Gohmand934cb82017-02-24 23:18:00 +0000679
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000680 LLVM_DEBUG(dbgs() << "applyRelocation: " << RelEntry << "\n");
Sam Clegg60ec3032018-01-23 01:23:17 +0000681 uint32_t Value = getProvisionalValue(RelEntry);
682
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000683 switch (RelEntry.Type) {
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000684 case wasm::R_WEBASSEMBLY_FUNCTION_INDEX_LEB:
Sam Clegg9d24fb72017-06-16 23:59:10 +0000685 case wasm::R_WEBASSEMBLY_TYPE_INDEX_LEB:
Sam Clegg60ec3032018-01-23 01:23:17 +0000686 case wasm::R_WEBASSEMBLY_GLOBAL_INDEX_LEB:
687 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_LEB:
Dan Gohmand934cb82017-02-24 23:18:00 +0000688 WritePatchableLEB(Stream, Value, Offset);
689 break;
Sam Clegg60ec3032018-01-23 01:23:17 +0000690 case wasm::R_WEBASSEMBLY_TABLE_INDEX_I32:
691 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_I32:
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000692 case wasm::R_WEBASSEMBLY_FUNCTION_OFFSET_I32:
693 case wasm::R_WEBASSEMBLY_SECTION_OFFSET_I32:
Dan Gohmand934cb82017-02-24 23:18:00 +0000694 WriteI32(Stream, Value, Offset);
695 break;
Sam Clegg60ec3032018-01-23 01:23:17 +0000696 case wasm::R_WEBASSEMBLY_TABLE_INDEX_SLEB:
697 case wasm::R_WEBASSEMBLY_MEMORY_ADDR_SLEB:
698 WritePatchableSLEB(Stream, Value, Offset);
699 break;
Dan Gohmand934cb82017-02-24 23:18:00 +0000700 default:
Sam Clegg9d24fb72017-06-16 23:59:10 +0000701 llvm_unreachable("invalid relocation type");
Dan Gohmand934cb82017-02-24 23:18:00 +0000702 }
703 }
Dan Gohman18eafb62017-02-22 01:23:18 +0000704}
705
Sam Clegg9e15f352017-06-03 02:01:24 +0000706void WasmObjectWriter::writeTypeSection(
Sam Clegg457fb0b2017-09-15 19:50:44 +0000707 ArrayRef<WasmFunctionType> FunctionTypes) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000708 if (FunctionTypes.empty())
709 return;
710
711 SectionBookkeeping Section;
712 startSection(Section, wasm::WASM_SEC_TYPE);
713
714 encodeULEB128(FunctionTypes.size(), getStream());
715
716 for (const WasmFunctionType &FuncTy : FunctionTypes) {
Sam Clegg03e101f2018-03-01 18:06:21 +0000717 write8(wasm::WASM_TYPE_FUNC);
Sam Clegg9e15f352017-06-03 02:01:24 +0000718 encodeULEB128(FuncTy.Params.size(), getStream());
719 for (wasm::ValType Ty : FuncTy.Params)
720 writeValueType(Ty);
721 encodeULEB128(FuncTy.Returns.size(), getStream());
722 for (wasm::ValType Ty : FuncTy.Returns)
723 writeValueType(Ty);
724 }
725
726 endSection(Section);
727}
728
Sam Clegg8defa952018-02-12 22:41:29 +0000729void WasmObjectWriter::writeImportSection(ArrayRef<wasm::WasmImport> Imports,
Sam Cleggf950b242017-12-11 23:03:38 +0000730 uint32_t DataSize,
731 uint32_t NumElements) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000732 if (Imports.empty())
733 return;
734
Sam Cleggf950b242017-12-11 23:03:38 +0000735 uint32_t NumPages = (DataSize + wasm::WasmPageSize - 1) / wasm::WasmPageSize;
736
Sam Clegg9e15f352017-06-03 02:01:24 +0000737 SectionBookkeeping Section;
738 startSection(Section, wasm::WASM_SEC_IMPORT);
739
740 encodeULEB128(Imports.size(), getStream());
Sam Clegg8defa952018-02-12 22:41:29 +0000741 for (const wasm::WasmImport &Import : Imports) {
742 writeString(Import.Module);
743 writeString(Import.Field);
Sam Clegg03e101f2018-03-01 18:06:21 +0000744 write8(Import.Kind);
Sam Clegg9e15f352017-06-03 02:01:24 +0000745
746 switch (Import.Kind) {
747 case wasm::WASM_EXTERNAL_FUNCTION:
Sam Clegg8defa952018-02-12 22:41:29 +0000748 encodeULEB128(Import.SigIndex, getStream());
Sam Clegg9e15f352017-06-03 02:01:24 +0000749 break;
750 case wasm::WASM_EXTERNAL_GLOBAL:
Sam Clegg03e101f2018-03-01 18:06:21 +0000751 write8(Import.Global.Type);
752 write8(Import.Global.Mutable ? 1 : 0);
Sam Clegg9e15f352017-06-03 02:01:24 +0000753 break;
Sam Cleggf950b242017-12-11 23:03:38 +0000754 case wasm::WASM_EXTERNAL_MEMORY:
755 encodeULEB128(0, getStream()); // flags
756 encodeULEB128(NumPages, getStream()); // initial
757 break;
758 case wasm::WASM_EXTERNAL_TABLE:
Sam Clegg03e101f2018-03-01 18:06:21 +0000759 write8(Import.Table.ElemType);
Sam Cleggf950b242017-12-11 23:03:38 +0000760 encodeULEB128(0, getStream()); // flags
761 encodeULEB128(NumElements, getStream()); // initial
762 break;
Sam Clegg9e15f352017-06-03 02:01:24 +0000763 default:
764 llvm_unreachable("unsupported import kind");
765 }
766 }
767
768 endSection(Section);
769}
770
Sam Clegg457fb0b2017-09-15 19:50:44 +0000771void WasmObjectWriter::writeFunctionSection(ArrayRef<WasmFunction> Functions) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000772 if (Functions.empty())
773 return;
774
775 SectionBookkeeping Section;
776 startSection(Section, wasm::WASM_SEC_FUNCTION);
777
778 encodeULEB128(Functions.size(), getStream());
779 for (const WasmFunction &Func : Functions)
780 encodeULEB128(Func.Type, getStream());
781
782 endSection(Section);
783}
784
Sam Clegg7c395942017-09-14 23:07:53 +0000785void WasmObjectWriter::writeGlobalSection() {
Sam Clegg9e15f352017-06-03 02:01:24 +0000786 if (Globals.empty())
787 return;
788
789 SectionBookkeeping Section;
790 startSection(Section, wasm::WASM_SEC_GLOBAL);
791
792 encodeULEB128(Globals.size(), getStream());
793 for (const WasmGlobal &Global : Globals) {
Sam Clegg6e7f1822018-01-31 19:50:14 +0000794 writeValueType(static_cast<wasm::ValType>(Global.Type.Type));
795 write8(Global.Type.Mutable);
Sam Clegg9e15f352017-06-03 02:01:24 +0000796
Sam Clegg6e7f1822018-01-31 19:50:14 +0000797 write8(wasm::WASM_OPCODE_I32_CONST);
798 encodeSLEB128(Global.InitialValue, getStream());
Sam Clegg9e15f352017-06-03 02:01:24 +0000799 write8(wasm::WASM_OPCODE_END);
800 }
801
802 endSection(Section);
803}
804
Sam Clegg8defa952018-02-12 22:41:29 +0000805void WasmObjectWriter::writeExportSection(ArrayRef<wasm::WasmExport> Exports) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000806 if (Exports.empty())
807 return;
808
809 SectionBookkeeping Section;
810 startSection(Section, wasm::WASM_SEC_EXPORT);
811
812 encodeULEB128(Exports.size(), getStream());
Sam Clegg8defa952018-02-12 22:41:29 +0000813 for (const wasm::WasmExport &Export : Exports) {
814 writeString(Export.Name);
Sam Clegg03e101f2018-03-01 18:06:21 +0000815 write8(Export.Kind);
Sam Clegg9e15f352017-06-03 02:01:24 +0000816 encodeULEB128(Export.Index, getStream());
817 }
818
819 endSection(Section);
820}
821
Sam Clegg457fb0b2017-09-15 19:50:44 +0000822void WasmObjectWriter::writeElemSection(ArrayRef<uint32_t> TableElems) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000823 if (TableElems.empty())
824 return;
825
826 SectionBookkeeping Section;
827 startSection(Section, wasm::WASM_SEC_ELEM);
828
829 encodeULEB128(1, getStream()); // number of "segments"
830 encodeULEB128(0, getStream()); // the table index
831
832 // init expr for starting offset
833 write8(wasm::WASM_OPCODE_I32_CONST);
Sam Clegg30e1bbc2018-01-19 18:57:01 +0000834 encodeSLEB128(kInitialTableOffset, getStream());
Sam Clegg9e15f352017-06-03 02:01:24 +0000835 write8(wasm::WASM_OPCODE_END);
836
837 encodeULEB128(TableElems.size(), getStream());
838 for (uint32_t Elem : TableElems)
839 encodeULEB128(Elem, getStream());
840
841 endSection(Section);
842}
843
Sam Clegg457fb0b2017-09-15 19:50:44 +0000844void WasmObjectWriter::writeCodeSection(const MCAssembler &Asm,
845 const MCAsmLayout &Layout,
846 ArrayRef<WasmFunction> Functions) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000847 if (Functions.empty())
848 return;
849
850 SectionBookkeeping Section;
851 startSection(Section, wasm::WASM_SEC_CODE);
Sam Clegg6f08c842018-04-24 18:11:36 +0000852 CodeSectionIndex = Section.Index;
Sam Clegg9e15f352017-06-03 02:01:24 +0000853
854 encodeULEB128(Functions.size(), getStream());
855
856 for (const WasmFunction &Func : Functions) {
Sam Cleggfe6414b2017-06-21 23:46:41 +0000857 auto &FuncSection = static_cast<MCSectionWasm &>(Func.Sym->getSection());
Sam Clegg9e15f352017-06-03 02:01:24 +0000858
Sam Clegg9e15f352017-06-03 02:01:24 +0000859 int64_t Size = 0;
860 if (!Func.Sym->getSize()->evaluateAsAbsolute(Size, Layout))
861 report_fatal_error(".size expression must be evaluatable");
862
863 encodeULEB128(Size, getStream());
Sam Cleggfe6414b2017-06-21 23:46:41 +0000864 FuncSection.setSectionOffset(getStream().tell() - Section.ContentsOffset);
Sam Clegg9e15f352017-06-03 02:01:24 +0000865 Asm.writeSectionData(&FuncSection, Layout);
866 }
867
Sam Clegg9e15f352017-06-03 02:01:24 +0000868 // Apply fixups.
Sam Cleggacd7d2b2017-06-06 19:15:05 +0000869 applyRelocations(CodeRelocations, Section.ContentsOffset);
Sam Clegg9e15f352017-06-03 02:01:24 +0000870
871 endSection(Section);
872}
873
Sam Clegg6c899ba2018-02-23 05:08:34 +0000874void WasmObjectWriter::writeDataSection() {
875 if (DataSegments.empty())
Sam Clegg7c395942017-09-14 23:07:53 +0000876 return;
Sam Clegg9e15f352017-06-03 02:01:24 +0000877
878 SectionBookkeeping Section;
879 startSection(Section, wasm::WASM_SEC_DATA);
Sam Clegg6f08c842018-04-24 18:11:36 +0000880 DataSectionIndex = Section.Index;
Sam Clegg9e15f352017-06-03 02:01:24 +0000881
Sam Clegg6c899ba2018-02-23 05:08:34 +0000882 encodeULEB128(DataSegments.size(), getStream()); // count
Sam Clegg7c395942017-09-14 23:07:53 +0000883
Sam Clegg6c899ba2018-02-23 05:08:34 +0000884 for (const WasmDataSegment &Segment : DataSegments) {
Sam Clegg7c395942017-09-14 23:07:53 +0000885 encodeULEB128(0, getStream()); // memory index
886 write8(wasm::WASM_OPCODE_I32_CONST);
887 encodeSLEB128(Segment.Offset, getStream()); // offset
888 write8(wasm::WASM_OPCODE_END);
889 encodeULEB128(Segment.Data.size(), getStream()); // size
890 Segment.Section->setSectionOffset(getStream().tell() - Section.ContentsOffset);
891 writeBytes(Segment.Data); // data
892 }
Sam Clegg9e15f352017-06-03 02:01:24 +0000893
894 // Apply fixups.
Sam Clegg7c395942017-09-14 23:07:53 +0000895 applyRelocations(DataRelocations, Section.ContentsOffset);
Sam Clegg9e15f352017-06-03 02:01:24 +0000896
897 endSection(Section);
Sam Clegg9e15f352017-06-03 02:01:24 +0000898}
899
Sam Clegg6f08c842018-04-24 18:11:36 +0000900void WasmObjectWriter::writeRelocSection(
901 uint32_t SectionIndex, StringRef Name,
902 ArrayRef<WasmRelocationEntry> Relocations) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000903 // See: https://github.com/WebAssembly/tool-conventions/blob/master/Linking.md
904 // for descriptions of the reloc sections.
905
Sam Clegg6f08c842018-04-24 18:11:36 +0000906 if (Relocations.empty())
Sam Clegg9e15f352017-06-03 02:01:24 +0000907 return;
908
909 SectionBookkeeping Section;
Sam Clegg6f08c842018-04-24 18:11:36 +0000910 startCustomSection(Section, std::string("reloc.") + Name.str());
Sam Clegg9e15f352017-06-03 02:01:24 +0000911
Sam Clegg6f08c842018-04-24 18:11:36 +0000912 raw_pwrite_stream &Stream = getStream();
Sam Clegg9e15f352017-06-03 02:01:24 +0000913
Sam Clegg6f08c842018-04-24 18:11:36 +0000914 encodeULEB128(SectionIndex, Stream);
915 encodeULEB128(Relocations.size(), Stream);
916 for (const WasmRelocationEntry& RelEntry : Relocations) {
917 uint64_t Offset = RelEntry.Offset +
918 RelEntry.FixupSection->getSectionOffset();
919 uint32_t Index = getRelocationIndexValue(RelEntry);
Sam Clegg9e15f352017-06-03 02:01:24 +0000920
Sam Clegg6f08c842018-04-24 18:11:36 +0000921 write8(RelEntry.Type);
922 encodeULEB128(Offset, Stream);
923 encodeULEB128(Index, Stream);
924 if (RelEntry.hasAddend())
925 encodeSLEB128(RelEntry.Addend, Stream);
926 }
Sam Clegg9e15f352017-06-03 02:01:24 +0000927
928 endSection(Section);
929}
930
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000931void WasmObjectWriter::writeCustomRelocSections() {
932 for (const auto &Sec : CustomSections) {
933 auto &Relocations = CustomSectionsRelocations[Sec.Section];
934 writeRelocSection(Sec.OutputIndex, Sec.Name, Relocations);
935 }
936}
937
Sam Clegg9e15f352017-06-03 02:01:24 +0000938void WasmObjectWriter::writeLinkingMetaDataSection(
Sam Clegg86b4a092018-02-27 23:57:37 +0000939 ArrayRef<wasm::WasmSymbolInfo> SymbolInfos,
Sam Cleggea7cace2018-01-09 23:43:14 +0000940 ArrayRef<std::pair<uint16_t, uint32_t>> InitFuncs,
Sam Clegg6c899ba2018-02-23 05:08:34 +0000941 const std::map<StringRef, std::vector<WasmComdatEntry>> &Comdats) {
Sam Clegg9e15f352017-06-03 02:01:24 +0000942 SectionBookkeeping Section;
Sam Clegg2322a932018-04-23 19:16:19 +0000943 startCustomSection(Section, "linking");
Sam Clegg6bb5a412018-04-26 18:15:32 +0000944 encodeULEB128(wasm::WasmMetadataVersion, getStream());
Sam Clegg9e15f352017-06-03 02:01:24 +0000945
Sam Clegg6bb5a412018-04-26 18:15:32 +0000946 SectionBookkeeping SubSection;
Sam Clegg6c899ba2018-02-23 05:08:34 +0000947 if (SymbolInfos.size() != 0) {
948 startSection(SubSection, wasm::WASM_SYMBOL_TABLE);
949 encodeULEB128(SymbolInfos.size(), getStream());
950 for (const wasm::WasmSymbolInfo &Sym : SymbolInfos) {
951 encodeULEB128(Sym.Kind, getStream());
952 encodeULEB128(Sym.Flags, getStream());
953 switch (Sym.Kind) {
954 case wasm::WASM_SYMBOL_TYPE_FUNCTION:
955 case wasm::WASM_SYMBOL_TYPE_GLOBAL:
956 encodeULEB128(Sym.ElementIndex, getStream());
957 if ((Sym.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0)
958 writeString(Sym.Name);
959 break;
960 case wasm::WASM_SYMBOL_TYPE_DATA:
961 writeString(Sym.Name);
962 if ((Sym.Flags & wasm::WASM_SYMBOL_UNDEFINED) == 0) {
963 encodeULEB128(Sym.DataRef.Segment, getStream());
964 encodeULEB128(Sym.DataRef.Offset, getStream());
965 encodeULEB128(Sym.DataRef.Size, getStream());
966 }
967 break;
Sam Clegg6a31a0d2018-04-26 19:27:28 +0000968 case wasm::WASM_SYMBOL_TYPE_SECTION: {
969 const uint32_t SectionIndex =
970 CustomSections[Sym.ElementIndex].OutputIndex;
971 encodeULEB128(SectionIndex, getStream());
972 break;
973 }
Sam Clegg6c899ba2018-02-23 05:08:34 +0000974 default:
975 llvm_unreachable("unexpected kind");
976 }
Sam Cleggb7787fd2017-06-20 04:04:59 +0000977 }
978 endSection(SubSection);
979 }
Sam Clegg9e15f352017-06-03 02:01:24 +0000980
Sam Clegg6c899ba2018-02-23 05:08:34 +0000981 if (DataSegments.size()) {
Sam Clegg63ebb812017-09-29 16:50:08 +0000982 startSection(SubSection, wasm::WASM_SEGMENT_INFO);
Sam Clegg6c899ba2018-02-23 05:08:34 +0000983 encodeULEB128(DataSegments.size(), getStream());
984 for (const WasmDataSegment &Segment : DataSegments) {
Sam Cleggd95ed952017-09-20 19:03:35 +0000985 writeString(Segment.Name);
Sam Clegg63ebb812017-09-29 16:50:08 +0000986 encodeULEB128(Segment.Alignment, getStream());
987 encodeULEB128(Segment.Flags, getStream());
988 }
Sam Cleggd95ed952017-09-20 19:03:35 +0000989 endSection(SubSection);
990 }
991
Sam Cleggbafe6902017-12-15 00:17:10 +0000992 if (!InitFuncs.empty()) {
993 startSection(SubSection, wasm::WASM_INIT_FUNCS);
994 encodeULEB128(InitFuncs.size(), getStream());
995 for (auto &StartFunc : InitFuncs) {
996 encodeULEB128(StartFunc.first, getStream()); // priority
997 encodeULEB128(StartFunc.second, getStream()); // function index
998 }
999 endSection(SubSection);
1000 }
1001
Sam Cleggea7cace2018-01-09 23:43:14 +00001002 if (Comdats.size()) {
1003 startSection(SubSection, wasm::WASM_COMDAT_INFO);
1004 encodeULEB128(Comdats.size(), getStream());
1005 for (const auto &C : Comdats) {
1006 writeString(C.first);
1007 encodeULEB128(0, getStream()); // flags for future use
1008 encodeULEB128(C.second.size(), getStream());
1009 for (const WasmComdatEntry &Entry : C.second) {
1010 encodeULEB128(Entry.Kind, getStream());
1011 encodeULEB128(Entry.Index, getStream());
1012 }
1013 }
1014 endSection(SubSection);
1015 }
1016
Sam Clegg9e15f352017-06-03 02:01:24 +00001017 endSection(Section);
1018}
1019
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001020void WasmObjectWriter::writeCustomSections(const MCAssembler &Asm,
1021 const MCAsmLayout &Layout) {
1022 for (auto &CustomSection : CustomSections) {
Sam Cleggcfd44a22018-04-05 17:01:39 +00001023 SectionBookkeeping Section;
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001024 auto *Sec = CustomSection.Section;
Sam Clegg2322a932018-04-23 19:16:19 +00001025 startCustomSection(Section, CustomSection.Name);
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001026
1027 Sec->setSectionOffset(getStream().tell() - Section.ContentsOffset);
1028 Asm.writeSectionData(Sec, Layout);
1029
1030 CustomSection.OutputContentsOffset = Section.ContentsOffset;
1031 CustomSection.OutputIndex = Section.Index;
1032
Sam Cleggcfd44a22018-04-05 17:01:39 +00001033 endSection(Section);
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001034
1035 // Apply fixups.
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001036 auto &Relocations = CustomSectionsRelocations[CustomSection.Section];
1037 applyRelocations(Relocations, CustomSection.OutputContentsOffset);
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001038 }
1039}
1040
Sam Clegg5e3d33a2017-07-07 02:01:29 +00001041uint32_t WasmObjectWriter::getFunctionType(const MCSymbolWasm& Symbol) {
1042 assert(Symbol.isFunction());
1043 assert(TypeIndices.count(&Symbol));
1044 return TypeIndices[&Symbol];
1045}
1046
1047uint32_t WasmObjectWriter::registerFunctionType(const MCSymbolWasm& Symbol) {
1048 assert(Symbol.isFunction());
1049
1050 WasmFunctionType F;
Sam Cleggaff1c4d2017-09-15 19:22:01 +00001051 const MCSymbolWasm* ResolvedSym = ResolveSymbol(Symbol);
1052 F.Returns = ResolvedSym->getReturns();
1053 F.Params = ResolvedSym->getParams();
Sam Clegg5e3d33a2017-07-07 02:01:29 +00001054
1055 auto Pair =
1056 FunctionTypeIndices.insert(std::make_pair(F, FunctionTypes.size()));
1057 if (Pair.second)
1058 FunctionTypes.push_back(F);
1059 TypeIndices[&Symbol] = Pair.first->second;
1060
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001061 LLVM_DEBUG(dbgs() << "registerFunctionType: " << Symbol
1062 << " new:" << Pair.second << "\n");
1063 LLVM_DEBUG(dbgs() << " -> type index: " << Pair.first->second << "\n");
Sam Clegg5e3d33a2017-07-07 02:01:29 +00001064 return Pair.first->second;
1065}
1066
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001067static bool isInSymtab(const MCSymbolWasm &Sym) {
1068 if (Sym.isUsedInReloc())
1069 return true;
1070
1071 if (Sym.isComdat() && !Sym.isDefined())
1072 return false;
1073
1074 if (Sym.isTemporary() && Sym.getName().empty())
1075 return false;
1076
1077 if (Sym.isTemporary() && Sym.isData() && !Sym.getSize())
1078 return false;
1079
1080 if (Sym.isSection())
1081 return false;
1082
1083 return true;
1084}
1085
Dan Gohman18eafb62017-02-22 01:23:18 +00001086void WasmObjectWriter::writeObject(MCAssembler &Asm,
1087 const MCAsmLayout &Layout) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001088 LLVM_DEBUG(dbgs() << "WasmObjectWriter::writeObject\n");
Dan Gohman82607f52017-02-24 23:46:05 +00001089 MCContext &Ctx = Asm.getContext();
Dan Gohmand934cb82017-02-24 23:18:00 +00001090
1091 // Collect information from the available symbols.
Dan Gohmand934cb82017-02-24 23:18:00 +00001092 SmallVector<WasmFunction, 4> Functions;
1093 SmallVector<uint32_t, 4> TableElems;
Sam Clegg8defa952018-02-12 22:41:29 +00001094 SmallVector<wasm::WasmImport, 4> Imports;
1095 SmallVector<wasm::WasmExport, 4> Exports;
Sam Clegg6c899ba2018-02-23 05:08:34 +00001096 SmallVector<wasm::WasmSymbolInfo, 4> SymbolInfos;
Sam Cleggbafe6902017-12-15 00:17:10 +00001097 SmallVector<std::pair<uint16_t, uint32_t>, 2> InitFuncs;
Sam Cleggea7cace2018-01-09 23:43:14 +00001098 std::map<StringRef, std::vector<WasmComdatEntry>> Comdats;
Sam Clegg7c395942017-09-14 23:07:53 +00001099 uint32_t DataSize = 0;
Dan Gohmand934cb82017-02-24 23:18:00 +00001100
Sam Cleggf950b242017-12-11 23:03:38 +00001101 // For now, always emit the memory import, since loads and stores are not
1102 // valid without it. In the future, we could perhaps be more clever and omit
1103 // it if there are no loads or stores.
1104 MCSymbolWasm *MemorySym =
1105 cast<MCSymbolWasm>(Ctx.getOrCreateSymbol("__linear_memory"));
Sam Clegg8defa952018-02-12 22:41:29 +00001106 wasm::WasmImport MemImport;
1107 MemImport.Module = MemorySym->getModuleName();
1108 MemImport.Field = MemorySym->getName();
Sam Cleggf950b242017-12-11 23:03:38 +00001109 MemImport.Kind = wasm::WASM_EXTERNAL_MEMORY;
1110 Imports.push_back(MemImport);
1111
1112 // For now, always emit the table section, since indirect calls are not
1113 // valid without it. In the future, we could perhaps be more clever and omit
1114 // it if there are no indirect calls.
1115 MCSymbolWasm *TableSym =
1116 cast<MCSymbolWasm>(Ctx.getOrCreateSymbol("__indirect_function_table"));
Sam Clegg8defa952018-02-12 22:41:29 +00001117 wasm::WasmImport TableImport;
1118 TableImport.Module = TableSym->getModuleName();
1119 TableImport.Field = TableSym->getName();
Sam Cleggf950b242017-12-11 23:03:38 +00001120 TableImport.Kind = wasm::WASM_EXTERNAL_TABLE;
Sam Clegg8defa952018-02-12 22:41:29 +00001121 TableImport.Table.ElemType = wasm::WASM_TYPE_ANYFUNC;
Sam Cleggf950b242017-12-11 23:03:38 +00001122 Imports.push_back(TableImport);
1123
Nicholas Wilson586320c2018-02-28 17:19:48 +00001124 // Populate FunctionTypeIndices, and Imports and WasmIndices for undefined
1125 // symbols. This must be done before populating WasmIndices for defined
1126 // symbols.
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001127 for (const MCSymbol &S : Asm.symbols()) {
1128 const auto &WS = static_cast<const MCSymbolWasm &>(S);
1129
1130 // Register types for all functions, including those with private linkage
Sam Clegg9f3fe422018-01-17 19:28:43 +00001131 // (because wasm always needs a type signature).
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001132 if (WS.isFunction())
1133 registerFunctionType(WS);
1134
1135 if (WS.isTemporary())
1136 continue;
1137
1138 // If the symbol is not defined in this translation unit, import it.
Sam Clegg6c899ba2018-02-23 05:08:34 +00001139 if (!WS.isDefined() && !WS.isComdat()) {
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001140 if (WS.isFunction()) {
Sam Clegg6c899ba2018-02-23 05:08:34 +00001141 wasm::WasmImport Import;
1142 Import.Module = WS.getModuleName();
1143 Import.Field = WS.getName();
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001144 Import.Kind = wasm::WASM_EXTERNAL_FUNCTION;
Sam Clegg8defa952018-02-12 22:41:29 +00001145 Import.SigIndex = getFunctionType(WS);
Sam Clegg6c899ba2018-02-23 05:08:34 +00001146 Imports.push_back(Import);
1147 WasmIndices[&WS] = NumFunctionImports++;
1148 } else if (WS.isGlobal()) {
Nicholas Wilson15f349f2018-03-09 16:30:44 +00001149 if (WS.isWeak())
1150 report_fatal_error("undefined global symbol cannot be weak");
1151
Sam Clegg6c899ba2018-02-23 05:08:34 +00001152 wasm::WasmImport Import;
1153 Import.Module = WS.getModuleName();
1154 Import.Field = WS.getName();
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001155 Import.Kind = wasm::WASM_EXTERNAL_GLOBAL;
Sam Clegg6c899ba2018-02-23 05:08:34 +00001156 Import.Global = WS.getGlobalType();
1157 Imports.push_back(Import);
1158 WasmIndices[&WS] = NumGlobalImports++;
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001159 }
Dan Gohman32ce5ca2017-12-05 18:29:48 +00001160 }
1161 }
1162
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001163 // Populate DataSegments and CustomSections, which must be done before
1164 // populating DataLocations.
Sam Clegg759631c2017-09-15 20:54:59 +00001165 for (MCSection &Sec : Asm) {
1166 auto &Section = static_cast<MCSectionWasm &>(Sec);
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001167 StringRef SectionName = Section.getSectionName();
Sam Clegg759631c2017-09-15 20:54:59 +00001168
Sam Cleggbafe6902017-12-15 00:17:10 +00001169 // .init_array sections are handled specially elsewhere.
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001170 if (SectionName.startswith(".init_array"))
Sam Cleggbafe6902017-12-15 00:17:10 +00001171 continue;
1172
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001173 // Code is handled separately
1174 if (Section.getKind().isText())
1175 continue;
Sam Cleggea7cace2018-01-09 23:43:14 +00001176
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001177 if (Section.isWasmData()) {
1178 uint32_t SegmentIndex = DataSegments.size();
1179 DataSize = alignTo(DataSize, Section.getAlignment());
1180 DataSegments.emplace_back();
1181 WasmDataSegment &Segment = DataSegments.back();
1182 Segment.Name = SectionName;
1183 Segment.Offset = DataSize;
1184 Segment.Section = &Section;
1185 addData(Segment.Data, Section);
1186 Segment.Alignment = Section.getAlignment();
1187 Segment.Flags = 0;
1188 DataSize += Segment.Data.size();
1189 Section.setSegmentIndex(SegmentIndex);
1190
1191 if (const MCSymbolWasm *C = Section.getGroup()) {
1192 Comdats[C->getName()].emplace_back(
1193 WasmComdatEntry{wasm::WASM_COMDAT_DATA, SegmentIndex});
1194 }
1195 } else {
1196 // Create custom sections
1197 assert(Sec.getKind().isMetadata());
1198
1199 StringRef Name = SectionName;
1200
1201 // For user-defined custom sections, strip the prefix
1202 if (Name.startswith(".custom_section."))
1203 Name = Name.substr(strlen(".custom_section."));
1204
1205 MCSymbol* Begin = Sec.getBeginSymbol();
Sam Cleggfb807d42018-05-07 19:40:50 +00001206 if (Begin) {
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001207 WasmIndices[cast<MCSymbolWasm>(Begin)] = CustomSections.size();
Sam Cleggb210c642018-05-10 17:38:35 +00001208 if (SectionName != Begin->getName())
Sam Cleggfb807d42018-05-07 19:40:50 +00001209 report_fatal_error("section name and begin symbol should match: " +
Sam Cleggb210c642018-05-10 17:38:35 +00001210 Twine(SectionName));
Sam Cleggfb807d42018-05-07 19:40:50 +00001211 }
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001212 CustomSections.emplace_back(Name, &Section);
Sam Cleggea7cace2018-01-09 23:43:14 +00001213 }
Sam Clegg759631c2017-09-15 20:54:59 +00001214 }
1215
Nicholas Wilson586320c2018-02-28 17:19:48 +00001216 // Populate WasmIndices and DataLocations for defined symbols.
Dan Gohmand934cb82017-02-24 23:18:00 +00001217 for (const MCSymbol &S : Asm.symbols()) {
1218 // Ignore unnamed temporary symbols, which aren't ever exported, imported,
1219 // or used in relocations.
1220 if (S.isTemporary() && S.getName().empty())
1221 continue;
Sam Cleggb7787fd2017-06-20 04:04:59 +00001222
Dan Gohmand934cb82017-02-24 23:18:00 +00001223 const auto &WS = static_cast<const MCSymbolWasm &>(S);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001224 LLVM_DEBUG(
1225 dbgs() << "MCSymbol: " << toString(WS.getType()) << " '" << S << "'"
1226 << " isDefined=" << S.isDefined() << " isExternal="
1227 << S.isExternal() << " isTemporary=" << S.isTemporary()
1228 << " isWeak=" << WS.isWeak() << " isHidden=" << WS.isHidden()
1229 << " isVariable=" << WS.isVariable() << "\n");
Sam Cleggb7787fd2017-06-20 04:04:59 +00001230
Sam Clegg5e3d33a2017-07-07 02:01:29 +00001231 if (WS.isVariable())
1232 continue;
Sam Clegg6c899ba2018-02-23 05:08:34 +00001233 if (WS.isComdat() && !WS.isDefined())
1234 continue;
Sam Cleggb7787fd2017-06-20 04:04:59 +00001235
Dan Gohmand934cb82017-02-24 23:18:00 +00001236 if (WS.isFunction()) {
Sam Clegg6c899ba2018-02-23 05:08:34 +00001237 unsigned Index;
Sam Cleggcd65f692018-01-11 23:59:16 +00001238 if (WS.isDefined()) {
Sam Cleggb7787fd2017-06-20 04:04:59 +00001239 if (WS.getOffset() != 0)
1240 report_fatal_error(
1241 "function sections must contain one function each");
1242
1243 if (WS.getSize() == 0)
1244 report_fatal_error(
1245 "function symbols must have a size set with .size");
1246
Sam Clegg6c899ba2018-02-23 05:08:34 +00001247 // A definition. Write out the function body.
Sam Clegg9f3fe422018-01-17 19:28:43 +00001248 Index = NumFunctionImports + Functions.size();
Dan Gohmand934cb82017-02-24 23:18:00 +00001249 WasmFunction Func;
Sam Clegg5e3d33a2017-07-07 02:01:29 +00001250 Func.Type = getFunctionType(WS);
Dan Gohmand934cb82017-02-24 23:18:00 +00001251 Func.Sym = &WS;
Sam Clegg6c899ba2018-02-23 05:08:34 +00001252 WasmIndices[&WS] = Index;
Dan Gohmand934cb82017-02-24 23:18:00 +00001253 Functions.push_back(Func);
Sam Clegg6c899ba2018-02-23 05:08:34 +00001254
1255 auto &Section = static_cast<MCSectionWasm &>(WS.getSection());
1256 if (const MCSymbolWasm *C = Section.getGroup()) {
1257 Comdats[C->getName()].emplace_back(
1258 WasmComdatEntry{wasm::WASM_COMDAT_FUNCTION, Index});
1259 }
Dan Gohmand934cb82017-02-24 23:18:00 +00001260 } else {
1261 // An import; the index was assigned above.
Sam Clegg6c899ba2018-02-23 05:08:34 +00001262 Index = WasmIndices.find(&WS)->second;
Dan Gohmand934cb82017-02-24 23:18:00 +00001263 }
1264
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001265 LLVM_DEBUG(dbgs() << " -> function index: " << Index << "\n");
Sam Clegg6c899ba2018-02-23 05:08:34 +00001266 } else if (WS.isData()) {
Sam Cleggc38e9472017-06-02 01:05:24 +00001267 if (WS.isTemporary() && !WS.getSize())
1268 continue;
Dan Gohmand934cb82017-02-24 23:18:00 +00001269
Sam Clegg6c899ba2018-02-23 05:08:34 +00001270 if (!WS.isDefined()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001271 LLVM_DEBUG(dbgs() << " -> segment index: -1"
1272 << "\n");
Sam Cleggfe6414b2017-06-21 23:46:41 +00001273 continue;
Sam Clegg6c899ba2018-02-23 05:08:34 +00001274 }
Sam Cleggc38e9472017-06-02 01:05:24 +00001275
Sam Cleggfe6414b2017-06-21 23:46:41 +00001276 if (!WS.getSize())
1277 report_fatal_error("data symbols must have a size set with .size: " +
1278 WS.getName());
Sam Cleggc38e9472017-06-02 01:05:24 +00001279
Sam Cleggfe6414b2017-06-21 23:46:41 +00001280 int64_t Size = 0;
1281 if (!WS.getSize()->evaluateAsAbsolute(Size, Layout))
1282 report_fatal_error(".size expression must be evaluatable");
Dan Gohmand934cb82017-02-24 23:18:00 +00001283
Sam Clegg759631c2017-09-15 20:54:59 +00001284 auto &DataSection = static_cast<MCSectionWasm &>(WS.getSection());
Sam Cleggea7cace2018-01-09 23:43:14 +00001285 assert(DataSection.isWasmData());
Sam Clegg7c395942017-09-14 23:07:53 +00001286
Sam Clegg6c899ba2018-02-23 05:08:34 +00001287 // For each data symbol, export it in the symtab as a reference to the
1288 // corresponding Wasm data segment.
1289 wasm::WasmDataReference Ref = wasm::WasmDataReference{
1290 DataSection.getSegmentIndex(),
1291 static_cast<uint32_t>(Layout.getSymbolOffset(WS)),
1292 static_cast<uint32_t>(Size)};
1293 DataLocations[&WS] = Ref;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001294 LLVM_DEBUG(dbgs() << " -> segment index: " << Ref.Segment << "\n");
Sam Clegga165f2d2018-04-30 19:40:57 +00001295 } else if (WS.isGlobal()) {
Sam Clegg6c899ba2018-02-23 05:08:34 +00001296 // A "true" Wasm global (currently just __stack_pointer)
Eric Christopher545932b2018-02-23 21:14:47 +00001297 if (WS.isDefined())
Sam Clegg6c899ba2018-02-23 05:08:34 +00001298 report_fatal_error("don't yet support defined globals");
Sam Clegg6c899ba2018-02-23 05:08:34 +00001299
Eric Christopher545932b2018-02-23 21:14:47 +00001300 // An import; the index was assigned above
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001301 LLVM_DEBUG(dbgs() << " -> global index: "
1302 << WasmIndices.find(&WS)->second << "\n");
Sam Clegga165f2d2018-04-30 19:40:57 +00001303 } else {
1304 assert(WS.isSection());
Dan Gohmand934cb82017-02-24 23:18:00 +00001305 }
1306 }
1307
Nicholas Wilson586320c2018-02-28 17:19:48 +00001308 // Populate WasmIndices and DataLocations for aliased symbols. We need to
1309 // process these in a separate pass because we need to have processed the
1310 // target of the alias before the alias itself and the symbols are not
1311 // necessarily ordered in this way.
Sam Cleggb7787fd2017-06-20 04:04:59 +00001312 for (const MCSymbol &S : Asm.symbols()) {
1313 if (!S.isVariable())
1314 continue;
Sam Clegg31a2c802017-09-20 21:17:04 +00001315
Sam Cleggcd65f692018-01-11 23:59:16 +00001316 assert(S.isDefined());
Sam Cleggb7787fd2017-06-20 04:04:59 +00001317
Sam Clegg5e3d33a2017-07-07 02:01:29 +00001318 // Find the target symbol of this weak alias and export that index
Sam Cleggaff1c4d2017-09-15 19:22:01 +00001319 const auto &WS = static_cast<const MCSymbolWasm &>(S);
1320 const MCSymbolWasm *ResolvedSym = ResolveSymbol(WS);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001321 LLVM_DEBUG(dbgs() << WS.getName() << ": weak alias of '" << *ResolvedSym
1322 << "'\n");
Sam Cleggb7787fd2017-06-20 04:04:59 +00001323
Sam Clegg6c899ba2018-02-23 05:08:34 +00001324 if (WS.isFunction()) {
1325 assert(WasmIndices.count(ResolvedSym) > 0);
1326 uint32_t WasmIndex = WasmIndices.find(ResolvedSym)->second;
1327 WasmIndices[&WS] = WasmIndex;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001328 LLVM_DEBUG(dbgs() << " -> index:" << WasmIndex << "\n");
Sam Clegg6c899ba2018-02-23 05:08:34 +00001329 } else if (WS.isData()) {
1330 assert(DataLocations.count(ResolvedSym) > 0);
1331 const wasm::WasmDataReference &Ref =
1332 DataLocations.find(ResolvedSym)->second;
1333 DataLocations[&WS] = Ref;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001334 LLVM_DEBUG(dbgs() << " -> index:" << Ref.Segment << "\n");
Sam Clegg6c899ba2018-02-23 05:08:34 +00001335 } else {
1336 report_fatal_error("don't yet support global aliases");
1337 }
Nicholas Wilson586320c2018-02-28 17:19:48 +00001338 }
Sam Clegg31a2c802017-09-20 21:17:04 +00001339
Nicholas Wilson586320c2018-02-28 17:19:48 +00001340 // Finally, populate the symbol table itself, in its "natural" order.
1341 for (const MCSymbol &S : Asm.symbols()) {
1342 const auto &WS = static_cast<const MCSymbolWasm &>(S);
Sam Clegg25d8e682018-05-08 00:08:21 +00001343 if (!isInSymtab(WS)) {
1344 WS.setIndex(INVALID_INDEX);
Nicholas Wilson586320c2018-02-28 17:19:48 +00001345 continue;
Sam Clegg25d8e682018-05-08 00:08:21 +00001346 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001347 LLVM_DEBUG(dbgs() << "adding to symtab: " << WS << "\n");
Nicholas Wilson586320c2018-02-28 17:19:48 +00001348
1349 uint32_t Flags = 0;
1350 if (WS.isWeak())
1351 Flags |= wasm::WASM_SYMBOL_BINDING_WEAK;
1352 if (WS.isHidden())
1353 Flags |= wasm::WASM_SYMBOL_VISIBILITY_HIDDEN;
1354 if (!WS.isExternal() && WS.isDefined())
1355 Flags |= wasm::WASM_SYMBOL_BINDING_LOCAL;
1356 if (WS.isUndefined())
1357 Flags |= wasm::WASM_SYMBOL_UNDEFINED;
1358
1359 wasm::WasmSymbolInfo Info;
1360 Info.Name = WS.getName();
1361 Info.Kind = WS.getType();
1362 Info.Flags = Flags;
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001363 if (!WS.isData()) {
1364 assert(WasmIndices.count(&WS) > 0);
Nicholas Wilson586320c2018-02-28 17:19:48 +00001365 Info.ElementIndex = WasmIndices.find(&WS)->second;
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001366 } else if (WS.isDefined()) {
1367 assert(DataLocations.count(&WS) > 0);
Nicholas Wilson586320c2018-02-28 17:19:48 +00001368 Info.DataRef = DataLocations.find(&WS)->second;
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001369 }
Sam Clegg25d8e682018-05-08 00:08:21 +00001370 WS.setIndex(SymbolInfos.size());
Nicholas Wilson586320c2018-02-28 17:19:48 +00001371 SymbolInfos.emplace_back(Info);
Sam Cleggb7787fd2017-06-20 04:04:59 +00001372 }
1373
Sam Clegg6006e092017-12-22 20:31:39 +00001374 {
1375 auto HandleReloc = [&](const WasmRelocationEntry &Rel) {
Sam Cleggf9edbe92018-01-31 19:28:47 +00001376 // Functions referenced by a relocation need to put in the table. This is
1377 // purely to make the object file's provisional values readable, and is
1378 // ignored by the linker, which re-calculates the relocations itself.
1379 if (Rel.Type != wasm::R_WEBASSEMBLY_TABLE_INDEX_I32 &&
1380 Rel.Type != wasm::R_WEBASSEMBLY_TABLE_INDEX_SLEB)
1381 return;
1382 assert(Rel.Symbol->isFunction());
1383 const MCSymbolWasm &WS = *ResolveSymbol(*Rel.Symbol);
Sam Clegg6c899ba2018-02-23 05:08:34 +00001384 uint32_t FunctionIndex = WasmIndices.find(&WS)->second;
Sam Cleggf9edbe92018-01-31 19:28:47 +00001385 uint32_t TableIndex = TableElems.size() + kInitialTableOffset;
1386 if (TableIndices.try_emplace(&WS, TableIndex).second) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001387 LLVM_DEBUG(dbgs() << " -> adding " << WS.getName()
1388 << " to table: " << TableIndex << "\n");
Sam Clegg6c899ba2018-02-23 05:08:34 +00001389 TableElems.push_back(FunctionIndex);
Sam Cleggf9edbe92018-01-31 19:28:47 +00001390 registerFunctionType(WS);
Sam Clegg6006e092017-12-22 20:31:39 +00001391 }
1392 };
Dan Gohman970d02c2017-03-30 23:58:19 +00001393
Sam Clegg6006e092017-12-22 20:31:39 +00001394 for (const WasmRelocationEntry &RelEntry : CodeRelocations)
1395 HandleReloc(RelEntry);
1396 for (const WasmRelocationEntry &RelEntry : DataRelocations)
1397 HandleReloc(RelEntry);
Dan Gohmand934cb82017-02-24 23:18:00 +00001398 }
1399
Sam Cleggbafe6902017-12-15 00:17:10 +00001400 // Translate .init_array section contents into start functions.
1401 for (const MCSection &S : Asm) {
1402 const auto &WS = static_cast<const MCSectionWasm &>(S);
1403 if (WS.getSectionName().startswith(".fini_array"))
1404 report_fatal_error(".fini_array sections are unsupported");
1405 if (!WS.getSectionName().startswith(".init_array"))
1406 continue;
1407 if (WS.getFragmentList().empty())
1408 continue;
Sam Cleggb210c642018-05-10 17:38:35 +00001409
1410 // init_array is expected to contain a single non-empty data fragment
1411 if (WS.getFragmentList().size() != 3)
Sam Cleggbafe6902017-12-15 00:17:10 +00001412 report_fatal_error("only one .init_array section fragment supported");
Sam Cleggb210c642018-05-10 17:38:35 +00001413
1414 auto IT = WS.begin();
1415 const MCFragment &EmptyFrag = *IT;
1416 if (EmptyFrag.getKind() != MCFragment::FT_Data)
1417 report_fatal_error(".init_array section should be aligned");
1418
1419 IT = std::next(IT);
1420 const MCFragment &AlignFrag = *IT;
Sam Cleggbafe6902017-12-15 00:17:10 +00001421 if (AlignFrag.getKind() != MCFragment::FT_Align)
1422 report_fatal_error(".init_array section should be aligned");
1423 if (cast<MCAlignFragment>(AlignFrag).getAlignment() != (is64Bit() ? 8 : 4))
1424 report_fatal_error(".init_array section should be aligned for pointers");
Sam Cleggb210c642018-05-10 17:38:35 +00001425
1426 const MCFragment &Frag = *std::next(IT);
Sam Cleggbafe6902017-12-15 00:17:10 +00001427 if (Frag.hasInstructions() || Frag.getKind() != MCFragment::FT_Data)
1428 report_fatal_error("only data supported in .init_array section");
Sam Cleggb210c642018-05-10 17:38:35 +00001429
Sam Cleggbafe6902017-12-15 00:17:10 +00001430 uint16_t Priority = UINT16_MAX;
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001431 unsigned PrefixLength = strlen(".init_array");
1432 if (WS.getSectionName().size() > PrefixLength) {
1433 if (WS.getSectionName()[PrefixLength] != '.')
Sam Cleggbafe6902017-12-15 00:17:10 +00001434 report_fatal_error(".init_array section priority should start with '.'");
Sam Clegg4d57fbd2018-05-02 23:11:38 +00001435 if (WS.getSectionName()
1436 .substr(PrefixLength + 1)
1437 .getAsInteger(10, Priority))
Sam Cleggbafe6902017-12-15 00:17:10 +00001438 report_fatal_error("invalid .init_array section priority");
1439 }
1440 const auto &DataFrag = cast<MCDataFragment>(Frag);
1441 const SmallVectorImpl<char> &Contents = DataFrag.getContents();
1442 for (const uint8_t *p = (const uint8_t *)Contents.data(),
1443 *end = (const uint8_t *)Contents.data() + Contents.size();
1444 p != end; ++p) {
1445 if (*p != 0)
1446 report_fatal_error("non-symbolic data in .init_array section");
1447 }
1448 for (const MCFixup &Fixup : DataFrag.getFixups()) {
1449 assert(Fixup.getKind() == MCFixup::getKindForSize(is64Bit() ? 8 : 4, false));
1450 const MCExpr *Expr = Fixup.getValue();
1451 auto *Sym = dyn_cast<MCSymbolRefExpr>(Expr);
1452 if (!Sym)
1453 report_fatal_error("fixups in .init_array should be symbol references");
1454 if (Sym->getKind() != MCSymbolRefExpr::VK_WebAssembly_FUNCTION)
1455 report_fatal_error("symbols in .init_array should be for functions");
Sam Clegg25d8e682018-05-08 00:08:21 +00001456 if (Sym->getSymbol().getIndex() == INVALID_INDEX)
1457 report_fatal_error("symbols in .init_array should exist in symbtab");
1458 InitFuncs.push_back(
1459 std::make_pair(Priority, Sym->getSymbol().getIndex()));
Sam Cleggbafe6902017-12-15 00:17:10 +00001460 }
1461 }
1462
Dan Gohman18eafb62017-02-22 01:23:18 +00001463 // Write out the Wasm header.
1464 writeHeader(Asm);
1465
Sam Clegg9e15f352017-06-03 02:01:24 +00001466 writeTypeSection(FunctionTypes);
Sam Cleggf950b242017-12-11 23:03:38 +00001467 writeImportSection(Imports, DataSize, TableElems.size());
Sam Clegg9e15f352017-06-03 02:01:24 +00001468 writeFunctionSection(Functions);
Sam Cleggf950b242017-12-11 23:03:38 +00001469 // Skip the "table" section; we import the table instead.
1470 // Skip the "memory" section; we import the memory instead.
Sam Clegg7c395942017-09-14 23:07:53 +00001471 writeGlobalSection();
Sam Clegg9e15f352017-06-03 02:01:24 +00001472 writeExportSection(Exports);
Sam Clegg9e15f352017-06-03 02:01:24 +00001473 writeElemSection(TableElems);
Sam Cleggacd7d2b2017-06-06 19:15:05 +00001474 writeCodeSection(Asm, Layout, Functions);
Sam Clegg6c899ba2018-02-23 05:08:34 +00001475 writeDataSection();
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001476 writeCustomSections(Asm, Layout);
Nicholas Wilsonc22bfb62018-03-05 12:59:03 +00001477 writeLinkingMetaDataSection(SymbolInfos, InitFuncs, Comdats);
Sam Clegg6f08c842018-04-24 18:11:36 +00001478 writeRelocSection(CodeSectionIndex, "CODE", CodeRelocations);
1479 writeRelocSection(DataSectionIndex, "DATA", DataRelocations);
Sam Clegg6a31a0d2018-04-26 19:27:28 +00001480 writeCustomRelocSections();
Dan Gohman970d02c2017-03-30 23:58:19 +00001481
Dan Gohmand934cb82017-02-24 23:18:00 +00001482 // TODO: Translate the .comment section to the output.
Dan Gohman18eafb62017-02-22 01:23:18 +00001483}
1484
Lang Hames60fbc7c2017-10-10 16:28:07 +00001485std::unique_ptr<MCObjectWriter>
Lang Hames1301a872017-10-10 01:15:10 +00001486llvm::createWasmObjectWriter(std::unique_ptr<MCWasmObjectTargetWriter> MOTW,
1487 raw_pwrite_stream &OS) {
Dan Gohman0917c9e2018-01-15 17:06:23 +00001488 return llvm::make_unique<WasmObjectWriter>(std::move(MOTW), OS);
Dan Gohman18eafb62017-02-22 01:23:18 +00001489}