xref: /llvm-project/llvm/lib/ObjCopy/wasm/WasmReader.cpp (revision 2a6136e552d24b6bf665c42a6e32efc0b2d88fbf)
1 //===- WasmReader.cpp -----------------------------------------------------===//
2 //
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
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "WasmReader.h"
10 
11 namespace llvm {
12 namespace objcopy {
13 namespace wasm {
14 
15 using namespace object;
16 using namespace llvm::wasm;
17 
18 Expected<std::unique_ptr<Object>> Reader::create() const {
19   auto Obj = std::make_unique<Object>();
20   Obj->Header = WasmObj.getHeader();
21   Obj->isRelocatableObject = WasmObj.isRelocatableObject();
22   std::vector<Section> Sections;
23   Obj->Sections.reserve(WasmObj.getNumSections());
24   for (const SectionRef &Sec : WasmObj.sections()) {
25     const WasmSection &WS = WasmObj.getWasmSection(Sec);
26     Obj->Sections.push_back({static_cast<uint8_t>(WS.Type),
27                              WS.HeaderSecSizeEncodingLen, WS.Name, WS.Content});
28     // Give known sections standard names to allow them to be selected. (Custom
29     // sections already have their names filled in by the parser).
30     Section &ReaderSec = Obj->Sections.back();
31     if (ReaderSec.SectionType > WASM_SEC_CUSTOM &&
32         ReaderSec.SectionType <= WASM_SEC_LAST_KNOWN)
33       ReaderSec.Name = sectionTypeToString(ReaderSec.SectionType);
34   }
35   return std::move(Obj);
36 }
37 
38 } // end namespace wasm
39 } // end namespace objcopy
40 } // end namespace llvm
41