1 //===- WasmObject.h ---------------------------------------------*- C++ -*-===//
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 #ifndef LLVM_LIB_OBJCOPY_WASM_WASMOBJECT_H
10 #define LLVM_LIB_OBJCOPY_WASM_WASMOBJECT_H
12 #include "llvm/ADT/ArrayRef.h"
13 #include "llvm/ADT/StringRef.h"
14 #include "llvm/Object/Wasm.h"
15 #include "llvm/Support/MemoryBuffer.h"
23 // For now, each section is only an opaque binary blob with no distinction
24 // between custom and known sections.
26 std::optional
<uint8_t> HeaderSecSizeEncodingLen
;
28 ArrayRef
<uint8_t> Contents
;
32 llvm::wasm::WasmObjectHeader Header
;
33 // For now don't discriminate between kinds of sections.
34 std::vector
<Section
> Sections
;
36 void addSectionWithOwnedContents(Section NewSection
,
37 std::unique_ptr
<MemoryBuffer
> &&Content
);
38 void removeSections(function_ref
<bool(const Section
&)> ToRemove
);
41 std::vector
<std::unique_ptr
<MemoryBuffer
>> OwnedContents
;
44 } // end namespace wasm
45 } // end namespace objcopy
46 } // end namespace llvm
48 #endif // LLVM_LIB_OBJCOPY_WASM_WASMOBJECT_H