1 //===-- WasmDumper.cpp - Wasm-specific object file dumper -----------------===//
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 implements the Wasm-specific dumper for llvm-readobj.
11 //===----------------------------------------------------------------------===//
13 #include "ObjDumper.h"
14 #include "llvm-readobj.h"
15 #include "llvm/Object/Wasm.h"
16 #include "llvm/Support/ScopedPrinter.h"
19 using namespace object
;
23 const EnumEntry
<unsigned> WasmSymbolTypes
[] = {
24 #define ENUM_ENTRY(X) \
25 { #X, wasm::WASM_SYMBOL_TYPE_##X }
26 ENUM_ENTRY(FUNCTION
), ENUM_ENTRY(DATA
), ENUM_ENTRY(GLOBAL
),
27 ENUM_ENTRY(SECTION
), ENUM_ENTRY(TAG
), ENUM_ENTRY(TABLE
),
31 const EnumEntry
<uint32_t> WasmSectionTypes
[] = {
32 #define ENUM_ENTRY(X) \
33 { #X, wasm::WASM_SEC_##X }
34 ENUM_ENTRY(CUSTOM
), ENUM_ENTRY(TYPE
), ENUM_ENTRY(IMPORT
),
35 ENUM_ENTRY(FUNCTION
), ENUM_ENTRY(TABLE
), ENUM_ENTRY(MEMORY
),
36 ENUM_ENTRY(GLOBAL
), ENUM_ENTRY(TAG
), ENUM_ENTRY(EXPORT
),
37 ENUM_ENTRY(START
), ENUM_ENTRY(ELEM
), ENUM_ENTRY(CODE
),
38 ENUM_ENTRY(DATA
), ENUM_ENTRY(DATACOUNT
),
42 const EnumEntry
<unsigned> WasmSymbolFlags
[] = {
43 #define ENUM_ENTRY(X) \
44 { #X, wasm::WASM_SYMBOL_##X }
45 ENUM_ENTRY(BINDING_GLOBAL
),
46 ENUM_ENTRY(BINDING_WEAK
),
47 ENUM_ENTRY(BINDING_LOCAL
),
48 ENUM_ENTRY(VISIBILITY_DEFAULT
),
49 ENUM_ENTRY(VISIBILITY_HIDDEN
),
50 ENUM_ENTRY(UNDEFINED
),
52 ENUM_ENTRY(EXPLICIT_NAME
),
57 class WasmDumper
: public ObjDumper
{
59 WasmDumper(const WasmObjectFile
*Obj
, ScopedPrinter
&Writer
)
60 : ObjDumper(Writer
, Obj
->getFileName()), Obj(Obj
) {}
62 void printFileHeaders() override
;
63 void printSectionHeaders() override
;
64 void printRelocations() override
;
65 void printUnwindInfo() override
{ llvm_unreachable("unimplemented"); }
66 void printStackMap() const override
{ llvm_unreachable("unimplemented"); }
69 void printSymbol(const SymbolRef
&Sym
);
70 void printRelocation(const SectionRef
&Section
, const RelocationRef
&Reloc
);
73 void printSymbols() override
;
74 void printDynamicSymbols() override
{ llvm_unreachable("unimplemented"); }
76 const WasmObjectFile
*Obj
;
79 void WasmDumper::printFileHeaders() {
80 W
.printHex("Version", Obj
->getHeader().Version
);
83 void WasmDumper::printRelocation(const SectionRef
&Section
,
84 const RelocationRef
&Reloc
) {
85 SmallString
<64> RelocTypeName
;
86 uint64_t RelocType
= Reloc
.getType();
87 Reloc
.getTypeName(RelocTypeName
);
88 const wasm::WasmRelocation
&WasmReloc
= Obj
->getWasmRelocation(Reloc
);
91 symbol_iterator SI
= Reloc
.getSymbol();
92 if (SI
!= Obj
->symbol_end())
93 SymName
= unwrapOrError(Obj
->getFileName(), SI
->getName());
95 bool HasAddend
= wasm::relocTypeHasAddend(static_cast<uint32_t>(RelocType
));
97 if (opts::ExpandRelocs
) {
98 DictScope
Group(W
, "Relocation");
99 W
.printNumber("Type", RelocTypeName
, RelocType
);
100 W
.printHex("Offset", Reloc
.getOffset());
101 if (!SymName
.empty())
102 W
.printString("Symbol", SymName
);
104 W
.printHex("Index", WasmReloc
.Index
);
106 W
.printNumber("Addend", WasmReloc
.Addend
);
108 raw_ostream
&OS
= W
.startLine();
109 OS
<< W
.hex(Reloc
.getOffset()) << " " << RelocTypeName
<< " ";
110 if (!SymName
.empty())
113 OS
<< WasmReloc
.Index
;
115 OS
<< " " << WasmReloc
.Addend
;
120 void WasmDumper::printRelocations() {
121 ListScope
D(W
, "Relocations");
123 int SectionNumber
= 0;
124 for (const SectionRef
&Section
: Obj
->sections()) {
125 bool PrintedGroup
= false;
126 StringRef Name
= unwrapOrError(Obj
->getFileName(), Section
.getName());
130 for (const RelocationRef
&Reloc
: Section
.relocations()) {
132 W
.startLine() << "Section (" << SectionNumber
<< ") " << Name
<< " {\n";
137 printRelocation(Section
, Reloc
);
142 W
.startLine() << "}\n";
147 void WasmDumper::printSymbols() {
148 ListScope
Group(W
, "Symbols");
150 for (const SymbolRef
&Symbol
: Obj
->symbols())
154 void WasmDumper::printSectionHeaders() {
155 ListScope
Group(W
, "Sections");
156 for (const SectionRef
&Section
: Obj
->sections()) {
157 const WasmSection
&WasmSec
= Obj
->getWasmSection(Section
);
158 DictScope
SectionD(W
, "Section");
159 W
.printEnum("Type", WasmSec
.Type
, ArrayRef(WasmSectionTypes
));
160 W
.printNumber("Size", static_cast<uint64_t>(WasmSec
.Content
.size()));
161 W
.printNumber("Offset", WasmSec
.Offset
);
162 switch (WasmSec
.Type
) {
163 case wasm::WASM_SEC_CUSTOM
:
164 W
.printString("Name", WasmSec
.Name
);
165 if (WasmSec
.Name
== "linking") {
166 const wasm::WasmLinkingData
&LinkingData
= Obj
->linkingData();
167 if (!LinkingData
.InitFunctions
.empty()) {
168 ListScope
Group(W
, "InitFunctions");
169 for (const wasm::WasmInitFunc
&F
: LinkingData
.InitFunctions
)
170 W
.startLine() << F
.Symbol
<< " (priority=" << F
.Priority
<< ")\n";
174 case wasm::WASM_SEC_DATA
: {
175 ListScope
Group(W
, "Segments");
176 for (const WasmSegment
&Segment
: Obj
->dataSegments()) {
177 const wasm::WasmDataSegment
&Seg
= Segment
.Data
;
178 DictScope
Group(W
, "Segment");
179 if (!Seg
.Name
.empty())
180 W
.printString("Name", Seg
.Name
);
181 W
.printNumber("Size", static_cast<uint64_t>(Seg
.Content
.size()));
182 if (Seg
.Offset
.Extended
)
183 llvm_unreachable("extended const exprs not supported");
184 else if (Seg
.Offset
.Inst
.Opcode
== wasm::WASM_OPCODE_I32_CONST
)
185 W
.printNumber("Offset", Seg
.Offset
.Inst
.Value
.Int32
);
186 else if (Seg
.Offset
.Inst
.Opcode
== wasm::WASM_OPCODE_I64_CONST
)
187 W
.printNumber("Offset", Seg
.Offset
.Inst
.Value
.Int64
);
188 else if (Seg
.Offset
.Inst
.Opcode
== wasm::WASM_OPCODE_GLOBAL_GET
) {
189 ListScope
Group(W
, "Offset");
190 W
.printNumber("Global", Seg
.Offset
.Inst
.Value
.Global
);
192 llvm_unreachable("unknown init expr opcode");
196 case wasm::WASM_SEC_MEMORY
:
197 ListScope
Group(W
, "Memories");
198 for (const wasm::WasmLimits
&Memory
: Obj
->memories()) {
199 DictScope
Group(W
, "Memory");
200 W
.printNumber("MinPages", Memory
.Minimum
);
201 if (Memory
.Flags
& wasm::WASM_LIMITS_FLAG_HAS_MAX
) {
202 W
.printNumber("MaxPages", WasmSec
.Offset
);
208 if (opts::SectionRelocations
) {
209 ListScope
D(W
, "Relocations");
210 for (const RelocationRef
&Reloc
: Section
.relocations())
211 printRelocation(Section
, Reloc
);
214 if (opts::SectionData
) {
215 W
.printBinaryBlock("SectionData", WasmSec
.Content
);
220 void WasmDumper::printSymbol(const SymbolRef
&Sym
) {
221 DictScope
D(W
, "Symbol");
222 WasmSymbol Symbol
= Obj
->getWasmSymbol(Sym
.getRawDataRefImpl());
223 W
.printString("Name", Symbol
.Info
.Name
);
224 W
.printEnum("Type", Symbol
.Info
.Kind
, ArrayRef(WasmSymbolTypes
));
225 W
.printFlags("Flags", Symbol
.Info
.Flags
, ArrayRef(WasmSymbolFlags
));
227 if (Symbol
.Info
.Flags
& wasm::WASM_SYMBOL_UNDEFINED
) {
228 if (Symbol
.Info
.ImportName
) {
229 W
.printString("ImportName", *Symbol
.Info
.ImportName
);
231 if (Symbol
.Info
.ImportModule
) {
232 W
.printString("ImportModule", *Symbol
.Info
.ImportModule
);
235 if (Symbol
.Info
.Kind
!= wasm::WASM_SYMBOL_TYPE_DATA
) {
236 W
.printHex("ElementIndex", Symbol
.Info
.ElementIndex
);
237 } else if (!(Symbol
.Info
.Flags
& wasm::WASM_SYMBOL_UNDEFINED
)) {
238 W
.printHex("Offset", Symbol
.Info
.DataRef
.Offset
);
239 W
.printHex("Segment", Symbol
.Info
.DataRef
.Segment
);
240 W
.printHex("Size", Symbol
.Info
.DataRef
.Size
);
248 std::unique_ptr
<ObjDumper
> createWasmDumper(const object::WasmObjectFile
&Obj
,
249 ScopedPrinter
&Writer
) {
250 return std::make_unique
<WasmDumper
>(&Obj
, Writer
);